From 4934023b8fc2f3cb1719b56922448c0de24f8669 Mon Sep 17 00:00:00 2001 From: shahramn Date: Fri, 28 Jun 2024 13:12:04 +0100 Subject: [PATCH 01/17] ECC-1808: New GRIB table version --- definitions/grib2/boot.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/grib2/boot.def b/definitions/grib2/boot.def index b92116397..bcfa873ed 100644 --- a/definitions/grib2/boot.def +++ b/definitions/grib2/boot.def @@ -8,8 +8,8 @@ # # This gets updated twice a year by WMO. -# See https://community.wmo.int/activity-areas/wmo-codes/manual-codes/latest-version -constant tablesVersionLatestOfficial = 32 : edition_specific; +# See https://community.wmo.int/en/wis/latest-version +constant tablesVersionLatestOfficial = 33 : edition_specific; # If this is different from the official version, then it is the pre-operational version constant tablesVersionLatest = 33 : edition_specific; From 482c26ef350336bc944f797972b0dde6a6ecd17e Mon Sep 17 00:00:00 2001 From: shahramn Date: Fri, 28 Jun 2024 13:12:18 +0100 Subject: [PATCH 02/17] Cosmetics --- src/accessor/grib_accessor_class_bits.cc | 88 +++++++++++-------- src/accessor/grib_accessor_class_budgdate.cc | 19 ++-- ...rib_accessor_class_bufr_extract_subsets.cc | 19 ++-- ...essor_class_bufrdc_expanded_descriptors.cc | 65 ++++++++------ .../grib_accessor_class_dictionary.cc | 29 +++--- src/accessor/grib_accessor_class_divdouble.cc | 8 +- src/accessor/grib_accessor_class_double.cc | 33 ++++--- ...or_class_from_scale_factor_scaled_value.cc | 56 +++++++----- ...ib_accessor_class_g1_half_byte_codeflag.cc | 17 ++-- .../grib_accessor_class_g1_message_length.cc | 18 ++-- .../grib_accessor_class_g1_section4_length.cc | 15 ++-- src/accessor/grib_accessor_class_g2_eps.cc | 33 ++++--- src/accessor/grib_accessor_class_g2bitmap.cc | 19 ++-- .../grib_accessor_class_g2bitmap_present.cc | 17 ++-- 14 files changed, 255 insertions(+), 181 deletions(-) diff --git a/src/accessor/grib_accessor_class_bits.cc b/src/accessor/grib_accessor_class_bits.cc index e0a9e7d8d..3e7826bfe 100644 --- a/src/accessor/grib_accessor_class_bits.cc +++ b/src/accessor/grib_accessor_class_bits.cc @@ -11,16 +11,17 @@ #include "grib_accessor_class_bits.h" -grib_accessor_class_bits_t _grib_accessor_class_bits{"bits"}; +grib_accessor_class_bits_t _grib_accessor_class_bits{ "bits" }; grib_accessor_class* grib_accessor_class_bits = &_grib_accessor_class_bits; -void grib_accessor_class_bits_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_bits_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_gen_t::init(a, l, c); grib_accessor_bits_t* self = (grib_accessor_bits_t*)a; - grib_handle* hand = grib_handle_of_accessor(a); - grib_expression* e = NULL; - int n = 0; + grib_handle* hand = grib_handle_of_accessor(a); + grib_expression* e = NULL; + int n = 0; self->argument = grib_arguments_get_name(hand, c, n++); self->start = grib_arguments_get_long(hand, c, n++); @@ -43,11 +44,12 @@ void grib_accessor_class_bits_t::init(grib_accessor* a, const long l, grib_argum a->length = 0; } -int grib_accessor_class_bits_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_bits_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ grib_accessor_bits_t* self = (grib_accessor_bits_t*)a; - grib_accessor* x = NULL; - unsigned char* p = NULL; - grib_handle* h = grib_handle_of_accessor(a); + grib_accessor* x = NULL; + unsigned char* p = NULL; + grib_handle* h = grib_handle_of_accessor(a); long start, length; int ret = 0; @@ -61,18 +63,20 @@ int grib_accessor_class_bits_t::unpack_long(grib_accessor* a, long* val, size_t* if (!x) return GRIB_NOT_FOUND; - p = h->buffer->data + x->byte_offset(); *val = grib_decode_unsigned_long(p, &start, length); + p = h->buffer->data + x->byte_offset(); + *val = grib_decode_unsigned_long(p, &start, length); *len = 1; return ret; } -int grib_accessor_class_bits_t::unpack_double(grib_accessor* a, double* val, size_t* len){ +int grib_accessor_class_bits_t::unpack_double(grib_accessor* a, double* val, size_t* len) +{ grib_accessor_bits_t* self = (grib_accessor_bits_t*)a; - grib_accessor* x = NULL; - unsigned char* p = NULL; - grib_handle* h = grib_handle_of_accessor(a); + grib_accessor* x = NULL; + unsigned char* p = NULL; + grib_handle* h = grib_handle_of_accessor(a); long start, length; int ret = 0; @@ -86,7 +90,8 @@ int grib_accessor_class_bits_t::unpack_double(grib_accessor* a, double* val, siz if (!x) return GRIB_NOT_FOUND; - p = h->buffer->data + x->byte_offset(); *val = grib_decode_unsigned_long(p, &start, length); + p = h->buffer->data + x->byte_offset(); + *val = grib_decode_unsigned_long(p, &start, length); *val = ((long)*val + self->referenceValue) / self->scale; @@ -95,11 +100,12 @@ int grib_accessor_class_bits_t::unpack_double(grib_accessor* a, double* val, siz return ret; } -int grib_accessor_class_bits_t::pack_double(grib_accessor* a, const double* val, size_t* len){ +int grib_accessor_class_bits_t::pack_double(grib_accessor* a, const double* val, size_t* len) +{ grib_accessor_bits_t* self = (grib_accessor_bits_t*)a; - grib_accessor* x = NULL; - grib_handle* h = grib_handle_of_accessor(a); - unsigned char* p = NULL; + grib_accessor* x = NULL; + grib_handle* h = grib_handle_of_accessor(a); + unsigned char* p = NULL; long start, length, lval; if (*len != 1) @@ -112,16 +118,17 @@ int grib_accessor_class_bits_t::pack_double(grib_accessor* a, const double* val, if (!x) return GRIB_NOT_FOUND; - p = h->buffer->data + x->byte_offset(); + p = h->buffer->data + x->byte_offset(); lval = round(*val * self->scale) - self->referenceValue; return grib_encode_unsigned_longb(p, lval, &start, length); } -int grib_accessor_class_bits_t::pack_long(grib_accessor* a, const long* val, size_t* len){ +int grib_accessor_class_bits_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ grib_accessor_bits_t* self = (grib_accessor_bits_t*)a; - grib_accessor* x = NULL; - grib_handle* h = grib_handle_of_accessor(a); - unsigned char* p = NULL; + grib_accessor* x = NULL; + grib_handle* h = grib_handle_of_accessor(a); + unsigned char* p = NULL; long start, length, maxval; if (*len != 1) @@ -148,12 +155,12 @@ int grib_accessor_class_bits_t::pack_long(grib_accessor* a, const long* val, siz #ifdef DEBUG { - const long numbits = (x->length)*8; + const long numbits = (x->length) * 8; if (start + length > numbits) { grib_context_log(h->context, GRIB_LOG_ERROR, - "grib_accessor_class_bits::pack_long: key=%s (x=%s): " - "Invalid start/length. x->length=%ld, start=%ld, length=%ld", - a->name, x->name, numbits, start, length); + "grib_accessor_class_bits::pack_long: key=%s (x=%s): " + "Invalid start/length. x->length=%ld, start=%ld, length=%ld", + a->name, x->name, numbits, start, length); return GRIB_ENCODING_ERROR; } } @@ -167,11 +174,13 @@ int grib_accessor_class_bits_t::pack_long(grib_accessor* a, const long* val, siz return GRIB_ENCODING_ERROR; } - p = h->buffer->data + x->byte_offset(); return grib_encode_unsigned_longb(p, *val, &start, length); + p = h->buffer->data + x->byte_offset(); + return grib_encode_unsigned_longb(p, *val, &start, length); } -int grib_accessor_class_bits_t::get_native_type(grib_accessor* a){ - int type = GRIB_TYPE_BYTES; +int grib_accessor_class_bits_t::get_native_type(grib_accessor* a) +{ + int type = GRIB_TYPE_BYTES; grib_accessor_bits_t* self = (grib_accessor_bits_t*)a; if (a->flags & GRIB_ACCESSOR_FLAG_STRING_TYPE) @@ -186,11 +195,12 @@ int grib_accessor_class_bits_t::get_native_type(grib_accessor* a){ return type; } -int grib_accessor_class_bits_t::unpack_string(grib_accessor* a, char* v, size_t* len){ - int ret = 0; - double dval = 0; - long lval = 0; - size_t llen = 1; +int grib_accessor_class_bits_t::unpack_string(grib_accessor* a, char* v, size_t* len) +{ + int ret = 0; + double dval = 0; + long lval = 0; + size_t llen = 1; switch (get_native_type(a)) { case GRIB_TYPE_LONG: @@ -211,12 +221,14 @@ int grib_accessor_class_bits_t::unpack_string(grib_accessor* a, char* v, size_t* return ret; } -long grib_accessor_class_bits_t::byte_count(grib_accessor* a){ +long grib_accessor_class_bits_t::byte_count(grib_accessor* a) +{ grib_context_log(a->context, GRIB_LOG_DEBUG, "byte_count of %s = %ld", a->name, a->length); return a->length; } -int grib_accessor_class_bits_t::unpack_bytes(grib_accessor* a, unsigned char* buffer, size_t* len){ +int grib_accessor_class_bits_t::unpack_bytes(grib_accessor* a, unsigned char* buffer, size_t* len) +{ if (*len < a->length) { *len = a->length; return GRIB_ARRAY_TOO_SMALL; diff --git a/src/accessor/grib_accessor_class_budgdate.cc b/src/accessor/grib_accessor_class_budgdate.cc index 4c58c20f2..3efb0b79e 100644 --- a/src/accessor/grib_accessor_class_budgdate.cc +++ b/src/accessor/grib_accessor_class_budgdate.cc @@ -11,22 +11,24 @@ #include "grib_accessor_class_budgdate.h" -grib_accessor_class_budgdate_t _grib_accessor_class_budgdate{"budgdate"}; +grib_accessor_class_budgdate_t _grib_accessor_class_budgdate{ "budgdate" }; grib_accessor_class* grib_accessor_class_budgdate = &_grib_accessor_class_budgdate; -void grib_accessor_class_budgdate_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_budgdate_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_long_t::init(a, l, c); grib_accessor_budgdate_t* self = (grib_accessor_budgdate_t*)a; - int n = 0; + int n = 0; self->year = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); self->month = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); self->day = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); } -int grib_accessor_class_budgdate_t::unpack_long(grib_accessor* a, long* val, size_t* len){ - int ret = 0; +int grib_accessor_class_budgdate_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ + int ret = 0; grib_accessor_budgdate_t* self = (grib_accessor_budgdate_t*)a; long year = 0; @@ -49,9 +51,10 @@ int grib_accessor_class_budgdate_t::unpack_long(grib_accessor* a, long* val, siz } /* TODO: Check for a valid date */ -int grib_accessor_class_budgdate_t::pack_long(grib_accessor* a, const long* val, size_t* len){ - int ret = 0; - long v = val[0]; +int grib_accessor_class_budgdate_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ + int ret = 0; + long v = val[0]; grib_accessor_budgdate_t* self = (grib_accessor_budgdate_t*)a; long year = 0; diff --git a/src/accessor/grib_accessor_class_bufr_extract_subsets.cc b/src/accessor/grib_accessor_class_bufr_extract_subsets.cc index 7d5a23652..3826d0b32 100644 --- a/src/accessor/grib_accessor_class_bufr_extract_subsets.cc +++ b/src/accessor/grib_accessor_class_bufr_extract_subsets.cc @@ -11,11 +11,12 @@ #include "grib_accessor_class_bufr_extract_subsets.h" -grib_accessor_class_bufr_extract_subsets_t _grib_accessor_class_bufr_extract_subsets{"bufr_extract_subsets"}; +grib_accessor_class_bufr_extract_subsets_t _grib_accessor_class_bufr_extract_subsets{ "bufr_extract_subsets" }; grib_accessor_class* grib_accessor_class_bufr_extract_subsets = &_grib_accessor_class_bufr_extract_subsets; -void get_accessors(grib_accessor* a){ +void get_accessors(grib_accessor* a) +{ grib_accessor_bufr_extract_subsets_t* self = (grib_accessor_bufr_extract_subsets_t*)a; const grib_handle* h = grib_handle_of_accessor(a); @@ -25,10 +26,11 @@ void get_accessors(grib_accessor* a){ self->packAccessor = grib_find_accessor(h, self->pack); } -void grib_accessor_class_bufr_extract_subsets_t::init(grib_accessor* a, const long len, grib_arguments* arg){ +void grib_accessor_class_bufr_extract_subsets_t::init(grib_accessor* a, const long len, grib_arguments* arg) +{ grib_accessor_class_gen_t::init(a, len, arg); - int n = 0; grib_accessor_bufr_extract_subsets_t* self = (grib_accessor_bufr_extract_subsets_t*)a; + int n = 0; a->length = 0; self->numericValues = grib_arguments_get_name(grib_handle_of_accessor(a), arg, n++); @@ -36,11 +38,13 @@ void grib_accessor_class_bufr_extract_subsets_t::init(grib_accessor* a, const lo a->flags |= GRIB_ACCESSOR_FLAG_FUNCTION; } -int grib_accessor_class_bufr_extract_subsets_t::get_native_type(grib_accessor* a){ +int grib_accessor_class_bufr_extract_subsets_t::get_native_type(grib_accessor* a) +{ return GRIB_TYPE_LONG; } -int grib_accessor_class_bufr_extract_subsets_t::pack_long(grib_accessor* a, const long* val, size_t* len){ +int grib_accessor_class_bufr_extract_subsets_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ grib_accessor_bufr_extract_subsets_t* self = (grib_accessor_bufr_extract_subsets_t*)a; size_t l = 1; long v[1]; @@ -48,7 +52,8 @@ int grib_accessor_class_bufr_extract_subsets_t::pack_long(grib_accessor* a, cons get_accessors(a); v[0] = 1; - int err = self->packAccessor->pack_long(v, &l); if (err) { + int err = self->packAccessor->pack_long(v, &l); + if (err) { if (err == GRIB_ENCODING_ERROR) grib_context_log(a->context, GRIB_LOG_ERROR, "Could not extract subset(s).\n\tHint: Did you forget to set unpack=1?"); return err; diff --git a/src/accessor/grib_accessor_class_bufrdc_expanded_descriptors.cc b/src/accessor/grib_accessor_class_bufrdc_expanded_descriptors.cc index bd411d510..777fa351c 100644 --- a/src/accessor/grib_accessor_class_bufrdc_expanded_descriptors.cc +++ b/src/accessor/grib_accessor_class_bufrdc_expanded_descriptors.cc @@ -11,17 +11,18 @@ #include "grib_accessor_class_bufrdc_expanded_descriptors.h" -grib_accessor_class_bufrdc_expanded_descriptors_t _grib_accessor_class_bufrdc_expanded_descriptors{"bufrdc_expanded_descriptors"}; +grib_accessor_class_bufrdc_expanded_descriptors_t _grib_accessor_class_bufrdc_expanded_descriptors{ "bufrdc_expanded_descriptors" }; grib_accessor_class* grib_accessor_class_bufrdc_expanded_descriptors = &_grib_accessor_class_bufrdc_expanded_descriptors; -void grib_accessor_class_bufrdc_expanded_descriptors_t::init(grib_accessor* a, const long len, grib_arguments* args){ +void grib_accessor_class_bufrdc_expanded_descriptors_t::init(grib_accessor* a, const long len, grib_arguments* args) +{ grib_accessor_class_long_t::init(a, len, args); grib_accessor_bufrdc_expanded_descriptors_t* self = (grib_accessor_bufrdc_expanded_descriptors_t*)a; - int n = 0; - self->expandedDescriptors = grib_arguments_get_name(grib_handle_of_accessor(a), args, n++); - self->expandedDescriptorsAccessor = 0; - a->length = 0; + int n = 0; + self->expandedDescriptors = grib_arguments_get_name(grib_handle_of_accessor(a), args, n++); + self->expandedDescriptorsAccessor = 0; + a->length = 0; a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; } @@ -34,18 +35,20 @@ static grib_accessor* get_accessor(grib_accessor* a) return self->expandedDescriptorsAccessor; } -int grib_accessor_class_bufrdc_expanded_descriptors_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_bufrdc_expanded_descriptors_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ grib_accessor* descriptors = 0; - size_t rlen = 0, l; - long lenall = 0; - size_t i = 0; - long* v = 0; - grib_context* c = a->context; + size_t rlen = 0, l; + long lenall = 0; + size_t i = 0; + long* v = 0; + grib_context* c = a->context; descriptors = get_accessor(a); if (!descriptors) return GRIB_NOT_FOUND; - a->value_count(&lenall); v = (long*)grib_context_malloc_clear(c, sizeof(long) * lenall); + a->value_count(&lenall); + v = (long*)grib_context_malloc_clear(c, sizeof(long) * lenall); l = lenall; descriptors->unpack_long(v, &l); rlen = 0; @@ -54,46 +57,52 @@ int grib_accessor_class_bufrdc_expanded_descriptors_t::unpack_long(grib_accessor val[rlen++] = v[i]; } *len = rlen; - grib_context_free(c,v); + grib_context_free(c, v); return GRIB_SUCCESS; } -int grib_accessor_class_bufrdc_expanded_descriptors_t::unpack_string_array(grib_accessor* a, char** buffer, size_t* len){ - int err = 0; +int grib_accessor_class_bufrdc_expanded_descriptors_t::unpack_string_array(grib_accessor* a, char** buffer, size_t* len) +{ + int err = 0; grib_accessor* descriptors = 0; - size_t l = 0; - long lenall = 0; - size_t i = 0; - long* v = 0; - char buf[25] = {0,}; + size_t l = 0; + long lenall = 0; + size_t i = 0; + long* v = 0; + char buf[25] = {0,}; grib_context* c = a->context; descriptors = get_accessor(a); if (!descriptors) return GRIB_NOT_FOUND; - err = a->value_count(&lenall); if (err) return err; + err = a->value_count(&lenall); + if (err) return err; l = lenall; if (l > *len) return GRIB_ARRAY_TOO_SMALL; - v = (long*)grib_context_malloc_clear(c, sizeof(long) * l); - err = descriptors->unpack_long(v, &l); if (err) return err; + v = (long*)grib_context_malloc_clear(c, sizeof(long) * l); + err = descriptors->unpack_long(v, &l); + if (err) return err; for (i = 0; i < l; i++) { snprintf(buf, sizeof(buf), "%06ld", v[i]); buffer[i] = grib_context_strdup(c, buf); } *len = l; - grib_context_free(c,v); + grib_context_free(c, v); return GRIB_SUCCESS; } -int grib_accessor_class_bufrdc_expanded_descriptors_t::value_count(grib_accessor* a, long* rlen){ +int grib_accessor_class_bufrdc_expanded_descriptors_t::value_count(grib_accessor* a, long* rlen) +{ grib_accessor* descriptors = get_accessor(a); - return descriptors->value_count(rlen);} + return descriptors->value_count(rlen); +} -void grib_accessor_class_bufrdc_expanded_descriptors_t::destroy(grib_context* c, grib_accessor* a){ +void grib_accessor_class_bufrdc_expanded_descriptors_t::destroy(grib_context* c, grib_accessor* a) +{ grib_accessor_class_long_t::destroy(c, a); } diff --git a/src/accessor/grib_accessor_class_dictionary.cc b/src/accessor/grib_accessor_class_dictionary.cc index 9a0b3307d..617bc8a75 100644 --- a/src/accessor/grib_accessor_class_dictionary.cc +++ b/src/accessor/grib_accessor_class_dictionary.cc @@ -11,13 +11,14 @@ #include "grib_accessor_class_dictionary.h" -grib_accessor_class_dictionary_t _grib_accessor_class_dictionary{"dictionary"}; +grib_accessor_class_dictionary_t _grib_accessor_class_dictionary{ "dictionary" }; grib_accessor_class* grib_accessor_class_dictionary = &_grib_accessor_class_dictionary; -void grib_accessor_class_dictionary_t::init(grib_accessor* a, const long len, grib_arguments* params){ +void grib_accessor_class_dictionary_t::init(grib_accessor* a, const long len, grib_arguments* params) +{ grib_accessor_class_gen_t::init(a, len, params); - int n = 0; + int n = 0; grib_accessor_dictionary_t* self = (grib_accessor_dictionary_t*)a; self->dictionary = grib_arguments_get_string(grib_handle_of_accessor(a), params, n++); @@ -146,7 +147,8 @@ static grib_trie* load_dictionary(grib_accessor* a, int* err) return dictionary; } -void grib_accessor_class_dictionary_t::dump(grib_accessor* a, grib_dumper* dumper){ +void grib_accessor_class_dictionary_t::dump(grib_accessor* a, grib_dumper* dumper) +{ switch (get_native_type(a)) { case GRIB_TYPE_STRING: grib_dump_string(dumper, a, NULL); @@ -160,10 +162,11 @@ void grib_accessor_class_dictionary_t::dump(grib_accessor* a, grib_dumper* dumpe } } -int grib_accessor_class_dictionary_t::unpack_string(grib_accessor* a, char* buffer, size_t* len){ +int grib_accessor_class_dictionary_t::unpack_string(grib_accessor* a, char* buffer, size_t* len) +{ grib_accessor_dictionary_t* self = (grib_accessor_dictionary_t*)a; - int err = GRIB_SUCCESS; - char key[1024] = {0,}; + int err = GRIB_SUCCESS; + char key[1024] = {0,}; size_t size = 1024; char* list = NULL; char* start = NULL; @@ -214,12 +217,14 @@ int grib_accessor_class_dictionary_t::unpack_string(grib_accessor* a, char* buff return err; } -int grib_accessor_class_dictionary_t::value_count(grib_accessor* a, long* count){ +int grib_accessor_class_dictionary_t::value_count(grib_accessor* a, long* count) +{ *count = 1; return 0; } -int grib_accessor_class_dictionary_t::get_native_type(grib_accessor* a){ +int grib_accessor_class_dictionary_t::get_native_type(grib_accessor* a) +{ int type = GRIB_TYPE_DOUBLE; if (a->flags & GRIB_ACCESSOR_FLAG_LONG_TYPE) type = GRIB_TYPE_LONG; @@ -228,7 +233,8 @@ int grib_accessor_class_dictionary_t::get_native_type(grib_accessor* a){ return type; } -int grib_accessor_class_dictionary_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_dictionary_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ int err = 0; char buffer[1024] = {0,}; size_t size = 1024; @@ -243,7 +249,8 @@ int grib_accessor_class_dictionary_t::unpack_long(grib_accessor* a, long* val, s return GRIB_SUCCESS; } -int grib_accessor_class_dictionary_t::unpack_double(grib_accessor* a, double* val, size_t* len){ +int grib_accessor_class_dictionary_t::unpack_double(grib_accessor* a, double* val, size_t* len) +{ int err = 0; char buffer[1024] = {0,}; size_t size = 1024; diff --git a/src/accessor/grib_accessor_class_divdouble.cc b/src/accessor/grib_accessor_class_divdouble.cc index a652752fa..49e675230 100644 --- a/src/accessor/grib_accessor_class_divdouble.cc +++ b/src/accessor/grib_accessor_class_divdouble.cc @@ -11,11 +11,12 @@ #include "grib_accessor_class_divdouble.h" -grib_accessor_class_divdouble_t _grib_accessor_class_divdouble{"divdouble"}; +grib_accessor_class_divdouble_t _grib_accessor_class_divdouble{ "divdouble" }; grib_accessor_class* grib_accessor_class_divdouble = &_grib_accessor_class_divdouble; -void grib_accessor_class_divdouble_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_divdouble_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_double_t::init(a, l, c); grib_accessor_divdouble_t* self = (grib_accessor_divdouble_t*)a; int n = 0; @@ -24,7 +25,8 @@ void grib_accessor_class_divdouble_t::init(grib_accessor* a, const long l, grib_ self->divisor = grib_arguments_get_double(grib_handle_of_accessor(a), c, n++); } -int grib_accessor_class_divdouble_t::unpack_double(grib_accessor* a, double* val, size_t* len){ +int grib_accessor_class_divdouble_t::unpack_double(grib_accessor* a, double* val, size_t* len) +{ const grib_accessor_divdouble_t* self = (grib_accessor_divdouble_t*)a; int ret = GRIB_SUCCESS; double value = 0; diff --git a/src/accessor/grib_accessor_class_double.cc b/src/accessor/grib_accessor_class_double.cc index a0e3a49b5..2a78446bc 100644 --- a/src/accessor/grib_accessor_class_double.cc +++ b/src/accessor/grib_accessor_class_double.cc @@ -11,26 +11,29 @@ #include "grib_accessor_class_double.h" -grib_accessor_class_double_t _grib_accessor_class_double{"double"}; +grib_accessor_class_double_t _grib_accessor_class_double{ "double" }; grib_accessor_class* grib_accessor_class_double = &_grib_accessor_class_double; -int grib_accessor_class_double_t::get_native_type(grib_accessor* a){ +int grib_accessor_class_double_t::get_native_type(grib_accessor* a) +{ return GRIB_TYPE_DOUBLE; } -int grib_accessor_class_double_t::unpack_string(grib_accessor* a, char* v, size_t* len){ +int grib_accessor_class_double_t::unpack_string(grib_accessor* a, char* v, size_t* len) +{ double val = 0; size_t l = 1; char repres[1024]; - char format[32] = "%g"; - grib_handle* h = grib_handle_of_accessor(a); + char format[32] = "%g"; + grib_handle* h = grib_handle_of_accessor(a); const char* cclass_name = a->cclass->name; a->unpack_double(&val, &l); if ((val == GRIB_MISSING_DOUBLE) && ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) != 0)) { snprintf(repres, sizeof(repres), "MISSING"); - } else { + } + else { size_t size = sizeof(format); grib_get_string(h, "formatForDoubles", format, &size); snprintf(repres, sizeof(repres), format, val); @@ -53,11 +56,13 @@ int grib_accessor_class_double_t::unpack_string(grib_accessor* a, char* v, size_ return GRIB_SUCCESS; } -void grib_accessor_class_double_t::dump(grib_accessor* a, grib_dumper* dumper){ +void grib_accessor_class_double_t::dump(grib_accessor* a, grib_dumper* dumper) +{ grib_dump_values(dumper, a); } -int grib_accessor_class_double_t::compare(grib_accessor* a, grib_accessor* b){ +int grib_accessor_class_double_t::compare(grib_accessor* a, grib_accessor* b) +{ int retval = 0; double* aval = 0; double* bval = 0; @@ -67,11 +72,13 @@ int grib_accessor_class_double_t::compare(grib_accessor* a, grib_accessor* b){ long count = 0; int err = 0; - err = a->value_count(&count); if (err) + err = a->value_count(&count); + if (err) return err; alen = count; - err = b->value_count(&count); if (err) + err = b->value_count(&count); + if (err) return err; blen = count; @@ -81,7 +88,8 @@ int grib_accessor_class_double_t::compare(grib_accessor* a, grib_accessor* b){ aval = (double*)grib_context_malloc(a->context, alen * sizeof(double)); bval = (double*)grib_context_malloc(b->context, blen * sizeof(double)); - a->unpack_double(aval, &alen); b->unpack_double(bval, &blen); + a->unpack_double(aval, &alen); + b->unpack_double(bval, &blen); retval = GRIB_SUCCESS; while (alen != 0) { if (*bval != *aval) @@ -95,7 +103,8 @@ int grib_accessor_class_double_t::compare(grib_accessor* a, grib_accessor* b){ return retval; } -int grib_accessor_class_double_t::pack_missing(grib_accessor* a){ +int grib_accessor_class_double_t::pack_missing(grib_accessor* a) +{ size_t len = 1; double value = GRIB_MISSING_DOUBLE; diff --git a/src/accessor/grib_accessor_class_from_scale_factor_scaled_value.cc b/src/accessor/grib_accessor_class_from_scale_factor_scaled_value.cc index 4168e1476..f2c598f8f 100644 --- a/src/accessor/grib_accessor_class_from_scale_factor_scaled_value.cc +++ b/src/accessor/grib_accessor_class_from_scale_factor_scaled_value.cc @@ -11,33 +11,36 @@ #include "grib_accessor_class_from_scale_factor_scaled_value.h" -grib_accessor_class_from_scale_factor_scaled_value_t _grib_accessor_class_from_scale_factor_scaled_value{"from_scale_factor_scaled_value"}; +grib_accessor_class_from_scale_factor_scaled_value_t _grib_accessor_class_from_scale_factor_scaled_value{ "from_scale_factor_scaled_value" }; grib_accessor_class* grib_accessor_class_from_scale_factor_scaled_value = &_grib_accessor_class_from_scale_factor_scaled_value; -void grib_accessor_class_from_scale_factor_scaled_value_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_from_scale_factor_scaled_value_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_double_t::init(a, l, c); grib_accessor_from_scale_factor_scaled_value_t* self = (grib_accessor_from_scale_factor_scaled_value_t*)a; - int n = 0; - grib_handle* hand = grib_handle_of_accessor(a); + int n = 0; + grib_handle* hand = grib_handle_of_accessor(a); self->scaleFactor = grib_arguments_get_name(hand, c, n++); - self->scaledValue = grib_arguments_get_name(hand, c, n++); // Can be scalar or array + self->scaledValue = grib_arguments_get_name(hand, c, n++); // Can be scalar or array // ECC-979: Allow user to encode // a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; } -int grib_accessor_class_from_scale_factor_scaled_value_t::pack_double(grib_accessor* a, const double* val, size_t* len){ +int grib_accessor_class_from_scale_factor_scaled_value_t::pack_double(grib_accessor* a, const double* val, size_t* len) +{ // See ECC-979 and ECC-1416 // Evaluate self->scaleFactor and self->scaledValue from input double '*val' grib_accessor_from_scale_factor_scaled_value_t* self = (grib_accessor_from_scale_factor_scaled_value_t*)a; - grib_handle* hand = grib_handle_of_accessor(a); - int err = 0; + grib_handle* hand = grib_handle_of_accessor(a); + + int err = 0; int64_t factor = 0; - int64_t value = 0; - double exact = *val; // the input - int64_t maxval_value, maxval_factor; // maximum allowable values + int64_t value = 0; + double exact = *val; // the input + int64_t maxval_value, maxval_factor; // maximum allowable values int value_accessor_num_bits = 0, factor_accessor_num_bits = 0; grib_accessor *factor_accessor, *value_accessor; @@ -65,9 +68,9 @@ int grib_accessor_class_from_scale_factor_scaled_value_t::pack_double(grib_acces } value_accessor_num_bits = value_accessor->length * 8; factor_accessor_num_bits = factor_accessor->length * 8; - maxval_value = (1UL << value_accessor_num_bits) - 2; // exclude missing - maxval_factor = (1UL << factor_accessor_num_bits) - 2; // exclude missing - if (strcmp(factor_accessor->cclass->name,"signed")==0) { + maxval_value = (1UL << value_accessor_num_bits) - 2; // exclude missing + maxval_factor = (1UL << factor_accessor_num_bits) - 2; // exclude missing + if (strcmp(factor_accessor->cclass->name, "signed") == 0) { maxval_factor = (1UL << (factor_accessor_num_bits - 1)) - 1; } @@ -85,13 +88,14 @@ int grib_accessor_class_from_scale_factor_scaled_value_t::pack_double(grib_acces return GRIB_SUCCESS; } -int grib_accessor_class_from_scale_factor_scaled_value_t::unpack_double(grib_accessor* a, double* val, size_t* len){ +int grib_accessor_class_from_scale_factor_scaled_value_t::unpack_double(grib_accessor* a, double* val, size_t* len) +{ grib_accessor_from_scale_factor_scaled_value_t* self = (grib_accessor_from_scale_factor_scaled_value_t*)a; int err = 0; long scaleFactor = 0, scaledValue = 0; grib_handle* hand = grib_handle_of_accessor(a); - grib_context* c = a->context; - size_t vsize = 0; + grib_context* c = a->context; + size_t vsize = 0; if ((err = grib_get_long_internal(hand, self->scaleFactor, &scaleFactor)) != GRIB_SUCCESS) return err; @@ -107,11 +111,12 @@ int grib_accessor_class_from_scale_factor_scaled_value_t::unpack_double(grib_acc *val = GRIB_MISSING_DOUBLE; *len = 1; return GRIB_SUCCESS; - } else { + } + else { // ECC-966: If scale factor is missing, print error and treat it as zero (as a fallback) if (grib_is_missing(hand, self->scaleFactor, &err) && err == GRIB_SUCCESS) { grib_context_log(a->context, GRIB_LOG_ERROR, - "unpack_double for %s: %s is missing! Using zero instead", a->name, self->scaleFactor); + "unpack_double for %s: %s is missing! Using zero instead", a->name, self->scaleFactor); scaleFactor = 0; } } @@ -132,7 +137,8 @@ int grib_accessor_class_from_scale_factor_scaled_value_t::unpack_double(grib_acc if (err == GRIB_SUCCESS) *len = 1; - } else { + } + else { size_t i; long* lvalues = (long*)grib_context_malloc(c, vsize * sizeof(long)); if (!lvalues) @@ -143,7 +149,7 @@ int grib_accessor_class_from_scale_factor_scaled_value_t::unpack_double(grib_acc } for (i = 0; i < vsize; i++) { long sf = scaleFactor; - val[i] = lvalues[i]; + val[i] = lvalues[i]; while (sf < 0) { val[i] *= 10; sf++; @@ -160,7 +166,8 @@ int grib_accessor_class_from_scale_factor_scaled_value_t::unpack_double(grib_acc return err; } -int grib_accessor_class_from_scale_factor_scaled_value_t::is_missing(grib_accessor* a){ +int grib_accessor_class_from_scale_factor_scaled_value_t::is_missing(grib_accessor* a) +{ grib_accessor_from_scale_factor_scaled_value_t* self = (grib_accessor_from_scale_factor_scaled_value_t*)a; grib_handle* hand = grib_handle_of_accessor(a); int err = 0; @@ -175,11 +182,12 @@ int grib_accessor_class_from_scale_factor_scaled_value_t::is_missing(grib_access return ((scaleFactor == GRIB_MISSING_LONG) || (scaledValue == GRIB_MISSING_LONG)); } -int grib_accessor_class_from_scale_factor_scaled_value_t::value_count(grib_accessor* a, long* len){ +int grib_accessor_class_from_scale_factor_scaled_value_t::value_count(grib_accessor* a, long* len) +{ grib_accessor_from_scale_factor_scaled_value_t* self = (grib_accessor_from_scale_factor_scaled_value_t*)a; int err = 0; grib_handle* hand = grib_handle_of_accessor(a); - size_t vsize; + size_t vsize = 0; if ((err = grib_get_size(hand, self->scaledValue, &vsize)) != GRIB_SUCCESS) return err; diff --git a/src/accessor/grib_accessor_class_g1_half_byte_codeflag.cc b/src/accessor/grib_accessor_class_g1_half_byte_codeflag.cc index 2f757addc..f73a146dc 100644 --- a/src/accessor/grib_accessor_class_g1_half_byte_codeflag.cc +++ b/src/accessor/grib_accessor_class_g1_half_byte_codeflag.cc @@ -11,22 +11,25 @@ #include "grib_accessor_class_g1_half_byte_codeflag.h" -grib_accessor_class_g1_half_byte_codeflag_t _grib_accessor_class_g1_half_byte_codeflag{"g1_half_byte_codeflag"}; +grib_accessor_class_g1_half_byte_codeflag_t _grib_accessor_class_g1_half_byte_codeflag{ "g1_half_byte_codeflag" }; grib_accessor_class* grib_accessor_class_g1_half_byte_codeflag = &_grib_accessor_class_g1_half_byte_codeflag; -void grib_accessor_class_g1_half_byte_codeflag_t::init(grib_accessor* a, const long len, grib_arguments* arg){ +void grib_accessor_class_g1_half_byte_codeflag_t::init(grib_accessor* a, const long len, grib_arguments* arg) +{ grib_accessor_class_gen_t::init(a, len, arg); a->length = 0; a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; a->flags |= GRIB_ACCESSOR_FLAG_EDITION_SPECIFIC; } -void grib_accessor_class_g1_half_byte_codeflag_t::dump(grib_accessor* a, grib_dumper* dumper){ +void grib_accessor_class_g1_half_byte_codeflag_t::dump(grib_accessor* a, grib_dumper* dumper) +{ grib_dump_long(dumper, a, NULL); } -int grib_accessor_class_g1_half_byte_codeflag_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_g1_half_byte_codeflag_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ unsigned char dat = 0; if (*len < 1) { grib_context_log(a->context, GRIB_LOG_ERROR, "Wrong size for %s it contains %d values ", a->name, 1); @@ -40,7 +43,8 @@ int grib_accessor_class_g1_half_byte_codeflag_t::unpack_long(grib_accessor* a, l return GRIB_SUCCESS; } -int grib_accessor_class_g1_half_byte_codeflag_t::pack_long(grib_accessor* a, const long* val, size_t* len){ +int grib_accessor_class_g1_half_byte_codeflag_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ int ret = 0; if (*len < 1) { grib_context_log(a->context, GRIB_LOG_ERROR, "Wrong size for %s it contains %d values ", a->name, 1); @@ -55,6 +59,7 @@ int grib_accessor_class_g1_half_byte_codeflag_t::pack_long(grib_accessor* a, con return ret; } -int grib_accessor_class_g1_half_byte_codeflag_t::get_native_type(grib_accessor* a){ +int grib_accessor_class_g1_half_byte_codeflag_t::get_native_type(grib_accessor* a) +{ return GRIB_TYPE_LONG; } diff --git a/src/accessor/grib_accessor_class_g1_message_length.cc b/src/accessor/grib_accessor_class_g1_message_length.cc index 89ce742c5..af06d2e98 100644 --- a/src/accessor/grib_accessor_class_g1_message_length.cc +++ b/src/accessor/grib_accessor_class_g1_message_length.cc @@ -11,14 +11,15 @@ #include "grib_accessor_class_g1_message_length.h" -grib_accessor_class_g1_message_length_t _grib_accessor_class_g1_message_length{"g1_message_length"}; +grib_accessor_class_g1_message_length_t _grib_accessor_class_g1_message_length{ "g1_message_length" }; grib_accessor_class* grib_accessor_class_g1_message_length = &_grib_accessor_class_g1_message_length; -void grib_accessor_class_g1_message_length_t::init(grib_accessor* a, const long len, grib_arguments* args){ +void grib_accessor_class_g1_message_length_t::init(grib_accessor* a, const long len, grib_arguments* args) +{ grib_accessor_class_section_length_t::init(a, len, args); grib_accessor_g1_message_length_t* self = (grib_accessor_g1_message_length_t*)a; - self->sec4_length = grib_arguments_get_name(grib_handle_of_accessor(a), args, 0); + self->sec4_length = grib_arguments_get_name(grib_handle_of_accessor(a), args, 0); } int grib_get_g1_message_size(grib_handle* h, grib_accessor* tl, grib_accessor* s4, @@ -60,7 +61,8 @@ int grib_get_g1_message_size(grib_handle* h, grib_accessor* tl, grib_accessor* s return GRIB_SUCCESS; } -int grib_accessor_class_g1_message_length_t::pack_long(grib_accessor* a, const long* val, size_t* len){ +int grib_accessor_class_g1_message_length_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ grib_accessor_g1_message_length_t* self = (grib_accessor_g1_message_length_t*)a; /*grib_accessor_class* super = *(a->cclass->super);*/ @@ -113,7 +115,7 @@ int grib_accessor_class_g1_message_length_t::pack_long(grib_accessor* a, const l grib_context_log(a->context, GRIB_LOG_ERROR, "%s %s: Failed to set GRIB1 message length to %ld" " (actual length=%ld)", - cclass_name, __func__, *val, total_length); + cclass_name, __func__, *val, total_length); grib_context_log(a->context, GRIB_LOG_ERROR, "Hint: Try encoding as GRIB2\n"); return GRIB_ENCODING_ERROR; } @@ -122,15 +124,15 @@ int grib_accessor_class_g1_message_length_t::pack_long(grib_accessor* a, const l return GRIB_SUCCESS; } -int grib_accessor_class_g1_message_length_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_g1_message_length_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ grib_accessor_g1_message_length_t* self = (grib_accessor_g1_message_length_t*)a; int ret; long total_length, sec4_length; if ((ret = grib_get_g1_message_size(grib_handle_of_accessor(a), a, grib_find_accessor(grib_handle_of_accessor(a), self->sec4_length), - &total_length, &sec4_length)) != GRIB_SUCCESS) - { + &total_length, &sec4_length)) != GRIB_SUCCESS) { return ret; } diff --git a/src/accessor/grib_accessor_class_g1_section4_length.cc b/src/accessor/grib_accessor_class_g1_section4_length.cc index 8eea656b0..fe80e70e8 100644 --- a/src/accessor/grib_accessor_class_g1_section4_length.cc +++ b/src/accessor/grib_accessor_class_g1_section4_length.cc @@ -11,17 +11,19 @@ #include "grib_accessor_class_g1_section4_length.h" -grib_accessor_class_g1_section4_length_t _grib_accessor_class_g1_section4_length{"g1_section4_length"}; +grib_accessor_class_g1_section4_length_t _grib_accessor_class_g1_section4_length{ "g1_section4_length" }; grib_accessor_class* grib_accessor_class_g1_section4_length = &_grib_accessor_class_g1_section4_length; -void grib_accessor_class_g1_section4_length_t::init(grib_accessor* a, const long len, grib_arguments* args){ +void grib_accessor_class_g1_section4_length_t::init(grib_accessor* a, const long len, grib_arguments* args) +{ grib_accessor_class_section_length_t::init(a, len, args); grib_accessor_g1_section4_length_t* self = (grib_accessor_g1_section4_length_t*)a; - self->total_length = grib_arguments_get_name(grib_handle_of_accessor(a), args, 0); + self->total_length = grib_arguments_get_name(grib_handle_of_accessor(a), args, 0); } -int grib_accessor_class_g1_section4_length_t::pack_long(grib_accessor* a, const long* val, size_t* len){ +int grib_accessor_class_g1_section4_length_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ // Old implementation: // Here we assume that the totalLength will be coded AFTER the section4 length, and // the section4 length will be overwritten by the totalLength accessor for large GRIBs @@ -34,9 +36,10 @@ int grib_accessor_class_g1_section4_length_t::pack_long(grib_accessor* a, const return pack_long_unsigned_helper(a, val, len, /*check=*/0); } -int grib_accessor_class_g1_section4_length_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_g1_section4_length_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ grib_accessor_g1_section4_length_t* self = (grib_accessor_g1_section4_length_t*)a; - int ret = 0; + int ret = 0; long total_length = 0, sec4_length = 0; if ((ret = grib_get_g1_message_size(grib_handle_of_accessor(a), diff --git a/src/accessor/grib_accessor_class_g2_eps.cc b/src/accessor/grib_accessor_class_g2_eps.cc index 6b6c42fd7..dfe88ad28 100644 --- a/src/accessor/grib_accessor_class_g2_eps.cc +++ b/src/accessor/grib_accessor_class_g2_eps.cc @@ -11,14 +11,15 @@ #include "grib_accessor_class_g2_eps.h" -grib_accessor_class_g2_eps_t _grib_accessor_class_g2_eps{"g2_eps"}; +grib_accessor_class_g2_eps_t _grib_accessor_class_g2_eps{ "g2_eps" }; grib_accessor_class* grib_accessor_class_g2_eps = &_grib_accessor_class_g2_eps; -void grib_accessor_class_g2_eps_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_g2_eps_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_unsigned_t::init(a, l, c); grib_accessor_g2_eps_t* self = (grib_accessor_g2_eps_t*)a; - int n = 0; + int n = 0; self->productDefinitionTemplateNumber = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); self->type = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); @@ -27,11 +28,12 @@ void grib_accessor_class_g2_eps_t::init(grib_accessor* a, const long l, grib_arg self->derivedForecast = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); } -int grib_accessor_class_g2_eps_t::unpack_long(grib_accessor* a, long* val, size_t* len){ - grib_accessor_g2_eps_t* self = (grib_accessor_g2_eps_t*)a; +int grib_accessor_class_g2_eps_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ + grib_accessor_g2_eps_t* self = (grib_accessor_g2_eps_t*)a; long productDefinitionTemplateNumber = 0; - int err = 0; - grib_handle* hand = grib_handle_of_accessor(a); + int err = 0; + grib_handle* hand = grib_handle_of_accessor(a); err = grib_get_long(hand, self->productDefinitionTemplateNumber, &productDefinitionTemplateNumber); if (err) return err; @@ -40,15 +42,17 @@ int grib_accessor_class_g2_eps_t::unpack_long(grib_accessor* a, long* val, size_ if (grib_is_defined(hand, "perturbationNumber")) { *val = 1; } - //if (grib2_is_PDTN_EPS(productDefinitionTemplateNumber)) - // *val = 1; + // if (grib2_is_PDTN_EPS(productDefinitionTemplateNumber)) + // *val = 1; return GRIB_SUCCESS; } -int grib_accessor_class_g2_eps_t::pack_long(grib_accessor* a, const long* val, size_t* len){ - grib_accessor_g2_eps_t* self = (grib_accessor_g2_eps_t*)a; +int grib_accessor_class_g2_eps_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ + grib_accessor_g2_eps_t* self = (grib_accessor_g2_eps_t*)a; grib_handle* hand = grib_handle_of_accessor(a); + long productDefinitionTemplateNumber = -1; long productDefinitionTemplateNumberNew = -1; long type = -1; @@ -143,13 +147,13 @@ int grib_accessor_class_g2_eps_t::pack_long(grib_accessor* a, const long* val, s productDefinitionTemplateNumberNew = 45; } else { - //productDefinitionTemplateNumberNew = 47; This PDT is deprecated + // productDefinitionTemplateNumberNew = 47; This PDT is deprecated productDefinitionTemplateNumberNew = 85; } } else { if (isInstant) { - productDefinitionTemplateNumberNew = 48; //44 is deprecated*/ + productDefinitionTemplateNumberNew = 48; // 44 is deprecated*/ } else { productDefinitionTemplateNumberNew = 46; @@ -166,7 +170,8 @@ int grib_accessor_class_g2_eps_t::pack_long(grib_accessor* a, const long* val, s return 0; } -int grib_accessor_class_g2_eps_t::value_count(grib_accessor* a, long* count){ +int grib_accessor_class_g2_eps_t::value_count(grib_accessor* a, long* count) +{ *count = 1; return 0; } diff --git a/src/accessor/grib_accessor_class_g2bitmap.cc b/src/accessor/grib_accessor_class_g2bitmap.cc index d5af880b3..551715e4a 100644 --- a/src/accessor/grib_accessor_class_g2bitmap.cc +++ b/src/accessor/grib_accessor_class_g2bitmap.cc @@ -12,29 +12,29 @@ #include "grib_accessor_class_g2bitmap.h" #include "shared_functions.h" -grib_accessor_class_g2bitmap_t _grib_accessor_class_g2bitmap{"g2bitmap"}; +grib_accessor_class_g2bitmap_t _grib_accessor_class_g2bitmap{ "g2bitmap" }; grib_accessor_class* grib_accessor_class_g2bitmap = &_grib_accessor_class_g2bitmap; -void grib_accessor_class_g2bitmap_t::init(grib_accessor* a, const long len, grib_arguments* arg){ +void grib_accessor_class_g2bitmap_t::init(grib_accessor* a, const long len, grib_arguments* arg) +{ grib_accessor_class_bitmap_t::init(a, len, arg); grib_accessor_g2bitmap_t* self = (grib_accessor_g2bitmap_t*)a; self->numberOfValues = grib_arguments_get_name(grib_handle_of_accessor(a), arg, 4); } -int grib_accessor_class_g2bitmap_t::pack_double(grib_accessor* a, const double* val, size_t* len){ +int grib_accessor_class_g2bitmap_t::pack_double(grib_accessor* a, const double* val, size_t* len) +{ grib_accessor_g2bitmap_t* self = (grib_accessor_g2bitmap_t*)a; - size_t tlen; - unsigned char* buf = NULL; size_t i; - int err = 0; - long pos = 0; + int err = 0; + long pos = 0; // long bmaplen = 0; double miss_values = 0; - tlen = (*len + 7) / 8; + size_t tlen = (*len + 7) / 8; if ((err = grib_get_double_internal(grib_handle_of_accessor(a), self->missing_value, &miss_values)) != GRIB_SUCCESS) return err; @@ -65,7 +65,8 @@ int grib_accessor_class_g2bitmap_t::pack_double(grib_accessor* a, const double* } -int grib_accessor_class_g2bitmap_t::value_count(grib_accessor* a, long* tlen){ +int grib_accessor_class_g2bitmap_t::value_count(grib_accessor* a, long* tlen) +{ grib_accessor_g2bitmap_t* self = (grib_accessor_g2bitmap_t*)a; int err; *tlen = 0; diff --git a/src/accessor/grib_accessor_class_g2bitmap_present.cc b/src/accessor/grib_accessor_class_g2bitmap_present.cc index 1444783fe..3ba7f6c99 100644 --- a/src/accessor/grib_accessor_class_g2bitmap_present.cc +++ b/src/accessor/grib_accessor_class_g2bitmap_present.cc @@ -11,20 +11,22 @@ #include "grib_accessor_class_g2bitmap_present.h" -grib_accessor_class_g2bitmap_present_t _grib_accessor_class_g2bitmap_present{"g2bitmap_present"}; +grib_accessor_class_g2bitmap_present_t _grib_accessor_class_g2bitmap_present{ "g2bitmap_present" }; grib_accessor_class* grib_accessor_class_g2bitmap_present = &_grib_accessor_class_g2bitmap_present; -void grib_accessor_class_g2bitmap_present_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_g2bitmap_present_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_long_t::init(a, l, c); - int n = 0; + int n = 0; grib_accessor_g2bitmap_present_t* self = (grib_accessor_g2bitmap_present_t*)a; - self->bitmapIndicator = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); + self->bitmapIndicator = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); a->length = 0; } -int grib_accessor_class_g2bitmap_present_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_g2bitmap_present_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ int ret = GRIB_SUCCESS; long bitmapIndicator = 0; @@ -48,9 +50,10 @@ int grib_accessor_class_g2bitmap_present_t::unpack_long(grib_accessor* a, long* return ret; } -int grib_accessor_class_g2bitmap_present_t::pack_long(grib_accessor* a, const long* val, size_t* len){ +int grib_accessor_class_g2bitmap_present_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ grib_accessor_g2bitmap_present_t* self = (grib_accessor_g2bitmap_present_t*)a; - long bitmapIndicator = 0; + long bitmapIndicator = 0; if (*val == 0) bitmapIndicator = 255; From 0dfbe96e50af0782b9fce93383714a8582521d2c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 28 Jun 2024 15:04:47 +0000 Subject: [PATCH 03/17] ECC-1853: GRIB: Lambert conformal longitudes greater than 360 --- src/grib_iterator_class_lambert_conformal.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/grib_iterator_class_lambert_conformal.cc b/src/grib_iterator_class_lambert_conformal.cc index 5d15a67b6..fe261b5be 100644 --- a/src/grib_iterator_class_lambert_conformal.cc +++ b/src/grib_iterator_class_lambert_conformal.cc @@ -243,6 +243,7 @@ static int init_sphere(const grib_handle* h, const long index = i + j * nx; x = x0 + i * Dx; xy2lonlat(radius, n, f, rho0_bare, LoVInRadians, x, y, &lonDeg, &latDeg); + lonDeg = normalise_longitude_in_degrees(lonDeg); self->lons[index] = lonDeg; self->lats[index] = latDeg; } From f4e9528f739bf268eaa728ae1983ad49869a9c65 Mon Sep 17 00:00:00 2001 From: shahramn Date: Fri, 28 Jun 2024 17:07:46 +0100 Subject: [PATCH 04/17] Formatting --- src/accessor/grib_accessor_class_g2date.cc | 19 ++++---- .../grib_accessor_class_longitudes.cc | 44 +++++++++++-------- .../grib_accessor_class_number_of_points.cc | 25 ++++++----- ...grib_accessor_class_octahedral_gaussian.cc | 20 +++++---- .../grib_accessor_class_smart_table_column.cc | 32 ++++++++------ .../grib_accessor_class_statistics.cc | 44 +++++++++++-------- ...grib_accessor_class_statistics_spectral.cc | 39 +++++++++------- src/accessor/grib_accessor_class_sum.cc | 42 ++++++++++-------- src/accessor/grib_accessor_class_time.cc | 24 +++++----- src/accessor/grib_accessor_class_to_double.cc | 41 ++++++++++------- .../grib_accessor_class_to_integer.cc | 44 ++++++++++++------- src/accessor/grib_accessor_class_to_string.cc | 33 +++++++++----- .../grib_accessor_class_transient_darray.cc | 35 +++++++++------ src/accessor/grib_accessor_class_trim.cc | 39 +++++++++------- 14 files changed, 285 insertions(+), 196 deletions(-) diff --git a/src/accessor/grib_accessor_class_g2date.cc b/src/accessor/grib_accessor_class_g2date.cc index 238da76f7..827df44df 100644 --- a/src/accessor/grib_accessor_class_g2date.cc +++ b/src/accessor/grib_accessor_class_g2date.cc @@ -11,23 +11,25 @@ #include "grib_accessor_class_g2date.h" -grib_accessor_class_g2date_t _grib_accessor_class_g2date{"g2date"}; +grib_accessor_class_g2date_t _grib_accessor_class_g2date{ "g2date" }; grib_accessor_class* grib_accessor_class_g2date = &_grib_accessor_class_g2date; -void grib_accessor_class_g2date_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_g2date_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_long_t::init(a, l, c); grib_accessor_g2date_t* self = (grib_accessor_g2date_t*)a; - int n = 0; + int n = 0; self->year = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); self->month = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); self->day = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); } -int grib_accessor_class_g2date_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_g2date_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ const grib_accessor_g2date_t* self = (grib_accessor_g2date_t*)a; - int ret = 0; + int ret = 0; long year = 0; long month = 0; long day = 0; @@ -47,11 +49,12 @@ int grib_accessor_class_g2date_t::unpack_long(grib_accessor* a, long* val, size_ return GRIB_SUCCESS; } -int grib_accessor_class_g2date_t::pack_long(grib_accessor* a, const long* val, size_t* len){ +int grib_accessor_class_g2date_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ const grib_accessor_g2date_t* self = (grib_accessor_g2date_t*)a; - int ret = GRIB_SUCCESS; - long v = val[0]; + int ret = GRIB_SUCCESS; + long v = val[0]; long year = 0; long month = 0; long day = 0; diff --git a/src/accessor/grib_accessor_class_longitudes.cc b/src/accessor/grib_accessor_class_longitudes.cc index a9ae31309..80e4e2e7b 100644 --- a/src/accessor/grib_accessor_class_longitudes.cc +++ b/src/accessor/grib_accessor_class_longitudes.cc @@ -11,13 +11,14 @@ #include "grib_accessor_class_longitudes.h" -grib_accessor_class_longitudes_t _grib_accessor_class_longitudes{"longitudes"}; +grib_accessor_class_longitudes_t _grib_accessor_class_longitudes{ "longitudes" }; grib_accessor_class* grib_accessor_class_longitudes = &_grib_accessor_class_longitudes; static int get_distinct(grib_accessor* a, double** val, long* len); int compare_doubles(const void* a, const void* b); -void grib_accessor_class_longitudes_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_longitudes_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_double_t::init(a, l, c); grib_accessor_longitudes_t* self = (grib_accessor_longitudes_t*)a; int n = 0; @@ -30,18 +31,20 @@ void grib_accessor_class_longitudes_t::init(grib_accessor* a, const long l, grib a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; } -int grib_accessor_class_longitudes_t::unpack_double(grib_accessor* a, double* val, size_t* len){ - grib_context* c = a->context; +int grib_accessor_class_longitudes_t::unpack_double(grib_accessor* a, double* val, size_t* len) +{ grib_accessor_longitudes_t* self = (grib_accessor_longitudes_t*)a; - int ret = 0; - double* v = val; - double dummyLat = 0; - size_t size = 0; - long count = 0; + + grib_context* c = a->context; + int ret = 0; + double* v = val; + double dummyLat = 0; + size_t size = 0; + long count = 0; grib_iterator* iter = NULL; self->save = 1; - ret = value_count(a, &count); + ret = value_count(a, &count); if (ret) return ret; size = count; @@ -84,11 +87,12 @@ int grib_accessor_class_longitudes_t::unpack_double(grib_accessor* a, double* va return ret; } -int grib_accessor_class_longitudes_t::value_count(grib_accessor* a, long* len){ +int grib_accessor_class_longitudes_t::value_count(grib_accessor* a, long* len) +{ grib_accessor_longitudes_t* self = (grib_accessor_longitudes_t*)a; - grib_handle* h = grib_handle_of_accessor(a); - grib_context* c = a->context; - double* val = NULL; + grib_handle* h = grib_handle_of_accessor(a); + grib_context* c = a->context; + double* val = NULL; int ret; size_t size; *len = 0; @@ -121,15 +125,16 @@ int grib_accessor_class_longitudes_t::value_count(grib_accessor* a, long* len){ return ret; } -static int get_distinct(grib_accessor* a, double** val, long* len){ +static int get_distinct(grib_accessor* a, double** val, long* len) +{ long count = 0; double prev; double* v = NULL; double* v1 = NULL; double dummyLat = 0; - int ret = 0; - size_t size = *len; - grib_context* c = a->context; + int ret = 0; + size_t size = *len; + grib_context* c = a->context; // Performance: We do not need the values to be decoded grib_iterator* iter = grib_iterator_new(grib_handle_of_accessor(a), GRIB_GEOITERATOR_NO_VALUES, &ret); @@ -177,7 +182,8 @@ static int get_distinct(grib_accessor* a, double** val, long* len){ return GRIB_SUCCESS; } -int compare_doubles(const void* a, const void* b){ +int compare_doubles(const void* a, const void* b) +{ double* arg1 = (double*)a; double* arg2 = (double*)b; if (*arg1 < *arg2) diff --git a/src/accessor/grib_accessor_class_number_of_points.cc b/src/accessor/grib_accessor_class_number_of_points.cc index c1b63f2a2..d12eabeae 100644 --- a/src/accessor/grib_accessor_class_number_of_points.cc +++ b/src/accessor/grib_accessor_class_number_of_points.cc @@ -11,34 +11,37 @@ #include "grib_accessor_class_number_of_points.h" -grib_accessor_class_number_of_points_t _grib_accessor_class_number_of_points{"number_of_points"}; +grib_accessor_class_number_of_points_t _grib_accessor_class_number_of_points{ "number_of_points" }; grib_accessor_class* grib_accessor_class_number_of_points = &_grib_accessor_class_number_of_points; -void grib_accessor_class_number_of_points_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_number_of_points_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_long_t::init(a, l, c); int n = 0; grib_handle* hand = grib_handle_of_accessor(a); grib_accessor_number_of_points_t* self = (grib_accessor_number_of_points_t*)a; - self->ni = grib_arguments_get_name(hand, c, n++); - self->nj = grib_arguments_get_name(hand, c, n++); - self->plpresent = grib_arguments_get_name(hand, c, n++); - self->pl = grib_arguments_get_name(hand, c, n++); + + self->ni = grib_arguments_get_name(hand, c, n++); + self->nj = grib_arguments_get_name(hand, c, n++); + self->plpresent = grib_arguments_get_name(hand, c, n++); + self->pl = grib_arguments_get_name(hand, c, n++); a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; a->flags |= GRIB_ACCESSOR_FLAG_FUNCTION; a->length = 0; } -int grib_accessor_class_number_of_points_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_number_of_points_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ grib_accessor_number_of_points_t* self = (grib_accessor_number_of_points_t*)a; int ret = GRIB_SUCCESS; long ni = 0, nj = 0, plpresent = 0; - size_t plsize = 0; - long* pl = NULL; - int i = 0; - grib_context* c = a->context; + size_t plsize = 0; + long* pl = NULL; + int i = 0; + grib_context* c = a->context; grib_handle* hand = grib_handle_of_accessor(a); if ((ret = grib_get_long_internal(hand, self->ni, &ni)) != GRIB_SUCCESS) diff --git a/src/accessor/grib_accessor_class_octahedral_gaussian.cc b/src/accessor/grib_accessor_class_octahedral_gaussian.cc index 8c556e84a..eda90763f 100644 --- a/src/accessor/grib_accessor_class_octahedral_gaussian.cc +++ b/src/accessor/grib_accessor_class_octahedral_gaussian.cc @@ -11,15 +11,16 @@ #include "grib_accessor_class_octahedral_gaussian.h" -grib_accessor_class_octahedral_gaussian_t _grib_accessor_class_octahedral_gaussian{"octahedral_gaussian"}; +grib_accessor_class_octahedral_gaussian_t _grib_accessor_class_octahedral_gaussian{ "octahedral_gaussian" }; grib_accessor_class* grib_accessor_class_octahedral_gaussian = &_grib_accessor_class_octahedral_gaussian; -void grib_accessor_class_octahedral_gaussian_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_octahedral_gaussian_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_long_t::init(a, l, c); grib_accessor_octahedral_gaussian_t* self = (grib_accessor_octahedral_gaussian_t*)a; - int n = 0; - grib_handle* hand = grib_handle_of_accessor(a); + int n = 0; + grib_handle* hand = grib_handle_of_accessor(a); self->N = grib_arguments_get_name(hand, c, n++); self->Ni = grib_arguments_get_name(hand, c, n++); @@ -36,7 +37,8 @@ void grib_accessor_class_octahedral_gaussian_t::init(grib_accessor* a, const lon * -4 ..-4 All below equator * Anything else is considered not octahedral */ -static int is_pl_octahedral(const long pl[], size_t size){ +static int is_pl_octahedral(const long pl[], size_t size) +{ long i; long prev_diff = -1; for (i = 1; i < size; ++i) { @@ -69,9 +71,10 @@ static int is_pl_octahedral(const long pl[], size_t size){ return 1; /* it's octahedral */ } -int grib_accessor_class_octahedral_gaussian_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_octahedral_gaussian_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ grib_accessor_octahedral_gaussian_t* self = (grib_accessor_octahedral_gaussian_t*)a; - int ret = GRIB_SUCCESS; + int ret = GRIB_SUCCESS; long Ni; long plpresent = 0; long* pl = NULL; /* pl array */ @@ -115,6 +118,7 @@ int grib_accessor_class_octahedral_gaussian_t::unpack_long(grib_accessor* a, lon return ret; } -int grib_accessor_class_octahedral_gaussian_t::pack_long(grib_accessor* a, const long* val, size_t* len){ +int grib_accessor_class_octahedral_gaussian_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ return GRIB_NOT_IMPLEMENTED; } diff --git a/src/accessor/grib_accessor_class_smart_table_column.cc b/src/accessor/grib_accessor_class_smart_table_column.cc index 7d352471d..d9d44bc49 100644 --- a/src/accessor/grib_accessor_class_smart_table_column.cc +++ b/src/accessor/grib_accessor_class_smart_table_column.cc @@ -12,24 +12,25 @@ #include "grib_accessor_class_smart_table_column.h" #include "grib_accessor_class_smart_table.h" -grib_accessor_class_smart_table_column_t _grib_accessor_class_smart_table_column{"smart_table_column"}; +grib_accessor_class_smart_table_column_t _grib_accessor_class_smart_table_column{ "smart_table_column" }; grib_accessor_class* grib_accessor_class_smart_table_column = &_grib_accessor_class_smart_table_column; - -void grib_accessor_class_smart_table_column_t::init(grib_accessor* a, const long len, grib_arguments* params){ +void grib_accessor_class_smart_table_column_t::init(grib_accessor* a, const long len, grib_arguments* params) +{ grib_accessor_class_gen_t::init(a, len, params); int n = 0; grib_accessor_smart_table_column_t* self = (grib_accessor_smart_table_column_t*)a; self->smartTable = grib_arguments_get_name(grib_handle_of_accessor(a), params, n++); - self->index = grib_arguments_get_long(grib_handle_of_accessor(a), params, n++); + self->index = grib_arguments_get_long(grib_handle_of_accessor(a), params, n++); a->length = 0; a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; } -void grib_accessor_class_smart_table_column_t::dump(grib_accessor* a, grib_dumper* dumper){ +void grib_accessor_class_smart_table_column_t::dump(grib_accessor* a, grib_dumper* dumper) +{ int type = get_native_type(a); switch (type) { @@ -42,7 +43,8 @@ void grib_accessor_class_smart_table_column_t::dump(grib_accessor* a, grib_dumpe } } -int grib_accessor_class_smart_table_column_t::unpack_string_array(grib_accessor* a, char** buffer, size_t* len){ +int grib_accessor_class_smart_table_column_t::unpack_string_array(grib_accessor* a, char** buffer, size_t* len) +{ grib_accessor_smart_table_column_t* self = (grib_accessor_smart_table_column_t*)a; grib_accessor_smart_table_t* tableAccessor = NULL; grib_smart_table* table = NULL; @@ -96,7 +98,8 @@ int grib_accessor_class_smart_table_column_t::unpack_string_array(grib_accessor* return GRIB_SUCCESS; } -int grib_accessor_class_smart_table_column_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_smart_table_column_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ grib_accessor_smart_table_column_t* self = (grib_accessor_smart_table_column_t*)a; grib_accessor_smart_table_t* tableAccessor = NULL; grib_smart_table* table = NULL; @@ -146,21 +149,23 @@ int grib_accessor_class_smart_table_column_t::unpack_long(grib_accessor* a, long return GRIB_SUCCESS; } -int grib_accessor_class_smart_table_column_t::value_count(grib_accessor* a, long* count){ +int grib_accessor_class_smart_table_column_t::value_count(grib_accessor* a, long* count) +{ grib_accessor_smart_table_column_t* self = (grib_accessor_smart_table_column_t*)a; size_t size = 0; - int err = 0; - *count = 0; + int err = 0; + *count = 0; if (!self->smartTable) return 0; - err = grib_get_size(grib_handle_of_accessor(a), self->smartTable, &size); + err = grib_get_size(grib_handle_of_accessor(a), self->smartTable, &size); *count = size; return err; } -void grib_accessor_class_smart_table_column_t::destroy(grib_context* context, grib_accessor* a){ +void grib_accessor_class_smart_table_column_t::destroy(grib_context* context, grib_accessor* a) +{ if (a->vvalue != NULL) { grib_context_free(context, a->vvalue); a->vvalue = NULL; @@ -169,7 +174,8 @@ void grib_accessor_class_smart_table_column_t::destroy(grib_context* context, gr grib_accessor_class_gen_t::destroy(context, a); } -int grib_accessor_class_smart_table_column_t::get_native_type(grib_accessor* a){ +int grib_accessor_class_smart_table_column_t::get_native_type(grib_accessor* a) +{ int type = GRIB_TYPE_LONG; /*printf("---------- %s flags=%ld GRIB_ACCESSOR_FLAG_STRING_TYPE=%d\n", a->name,a->flags,GRIB_ACCESSOR_FLAG_STRING_TYPE);*/ diff --git a/src/accessor/grib_accessor_class_statistics.cc b/src/accessor/grib_accessor_class_statistics.cc index 2d5cfd756..1e56f8a12 100644 --- a/src/accessor/grib_accessor_class_statistics.cc +++ b/src/accessor/grib_accessor_class_statistics.cc @@ -11,14 +11,15 @@ #include "grib_accessor_class_statistics.h" -grib_accessor_class_statistics_t _grib_accessor_class_statistics{"statistics"}; +grib_accessor_class_statistics_t _grib_accessor_class_statistics{ "statistics" }; grib_accessor_class* grib_accessor_class_statistics = &_grib_accessor_class_statistics; -void grib_accessor_class_statistics_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_statistics_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_abstract_vector_t::init(a, l, c); grib_accessor_statistics_t* self = (grib_accessor_statistics_t*)a; - int n = 0; + int n = 0; self->missing_value = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); self->values = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); @@ -27,24 +28,24 @@ void grib_accessor_class_statistics_t::init(grib_accessor* a, const long l, grib a->flags |= GRIB_ACCESSOR_FLAG_HIDDEN; self->number_of_elements = 8; - self->v = (double*)grib_context_malloc(a->context, - sizeof(double) * self->number_of_elements); + self->v = (double*)grib_context_malloc(a->context, sizeof(double) * self->number_of_elements); a->length = 0; a->dirty = 1; } -int grib_accessor_class_statistics_t::unpack_double(grib_accessor* a, double* val, size_t* len){ +int grib_accessor_class_statistics_t::unpack_double(grib_accessor* a, double* val, size_t* len) +{ grib_accessor_statistics_t* self = (grib_accessor_statistics_t*)a; int ret = 0; double* values = NULL; size_t i = 0, size = 0, real_size = 0; double max, min, avg, sd, value, skew, kurt, m2 = 0, m3 = 0, m4 = 0; - double missing = 0; + double missing = 0; long missingValuesPresent = 0; size_t number_of_missing = 0; - grib_context* c = a->context; - grib_handle* h = grib_handle_of_accessor(a); + grib_context* c = a->context; + grib_handle* h = grib_handle_of_accessor(a); if (!a->dirty) return GRIB_SUCCESS; @@ -166,19 +167,22 @@ int grib_accessor_class_statistics_t::unpack_double(grib_accessor* a, double* va return ret; } -int grib_accessor_class_statistics_t::value_count(grib_accessor* a, long* count){ +int grib_accessor_class_statistics_t::value_count(grib_accessor* a, long* count) +{ grib_accessor_statistics_t* self = (grib_accessor_statistics_t*)a; - *count = self->number_of_elements; + *count = self->number_of_elements; return 0; } -void grib_accessor_class_statistics_t::destroy(grib_context* c, grib_accessor* a){ +void grib_accessor_class_statistics_t::destroy(grib_context* c, grib_accessor* a) +{ grib_accessor_statistics_t* self = (grib_accessor_statistics_t*)a; grib_context_free(c, self->v); grib_accessor_class_abstract_vector_t::destroy(c, a); } -int grib_accessor_class_statistics_t::compare(grib_accessor* a, grib_accessor* b){ +int grib_accessor_class_statistics_t::compare(grib_accessor* a, grib_accessor* b) +{ int retval = GRIB_SUCCESS; double* aval = 0; double* bval = 0; @@ -188,11 +192,13 @@ int grib_accessor_class_statistics_t::compare(grib_accessor* a, grib_accessor* b int err = 0; long count = 0; - err = a->value_count(&count); if (err) + err = a->value_count(&count); + if (err) return err; alen = count; - err = b->value_count(&count); if (err) + err = b->value_count(&count); + if (err) return err; blen = count; @@ -205,9 +211,10 @@ int grib_accessor_class_statistics_t::compare(grib_accessor* a, grib_accessor* b b->dirty = 1; a->dirty = 1; - a->unpack_double(aval, &alen); b->unpack_double(bval, &blen); + a->unpack_double(aval, &alen); + b->unpack_double(bval, &blen); retval = GRIB_SUCCESS; - for (size_t i=0; ivalues = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); self->J = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); @@ -30,14 +31,14 @@ void grib_accessor_class_statistics_spectral_t::init(grib_accessor* a, const lon a->flags |= GRIB_ACCESSOR_FLAG_FUNCTION; self->number_of_elements = 4; - self->v = (double*)grib_context_malloc(a->context, - sizeof(double) * self->number_of_elements); + self->v = (double*)grib_context_malloc(a->context, sizeof(double) * self->number_of_elements); a->length = 0; a->dirty = 1; } -int grib_accessor_class_statistics_spectral_t::unpack_double(grib_accessor* a, double* val, size_t* len){ +int grib_accessor_class_statistics_spectral_t::unpack_double(grib_accessor* a, double* val, size_t* len) +{ grib_accessor_statistics_spectral_t* self = (grib_accessor_statistics_spectral_t*)a; int ret = 0, i = 0; double* values; @@ -85,8 +86,8 @@ int grib_accessor_class_statistics_spectral_t::unpack_double(grib_accessor* a, d return ret; } - avg = values[0]; - sd = 0; + avg = values[0]; + sd = 0; for (i = 2; i < 2 * J; i += 2) sd += values[i] * values[i]; @@ -114,19 +115,22 @@ int grib_accessor_class_statistics_spectral_t::unpack_double(grib_accessor* a, d return ret; } -int grib_accessor_class_statistics_spectral_t::value_count(grib_accessor* a, long* count){ +int grib_accessor_class_statistics_spectral_t::value_count(grib_accessor* a, long* count) +{ grib_accessor_statistics_spectral_t* self = (grib_accessor_statistics_spectral_t*)a; - *count = self->number_of_elements; + *count = self->number_of_elements; return 0; } -void grib_accessor_class_statistics_spectral_t::destroy(grib_context* c, grib_accessor* a){ +void grib_accessor_class_statistics_spectral_t::destroy(grib_context* c, grib_accessor* a) +{ grib_accessor_statistics_spectral_t* self = (grib_accessor_statistics_spectral_t*)a; grib_context_free(c, self->v); grib_accessor_class_abstract_vector_t::destroy(c, a); } -int grib_accessor_class_statistics_spectral_t::compare(grib_accessor* a, grib_accessor* b){ +int grib_accessor_class_statistics_spectral_t::compare(grib_accessor* a, grib_accessor* b) +{ int retval = GRIB_SUCCESS; double* aval = 0; double* bval = 0; @@ -136,11 +140,13 @@ int grib_accessor_class_statistics_spectral_t::compare(grib_accessor* a, grib_ac int err = 0; long count = 0; - err = a->value_count(&count); if (err) + err = a->value_count(&count); + if (err) return err; alen = count; - err = b->value_count(&count); if (err) + err = b->value_count(&count); + if (err) return err; blen = count; @@ -153,9 +159,10 @@ int grib_accessor_class_statistics_spectral_t::compare(grib_accessor* a, grib_ac b->dirty = 1; a->dirty = 1; - a->unpack_double(aval, &alen); b->unpack_double(bval, &blen); + a->unpack_double(aval, &alen); + b->unpack_double(bval, &blen); retval = GRIB_SUCCESS; - for (size_t i=0; ivalues = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); - a->length = 0; + int n = 0; + self->values = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); + a->length = 0; a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; } -int grib_accessor_class_sum_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_sum_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ grib_accessor_sum_t* self = (grib_accessor_sum_t*)a; - int ret = 0; - size_t size = 0; - long* values = 0; - long i; - long count = 0; + int ret = 0; + size_t size = 0; + long* values = 0; + size_t i = 0; + long count = 0; ret = value_count(a, &count); if (ret) @@ -56,12 +58,13 @@ int grib_accessor_class_sum_t::unpack_long(grib_accessor* a, long* val, size_t* return GRIB_SUCCESS; } -int grib_accessor_class_sum_t::unpack_double(grib_accessor* a, double* val, size_t* len){ +int grib_accessor_class_sum_t::unpack_double(grib_accessor* a, double* val, size_t* len) +{ grib_accessor_sum_t* self = (grib_accessor_sum_t*)a; - int ret = 0; - size_t size = 0; - double* values = 0; - long i; + int ret = 0; + size_t size = 0; + double* values = 0; + size_t i = 0; long count = 0; ret = value_count(a, &count); @@ -91,10 +94,11 @@ int grib_accessor_class_sum_t::unpack_double(grib_accessor* a, double* val, size return GRIB_SUCCESS; } -int grib_accessor_class_sum_t::value_count(grib_accessor* a, long* count){ +int grib_accessor_class_sum_t::value_count(grib_accessor* a, long* count) +{ grib_accessor_sum_t* self = (grib_accessor_sum_t*)a; - size_t n = 0; - int ret = 0; + size_t n = 0; + int ret = GRIB_SUCCESS; ret = grib_get_size(grib_handle_of_accessor(a), self->values, &n); *count = n; diff --git a/src/accessor/grib_accessor_class_time.cc b/src/accessor/grib_accessor_class_time.cc index debb1a2f4..e70fc3d49 100644 --- a/src/accessor/grib_accessor_class_time.cc +++ b/src/accessor/grib_accessor_class_time.cc @@ -11,25 +11,27 @@ #include "grib_accessor_class_time.h" -grib_accessor_class_time_t _grib_accessor_class_time{"time"}; +grib_accessor_class_time_t _grib_accessor_class_time{ "time" }; grib_accessor_class* grib_accessor_class_time = &_grib_accessor_class_time; -void grib_accessor_class_time_t::init(grib_accessor* a, const long l, grib_arguments* c){ +void grib_accessor_class_time_t::init(grib_accessor* a, const long l, grib_arguments* c) +{ grib_accessor_class_long_t::init(a, l, c); grib_accessor_time_t* self = (grib_accessor_time_t*)a; - grib_handle* hand = grib_handle_of_accessor(a); - int n = 0; + grib_handle* hand = grib_handle_of_accessor(a); + int n = 0; self->hour = grib_arguments_get_name(hand, c, n++); self->minute = grib_arguments_get_name(hand, c, n++); self->second = grib_arguments_get_name(hand, c, n++); } -int grib_accessor_class_time_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_time_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ const grib_accessor_time_t* self = (grib_accessor_time_t*)a; - int ret = 0; + int ret = 0; long hour = 0, minute = 0, second = 0; grib_handle* hand = grib_handle_of_accessor(a); @@ -43,7 +45,7 @@ int grib_accessor_class_time_t::unpack_long(grib_accessor* a, long* val, size_t* /* We ignore the 'seconds' in our time calculation! */ if (second != 0) { grib_context_log(a->context, GRIB_LOG_ERROR, - "Key %s (%s): Truncating time: non-zero seconds(%ld) ignored", a->name, __func__, second); + "Key %s (%s): Truncating time: non-zero seconds(%ld) ignored", a->name, __func__, second); } if (*len < 1) @@ -60,11 +62,12 @@ int grib_accessor_class_time_t::unpack_long(grib_accessor* a, long* val, size_t* return GRIB_SUCCESS; } -int grib_accessor_class_time_t::pack_long(grib_accessor* a, const long* val, size_t* len){ +int grib_accessor_class_time_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ const grib_accessor_time_t* self = (grib_accessor_time_t*)a; int ret = 0; - long v = val[0]; + long v = val[0]; grib_handle* hand = grib_handle_of_accessor(a); long hour = 0, minute = 0, second = 0; @@ -92,7 +95,8 @@ int grib_accessor_class_time_t::pack_long(grib_accessor* a, const long* val, siz return GRIB_SUCCESS; } -int grib_accessor_class_time_t::unpack_string(grib_accessor* a, char* val, size_t* len){ +int grib_accessor_class_time_t::unpack_string(grib_accessor* a, char* val, size_t* len) +{ long v = 0; size_t lsize = 1, lmin = 5; diff --git a/src/accessor/grib_accessor_class_to_double.cc b/src/accessor/grib_accessor_class_to_double.cc index 854a32ffc..2983be487 100644 --- a/src/accessor/grib_accessor_class_to_double.cc +++ b/src/accessor/grib_accessor_class_to_double.cc @@ -11,11 +11,12 @@ #include "grib_accessor_class_to_double.h" -grib_accessor_class_to_double_t _grib_accessor_class_to_double{"to_double"}; +grib_accessor_class_to_double_t _grib_accessor_class_to_double{ "to_double" }; grib_accessor_class* grib_accessor_class_to_double = &_grib_accessor_class_to_double; -void grib_accessor_class_to_double_t::init(grib_accessor* a, const long len, grib_arguments* arg){ +void grib_accessor_class_to_double_t::init(grib_accessor* a, const long len, grib_arguments* arg) +{ grib_accessor_class_gen_t::init(a, len, arg); grib_accessor_to_double_t* self = (grib_accessor_to_double_t*)a; @@ -30,9 +31,10 @@ void grib_accessor_class_to_double_t::init(grib_accessor* a, const long len, gri a->length = 0; } -int grib_accessor_class_to_double_t::value_count(grib_accessor* a, long* count){ +int grib_accessor_class_to_double_t::value_count(grib_accessor* a, long* count) +{ grib_accessor_to_double_t* self = (grib_accessor_to_double_t*)a; - size_t size = 0; + size_t size = 0; int err = grib_get_size(grib_handle_of_accessor(a), self->key, &size); *count = size; @@ -40,9 +42,10 @@ int grib_accessor_class_to_double_t::value_count(grib_accessor* a, long* count){ return err; } -size_t grib_accessor_class_to_double_t::string_length(grib_accessor* a){ +size_t grib_accessor_class_to_double_t::string_length(grib_accessor* a) +{ grib_accessor_to_double_t* self = (grib_accessor_to_double_t*)a; - size_t size = 0; + size_t size = 0; if (self->length) return self->length; @@ -51,25 +54,28 @@ size_t grib_accessor_class_to_double_t::string_length(grib_accessor* a){ return size; } -void grib_accessor_class_to_double_t::dump(grib_accessor* a, grib_dumper* dumper){ +void grib_accessor_class_to_double_t::dump(grib_accessor* a, grib_dumper* dumper) +{ grib_dump_string(dumper, a, NULL); } -int grib_accessor_class_to_double_t::get_native_type(grib_accessor* a){ +int grib_accessor_class_to_double_t::get_native_type(grib_accessor* a) +{ return GRIB_TYPE_LONG; } -int grib_accessor_class_to_double_t::unpack_string(grib_accessor* a, char* val, size_t* len){ +int grib_accessor_class_to_double_t::unpack_string(grib_accessor* a, char* val, size_t* len) +{ grib_accessor_to_double_t* self = (grib_accessor_to_double_t*)a; int err = 0; char buff[512] = {0,}; - size_t size = 512; + size_t size = 512; size_t length = string_length(a); if (*len < length + 1) { grib_context_log(a->context, GRIB_LOG_ERROR, "unpack_string: Wrong size (%lu) for %s, it contains %ld values", - *len, a->name, a->length + 1); + *len, a->name, a->length + 1); *len = length + 1; return GRIB_ARRAY_TOO_SMALL; } @@ -89,9 +95,10 @@ int grib_accessor_class_to_double_t::unpack_string(grib_accessor* a, char* val, return err; } -int grib_accessor_class_to_double_t::unpack_long(grib_accessor* a, long* v, size_t* len){ +int grib_accessor_class_to_double_t::unpack_long(grib_accessor* a, long* v, size_t* len) +{ grib_accessor_to_double_t* self = (grib_accessor_to_double_t*)a; - char val[1024] = {0,}; + char val[1024] = {0,}; size_t l = sizeof(val); char* last = NULL; int err = a->unpack_string(val, &l); @@ -107,9 +114,10 @@ int grib_accessor_class_to_double_t::unpack_long(grib_accessor* a, long* v, size return err; } -int grib_accessor_class_to_double_t::unpack_double(grib_accessor* a, double* v, size_t* len){ +int grib_accessor_class_to_double_t::unpack_double(grib_accessor* a, double* v, size_t* len) +{ grib_accessor_to_double_t* self = (grib_accessor_to_double_t*)a; - char val[1024] = {0,}; + char val[1024] = {0,}; size_t l = sizeof(val); char* last = NULL; int err = a->unpack_string(val, &l); @@ -125,6 +133,7 @@ int grib_accessor_class_to_double_t::unpack_double(grib_accessor* a, double* v, return err; } -long grib_accessor_class_to_double_t::next_offset(grib_accessor* a){ +long grib_accessor_class_to_double_t::next_offset(grib_accessor* a) +{ return a->offset + a->length; } diff --git a/src/accessor/grib_accessor_class_to_integer.cc b/src/accessor/grib_accessor_class_to_integer.cc index bc58f31c6..a4b621b8d 100644 --- a/src/accessor/grib_accessor_class_to_integer.cc +++ b/src/accessor/grib_accessor_class_to_integer.cc @@ -11,11 +11,12 @@ #include "grib_accessor_class_to_integer.h" -grib_accessor_class_to_integer_t _grib_accessor_class_to_integer{"to_integer"}; +grib_accessor_class_to_integer_t _grib_accessor_class_to_integer{ "to_integer" }; grib_accessor_class* grib_accessor_class_to_integer = &_grib_accessor_class_to_integer; -void grib_accessor_class_to_integer_t::init(grib_accessor* a, const long len, grib_arguments* arg){ +void grib_accessor_class_to_integer_t::init(grib_accessor* a, const long len, grib_arguments* arg) +{ grib_accessor_class_gen_t::init(a, len, arg); grib_accessor_to_integer_t* self = (grib_accessor_to_integer_t*)a; @@ -27,9 +28,10 @@ void grib_accessor_class_to_integer_t::init(grib_accessor* a, const long len, gr a->length = 0; } -int grib_accessor_class_to_integer_t::value_count(grib_accessor* a, long* count){ +int grib_accessor_class_to_integer_t::value_count(grib_accessor* a, long* count) +{ grib_accessor_to_integer_t* self = (grib_accessor_to_integer_t*)a; - size_t size = 0; + size_t size = 0; int err = grib_get_size(grib_handle_of_accessor(a), self->key, &size); *count = size; @@ -37,9 +39,10 @@ int grib_accessor_class_to_integer_t::value_count(grib_accessor* a, long* count) return err; } -size_t grib_accessor_class_to_integer_t::string_length(grib_accessor* a){ +size_t grib_accessor_class_to_integer_t::string_length(grib_accessor* a) +{ grib_accessor_to_integer_t* self = (grib_accessor_to_integer_t*)a; - size_t size = 0; + size_t size = 0; if (self->length) return self->length; @@ -48,15 +51,18 @@ size_t grib_accessor_class_to_integer_t::string_length(grib_accessor* a){ return size; } -void grib_accessor_class_to_integer_t::dump(grib_accessor* a, grib_dumper* dumper){ +void grib_accessor_class_to_integer_t::dump(grib_accessor* a, grib_dumper* dumper) +{ grib_dump_long(dumper, a, NULL); } -int grib_accessor_class_to_integer_t::get_native_type(grib_accessor* a){ +int grib_accessor_class_to_integer_t::get_native_type(grib_accessor* a) +{ return GRIB_TYPE_LONG; } -int grib_accessor_class_to_integer_t::unpack_string(grib_accessor* a, char* val, size_t* len){ +int grib_accessor_class_to_integer_t::unpack_string(grib_accessor* a, char* val, size_t* len) +{ grib_accessor_to_integer_t* self = (grib_accessor_to_integer_t*)a; int err = 0; @@ -69,7 +75,7 @@ int grib_accessor_class_to_integer_t::unpack_string(grib_accessor* a, char* val, const char* cclass_name = a->cclass->name; grib_context_log(a->context, GRIB_LOG_ERROR, "%s: Buffer too small for %s. It is %zu bytes long (len=%zu)", - cclass_name, a->name, length+1, *len); + cclass_name, a->name, length + 1, *len); *len = length + 1; return GRIB_BUFFER_TOO_SMALL; } @@ -89,21 +95,25 @@ int grib_accessor_class_to_integer_t::unpack_string(grib_accessor* a, char* val, return GRIB_SUCCESS; } -int grib_accessor_class_to_integer_t::pack_string(grib_accessor* a, const char* val, size_t* len){ +int grib_accessor_class_to_integer_t::pack_string(grib_accessor* a, const char* val, size_t* len) +{ return GRIB_NOT_IMPLEMENTED; } -int grib_accessor_class_to_integer_t::pack_long(grib_accessor* a, const long* v, size_t* len){ +int grib_accessor_class_to_integer_t::pack_long(grib_accessor* a, const long* v, size_t* len) +{ grib_context_log(a->context, GRIB_LOG_ERROR, "Should not pack %s as an integer", a->name); return GRIB_NOT_IMPLEMENTED; } -int grib_accessor_class_to_integer_t::pack_double(grib_accessor* a, const double* v, size_t* len){ +int grib_accessor_class_to_integer_t::pack_double(grib_accessor* a, const double* v, size_t* len) +{ grib_context_log(a->context, GRIB_LOG_ERROR, "Should not pack %s as a double", a->name); return GRIB_NOT_IMPLEMENTED; } -int grib_accessor_class_to_integer_t::unpack_long(grib_accessor* a, long* v, size_t* len){ +int grib_accessor_class_to_integer_t::unpack_long(grib_accessor* a, long* v, size_t* len) +{ char val[1024] = {0,}; size_t l = sizeof(val); char* last = NULL; @@ -118,7 +128,8 @@ int grib_accessor_class_to_integer_t::unpack_long(grib_accessor* a, long* v, siz return GRIB_SUCCESS; } -int grib_accessor_class_to_integer_t::unpack_double(grib_accessor* a, double* v, size_t* len){ +int grib_accessor_class_to_integer_t::unpack_double(grib_accessor* a, double* v, size_t* len) +{ size_t l = 1; long val = 0; int err = unpack_long(a, &val, &l); @@ -127,6 +138,7 @@ int grib_accessor_class_to_integer_t::unpack_double(grib_accessor* a, double* v, return err; } -long grib_accessor_class_to_integer_t::next_offset(grib_accessor* a){ +long grib_accessor_class_to_integer_t::next_offset(grib_accessor* a) +{ return a->offset + a->length; } diff --git a/src/accessor/grib_accessor_class_to_string.cc b/src/accessor/grib_accessor_class_to_string.cc index 4f1150ffb..d0fd72727 100644 --- a/src/accessor/grib_accessor_class_to_string.cc +++ b/src/accessor/grib_accessor_class_to_string.cc @@ -11,11 +11,12 @@ #include "grib_accessor_class_to_string.h" -grib_accessor_class_to_string_t _grib_accessor_class_to_string{"to_string"}; +grib_accessor_class_to_string_t _grib_accessor_class_to_string{ "to_string" }; grib_accessor_class* grib_accessor_class_to_string = &_grib_accessor_class_to_string; -void grib_accessor_class_to_string_t::init(grib_accessor* a, const long len, grib_arguments* arg){ +void grib_accessor_class_to_string_t::init(grib_accessor* a, const long len, grib_arguments* arg) +{ grib_accessor_class_gen_t::init(a, len, arg); grib_accessor_to_string_t* self = (grib_accessor_to_string_t*)a; @@ -27,9 +28,10 @@ void grib_accessor_class_to_string_t::init(grib_accessor* a, const long len, gri a->length = 0; } -int grib_accessor_class_to_string_t::value_count(grib_accessor* a, long* count){ +int grib_accessor_class_to_string_t::value_count(grib_accessor* a, long* count) +{ grib_accessor_to_string_t* self = (grib_accessor_to_string_t*)a; - size_t size = 0; + size_t size = 0; int err = grib_get_size(grib_handle_of_accessor(a), self->key, &size); *count = size; @@ -37,7 +39,8 @@ int grib_accessor_class_to_string_t::value_count(grib_accessor* a, long* count){ return err; } -size_t grib_accessor_class_to_string_t::string_length(grib_accessor* a){ +size_t grib_accessor_class_to_string_t::string_length(grib_accessor* a) +{ grib_accessor_to_string_t* self = (grib_accessor_to_string_t*)a; if (self->length) @@ -48,15 +51,18 @@ size_t grib_accessor_class_to_string_t::string_length(grib_accessor* a){ return size; } -void grib_accessor_class_to_string_t::dump(grib_accessor* a, grib_dumper* dumper){ +void grib_accessor_class_to_string_t::dump(grib_accessor* a, grib_dumper* dumper) +{ grib_dump_string(dumper, a, NULL); } -int grib_accessor_class_to_string_t::get_native_type(grib_accessor* a){ +int grib_accessor_class_to_string_t::get_native_type(grib_accessor* a) +{ return GRIB_TYPE_STRING; } -int grib_accessor_class_to_string_t::unpack_string(grib_accessor* a, char* val, size_t* len){ +int grib_accessor_class_to_string_t::unpack_string(grib_accessor* a, char* val, size_t* len) +{ grib_accessor_to_string_t* self = (grib_accessor_to_string_t*)a; int err = 0; @@ -68,7 +74,7 @@ int grib_accessor_class_to_string_t::unpack_string(grib_accessor* a, char* val, const char* cclass_name = a->cclass->name; grib_context_log(a->context, GRIB_LOG_ERROR, "%s: Buffer too small for %s. It is %zu bytes long (len=%zu)", - cclass_name, a->name, length+1, *len); + cclass_name, a->name, length + 1, *len); *len = length + 1; return GRIB_BUFFER_TOO_SMALL; } @@ -89,7 +95,8 @@ int grib_accessor_class_to_string_t::unpack_string(grib_accessor* a, char* val, return GRIB_SUCCESS; } -int grib_accessor_class_to_string_t::unpack_long(grib_accessor* a, long* v, size_t* len){ +int grib_accessor_class_to_string_t::unpack_long(grib_accessor* a, long* v, size_t* len) +{ char val[1024] = {0,}; size_t l = sizeof(val); char* last = NULL; @@ -106,7 +113,8 @@ int grib_accessor_class_to_string_t::unpack_long(grib_accessor* a, long* v, size return err; } -int grib_accessor_class_to_string_t::unpack_double(grib_accessor* a, double* v, size_t* len){ +int grib_accessor_class_to_string_t::unpack_double(grib_accessor* a, double* v, size_t* len) +{ size_t l = 1; long val = 0; int err = unpack_long(a, &val, &l); @@ -115,6 +123,7 @@ int grib_accessor_class_to_string_t::unpack_double(grib_accessor* a, double* v, return err; } -long grib_accessor_class_to_string_t::next_offset(grib_accessor* a){ +long grib_accessor_class_to_string_t::next_offset(grib_accessor* a) +{ return a->offset + a->length; } diff --git a/src/accessor/grib_accessor_class_transient_darray.cc b/src/accessor/grib_accessor_class_transient_darray.cc index d45ec3478..71d404f0d 100644 --- a/src/accessor/grib_accessor_class_transient_darray.cc +++ b/src/accessor/grib_accessor_class_transient_darray.cc @@ -11,23 +11,26 @@ #include "grib_accessor_class_transient_darray.h" -grib_accessor_class_transient_darray_t _grib_accessor_class_transient_darray{"transient_darray"}; +grib_accessor_class_transient_darray_t _grib_accessor_class_transient_darray{ "transient_darray" }; grib_accessor_class* grib_accessor_class_transient_darray = &_grib_accessor_class_transient_darray; -void grib_accessor_class_transient_darray_t::init(grib_accessor* a, const long length, grib_arguments* args){ +void grib_accessor_class_transient_darray_t::init(grib_accessor* a, const long length, grib_arguments* args) +{ grib_accessor_class_gen_t::init(a, length, args); grib_accessor_transient_darray_t* self = (grib_accessor_transient_darray_t*)a; - self->arr = NULL; - self->type = GRIB_TYPE_DOUBLE; - a->length = 0; + self->arr = NULL; + self->type = GRIB_TYPE_DOUBLE; + a->length = 0; } -void grib_accessor_class_transient_darray_t::dump(grib_accessor* a, grib_dumper* dumper){ +void grib_accessor_class_transient_darray_t::dump(grib_accessor* a, grib_dumper* dumper) +{ grib_dump_double(dumper, a, NULL); } -int grib_accessor_class_transient_darray_t::pack_double(grib_accessor* a, const double* val, size_t* len){ +int grib_accessor_class_transient_darray_t::pack_double(grib_accessor* a, const double* val, size_t* len) +{ grib_accessor_transient_darray_t* self = (grib_accessor_transient_darray_t*)a; if (self->arr) @@ -40,7 +43,8 @@ int grib_accessor_class_transient_darray_t::pack_double(grib_accessor* a, const return GRIB_SUCCESS; } -int grib_accessor_class_transient_darray_t::pack_long(grib_accessor* a, const long* val, size_t* len){ +int grib_accessor_class_transient_darray_t::pack_long(grib_accessor* a, const long* val, size_t* len) +{ grib_accessor_transient_darray_t* self = (grib_accessor_transient_darray_t*)a; if (self->arr) @@ -53,7 +57,8 @@ int grib_accessor_class_transient_darray_t::pack_long(grib_accessor* a, const lo return GRIB_SUCCESS; } -int grib_accessor_class_transient_darray_t::unpack_double(grib_accessor* a, double* val, size_t* len){ +int grib_accessor_class_transient_darray_t::unpack_double(grib_accessor* a, double* val, size_t* len) +{ grib_accessor_transient_darray_t* self = (grib_accessor_transient_darray_t*)a; long count = 0; @@ -71,7 +76,8 @@ int grib_accessor_class_transient_darray_t::unpack_double(grib_accessor* a, doub return GRIB_SUCCESS; } -int grib_accessor_class_transient_darray_t::unpack_long(grib_accessor* a, long* val, size_t* len){ +int grib_accessor_class_transient_darray_t::unpack_long(grib_accessor* a, long* val, size_t* len) +{ grib_accessor_transient_darray_t* self = (grib_accessor_transient_darray_t*)a; long count = 0; @@ -89,14 +95,16 @@ int grib_accessor_class_transient_darray_t::unpack_long(grib_accessor* a, long* return GRIB_SUCCESS; } -void grib_accessor_class_transient_darray_t::destroy(grib_context* c, grib_accessor* a){ +void grib_accessor_class_transient_darray_t::destroy(grib_context* c, grib_accessor* a) +{ grib_accessor_transient_darray_t* self = (grib_accessor_transient_darray_t*)a; if (self->arr) grib_darray_delete(a->context, self->arr); grib_accessor_class_gen_t::destroy(c, a); } -int grib_accessor_class_transient_darray_t::value_count(grib_accessor* a, long* count){ +int grib_accessor_class_transient_darray_t::value_count(grib_accessor* a, long* count) +{ grib_accessor_transient_darray_t* self = (grib_accessor_transient_darray_t*)a; if (self->arr) *count = grib_darray_used_size(self->arr); @@ -106,7 +114,8 @@ int grib_accessor_class_transient_darray_t::value_count(grib_accessor* a, long* return 0; } -int grib_accessor_class_transient_darray_t::get_native_type(grib_accessor* a){ +int grib_accessor_class_transient_darray_t::get_native_type(grib_accessor* a) +{ const grib_accessor_transient_darray_t* self = (grib_accessor_transient_darray_t*)a; return self->type; } diff --git a/src/accessor/grib_accessor_class_trim.cc b/src/accessor/grib_accessor_class_trim.cc index a7db4f3ff..7f18a36b9 100644 --- a/src/accessor/grib_accessor_class_trim.cc +++ b/src/accessor/grib_accessor_class_trim.cc @@ -11,31 +11,33 @@ #include "grib_accessor_class_trim.h" -grib_accessor_class_trim_t _grib_accessor_class_trim{"trim"}; +grib_accessor_class_trim_t _grib_accessor_class_trim{ "trim" }; grib_accessor_class* grib_accessor_class_trim = &_grib_accessor_class_trim; -void grib_accessor_class_trim_t::init(grib_accessor* a, const long l, grib_arguments* arg){ +void grib_accessor_class_trim_t::init(grib_accessor* a, const long l, grib_arguments* arg) +{ grib_accessor_class_ascii_t::init(a, l, arg); - int n = 0; + int n = 0; grib_accessor_trim_t* self = (grib_accessor_trim_t*)a; - grib_handle* h = grib_handle_of_accessor(a); + grib_handle* h = grib_handle_of_accessor(a); - self->input = grib_arguments_get_name(h, arg, n++); - self->trim_left = grib_arguments_get_long(h, arg, n++); - self->trim_right= grib_arguments_get_long(h, arg, n++); + self->input = grib_arguments_get_name(h, arg, n++); + self->trim_left = grib_arguments_get_long(h, arg, n++); + self->trim_right = grib_arguments_get_long(h, arg, n++); DEBUG_ASSERT(self->trim_left == 0 || self->trim_left == 1); DEBUG_ASSERT(self->trim_right == 0 || self->trim_right == 1); } -int grib_accessor_class_trim_t::unpack_string(grib_accessor* a, char* val, size_t* len){ +int grib_accessor_class_trim_t::unpack_string(grib_accessor* a, char* val, size_t* len) +{ grib_accessor_trim_t* self = (grib_accessor_trim_t*)a; - int err = 0; - grib_handle* h = grib_handle_of_accessor(a); + int err = 0; + grib_handle* h = grib_handle_of_accessor(a); char input[256] = {0,}; - size_t size = sizeof(input) / sizeof(*input); - char* pInput = input; + size_t size = sizeof(input) / sizeof(*input); + char* pInput = input; err = grib_get_string(h, self->input, input, &size); if (err) return err; @@ -47,15 +49,16 @@ int grib_accessor_class_trim_t::unpack_string(grib_accessor* a, char* val, size_ return GRIB_SUCCESS; } -int grib_accessor_class_trim_t::pack_string(grib_accessor* a, const char* val, size_t* len){ +int grib_accessor_class_trim_t::pack_string(grib_accessor* a, const char* val, size_t* len) +{ char input[256] = {0,}; size_t inputLen = 256; char buf[256] = {0,}; char* pBuf = NULL; int err; - grib_handle* h = grib_handle_of_accessor(a); - grib_accessor_trim_t* self = (grib_accessor_trim_t*)a; + grib_handle* h = grib_handle_of_accessor(a); + grib_accessor_trim_t* self = (grib_accessor_trim_t*)a; grib_accessor* inputAccesstor = grib_find_accessor(h, self->input); if (!inputAccesstor) { grib_context_log(a->context, GRIB_LOG_ERROR, "Accessor for %s not found", self->input); @@ -69,8 +72,10 @@ int grib_accessor_class_trim_t::pack_string(grib_accessor* a, const char* val, s pBuf = buf; string_lrtrim(&pBuf, self->trim_left, self->trim_right); - return inputAccesstor->pack_string(pBuf, len);} + return inputAccesstor->pack_string(pBuf, len); +} -size_t grib_accessor_class_trim_t::string_length(grib_accessor* a){ +size_t grib_accessor_class_trim_t::string_length(grib_accessor* a) +{ return 1024; } From f0a46c9c3c13c1b2a2dc0d2b989639949196bfd1 Mon Sep 17 00:00:00 2001 From: shahramn Date: Sat, 29 Jun 2024 12:50:45 +0100 Subject: [PATCH 05/17] ECC-1809: BUFR: Update tables with the latest WMO V42.0.0 --- definitions/bufr/boot.def | 4 +- .../tables/0/wmo/42/codetables/1003.table | 8 + .../tables/0/wmo/42/codetables/10063.table | 10 + .../tables/0/wmo/42/codetables/10064.table | 4 + .../tables/0/wmo/42/codetables/1007.table | 263 +++ .../tables/0/wmo/42/codetables/1024.table | 9 + .../tables/0/wmo/42/codetables/1028.table | 7 + .../tables/0/wmo/42/codetables/1029.table | 8 + .../tables/0/wmo/42/codetables/1033.table | 240 +++ .../tables/0/wmo/42/codetables/1034.table | 104 + .../tables/0/wmo/42/codetables/1035.table | 308 +++ .../tables/0/wmo/42/codetables/1036.table | 42 + .../tables/0/wmo/42/codetables/1038.table | 7 + .../tables/0/wmo/42/codetables/1044.table | 9 + .../tables/0/wmo/42/codetables/1052.table | 4 + .../tables/0/wmo/42/codetables/1090.table | 5 + .../tables/0/wmo/42/codetables/1092.table | 6 + .../tables/0/wmo/42/codetables/1101.table | 202 ++ .../tables/0/wmo/42/codetables/11030.table | 25 + .../tables/0/wmo/42/codetables/11031.table | 16 + .../tables/0/wmo/42/codetables/11037.table | 30 + .../tables/0/wmo/42/codetables/11038.table | 17 + .../tables/0/wmo/42/codetables/11039.table | 17 + .../tables/0/wmo/42/codetables/1150.table | 7 + .../tables/0/wmo/42/codetables/1151.table | 3 + .../tables/0/wmo/42/codetables/1155.table | 8 + .../tables/0/wmo/42/codetables/13038.table | 4 + .../tables/0/wmo/42/codetables/13039.table | 3 + .../tables/0/wmo/42/codetables/13040.table | 14 + .../tables/0/wmo/42/codetables/13041.table | 10 + .../tables/0/wmo/42/codetables/13051.table | 8 + .../tables/0/wmo/42/codetables/13056.table | 11 + .../tables/0/wmo/42/codetables/13057.table | 11 + .../tables/0/wmo/42/codetables/15025.table | 4 + .../tables/0/wmo/42/codetables/19001.table | 7 + .../tables/0/wmo/42/codetables/19008.table | 5 + .../tables/0/wmo/42/codetables/19010.table | 3 + .../tables/0/wmo/42/codetables/19100.table | 9 + .../tables/0/wmo/42/codetables/19101.table | 10 + .../tables/0/wmo/42/codetables/19102.table | 8 + .../tables/0/wmo/42/codetables/19103.table | 12 + .../tables/0/wmo/42/codetables/19104.table | 12 + .../tables/0/wmo/42/codetables/19105.table | 10 + .../tables/0/wmo/42/codetables/19107.table | 11 + .../tables/0/wmo/42/codetables/19108.table | 8 + .../tables/0/wmo/42/codetables/19109.table | 12 + .../tables/0/wmo/42/codetables/19110.table | 8 + .../tables/0/wmo/42/codetables/19113.table | 8 + .../tables/0/wmo/42/codetables/19117.table | 4 + .../tables/0/wmo/42/codetables/19119.table | 4 + .../tables/0/wmo/42/codetables/20003.table | 266 +++ .../tables/0/wmo/42/codetables/20004.table | 21 + .../tables/0/wmo/42/codetables/20005.table | 21 + .../tables/0/wmo/42/codetables/20006.table | 5 + .../tables/0/wmo/42/codetables/20008.table | 19 + .../tables/0/wmo/42/codetables/20009.table | 7 + .../tables/0/wmo/42/codetables/2001.table | 4 + .../tables/0/wmo/42/codetables/20011.table | 16 + .../tables/0/wmo/42/codetables/20012.table | 55 + .../tables/0/wmo/42/codetables/20017.table | 11 + .../tables/0/wmo/42/codetables/20018.table | 4 + .../tables/0/wmo/42/codetables/2002.table | 3 + .../tables/0/wmo/42/codetables/20021.table | 23 + .../tables/0/wmo/42/codetables/20022.table | 7 + .../tables/0/wmo/42/codetables/20023.table | 14 + .../tables/0/wmo/42/codetables/20024.table | 8 + .../tables/0/wmo/42/codetables/20025.table | 13 + .../tables/0/wmo/42/codetables/20026.table | 16 + .../tables/0/wmo/42/codetables/20027.table | 8 + .../tables/0/wmo/42/codetables/20028.table | 4 + .../tables/0/wmo/42/codetables/20029.table | 4 + .../tables/0/wmo/42/codetables/2003.table | 13 + .../tables/0/wmo/42/codetables/20032.table | 6 + .../tables/0/wmo/42/codetables/20033.table | 3 + .../tables/0/wmo/42/codetables/20034.table | 12 + .../tables/0/wmo/42/codetables/20035.table | 12 + .../tables/0/wmo/42/codetables/20036.table | 12 + .../tables/0/wmo/42/codetables/20037.table | 12 + .../tables/0/wmo/42/codetables/2004.table | 11 + .../tables/0/wmo/42/codetables/20040.table | 9 + .../tables/0/wmo/42/codetables/20041.table | 14 + .../tables/0/wmo/42/codetables/20042.table | 4 + .../tables/0/wmo/42/codetables/20045.table | 4 + .../tables/0/wmo/42/codetables/20048.table | 5 + .../tables/0/wmo/42/codetables/20050.table | 10 + .../tables/0/wmo/42/codetables/20055.table | 12 + .../tables/0/wmo/42/codetables/20056.table | 8 + .../tables/0/wmo/42/codetables/2006.table | 11 + .../tables/0/wmo/42/codetables/20062.table | 21 + .../tables/0/wmo/42/codetables/20063.table | 72 + .../tables/0/wmo/42/codetables/2007.table | 11 + .../tables/0/wmo/42/codetables/20071.table | 11 + .../tables/0/wmo/42/codetables/20079.table | 4 + .../tables/0/wmo/42/codetables/2008.table | 7 + .../tables/0/wmo/42/codetables/20085.table | 3 + .../tables/0/wmo/42/codetables/20086.table | 11 + .../tables/0/wmo/42/codetables/20087.table | 6 + .../tables/0/wmo/42/codetables/20089.table | 11 + .../tables/0/wmo/42/codetables/2009.table | 4 + .../tables/0/wmo/42/codetables/20090.table | 7 + .../tables/0/wmo/42/codetables/20101.table | 11 + .../tables/0/wmo/42/codetables/20102.table | 11 + .../tables/0/wmo/42/codetables/20103.table | 11 + .../tables/0/wmo/42/codetables/20104.table | 11 + .../tables/0/wmo/42/codetables/20105.table | 12 + .../tables/0/wmo/42/codetables/20106.table | 7 + .../tables/0/wmo/42/codetables/20107.table | 11 + .../tables/0/wmo/42/codetables/20108.table | 9 + .../tables/0/wmo/42/codetables/2011.table | 100 + .../tables/0/wmo/42/codetables/20119.table | 4 + .../tables/0/wmo/42/codetables/20124.table | 4 + .../tables/0/wmo/42/codetables/2013.table | 11 + .../tables/0/wmo/42/codetables/20136.table | 44 + .../tables/0/wmo/42/codetables/20137.table | 11 + .../tables/0/wmo/42/codetables/20138.table | 9 + .../tables/0/wmo/42/codetables/20139.table | 7 + .../tables/0/wmo/42/codetables/2014.table | 51 + .../tables/0/wmo/42/codetables/20143.table | 4 + .../tables/0/wmo/42/codetables/2015.table | 7 + .../tables/0/wmo/42/codetables/2016.table | 4 + .../tables/0/wmo/42/codetables/2017.table | 6 + .../tables/0/wmo/42/codetables/2019.table | 414 ++++ .../tables/0/wmo/42/codetables/2020.table | 37 + .../tables/0/wmo/42/codetables/2021.table | 8 + .../tables/0/wmo/42/codetables/2022.table | 5 + .../tables/0/wmo/42/codetables/2023.table | 11 + .../tables/0/wmo/42/codetables/2024.table | 4 + .../tables/0/wmo/42/codetables/2025.table | 16 + .../tables/0/wmo/42/codetables/2030.table | 8 + .../tables/0/wmo/42/codetables/2031.table | 21 + .../tables/0/wmo/42/codetables/2032.table | 4 + .../tables/0/wmo/42/codetables/2033.table | 5 + .../tables/0/wmo/42/codetables/2034.table | 7 + .../tables/0/wmo/42/codetables/2036.table | 4 + .../tables/0/wmo/42/codetables/2037.table | 8 + .../tables/0/wmo/42/codetables/2038.table | 16 + .../tables/0/wmo/42/codetables/2039.table | 5 + .../tables/0/wmo/42/codetables/2040.table | 8 + .../tables/0/wmo/42/codetables/2041.table | 6 + .../tables/0/wmo/42/codetables/2042.table | 4 + .../tables/0/wmo/42/codetables/2044.table | 6 + .../tables/0/wmo/42/codetables/2045.table | 5 + .../tables/0/wmo/42/codetables/2046.table | 4 + .../tables/0/wmo/42/codetables/2047.table | 9 + .../tables/0/wmo/42/codetables/2048.table | 16 + .../tables/0/wmo/42/codetables/2049.table | 4 + .../tables/0/wmo/42/codetables/2050.table | 19 + .../tables/0/wmo/42/codetables/2051.table | 5 + .../tables/0/wmo/42/codetables/2052.table | 5 + .../tables/0/wmo/42/codetables/2053.table | 5 + .../tables/0/wmo/42/codetables/2054.table | 6 + .../tables/0/wmo/42/codetables/2055.table | 10 + .../tables/0/wmo/42/codetables/2056.table | 6 + .../tables/0/wmo/42/codetables/2057.table | 7 + .../tables/0/wmo/42/codetables/2058.table | 5 + .../tables/0/wmo/42/codetables/2059.table | 5 + .../tables/0/wmo/42/codetables/2060.table | 7 + .../tables/0/wmo/42/codetables/2061.table | 3 + .../tables/0/wmo/42/codetables/2062.table | 7 + .../tables/0/wmo/42/codetables/2064.table | 4 + .../tables/0/wmo/42/codetables/2066.table | 9 + .../tables/0/wmo/42/codetables/2070.table | 13 + .../tables/0/wmo/42/codetables/2080.table | 7 + .../tables/0/wmo/42/codetables/2081.table | 11 + .../tables/0/wmo/42/codetables/2083.table | 7 + .../tables/0/wmo/42/codetables/2084.table | 5 + .../tables/0/wmo/42/codetables/2092.table | 4 + .../tables/0/wmo/42/codetables/2095.table | 7 + .../tables/0/wmo/42/codetables/2096.table | 9 + .../tables/0/wmo/42/codetables/2097.table | 26 + .../tables/0/wmo/42/codetables/2099.table | 5 + .../tables/0/wmo/42/codetables/2101.table | 10 + .../tables/0/wmo/42/codetables/21026.table | 4 + .../tables/0/wmo/42/codetables/2103.table | 1 + .../tables/0/wmo/42/codetables/2104.table | 9 + .../tables/0/wmo/42/codetables/21066.table | 11 + .../tables/0/wmo/42/codetables/21067.table | 12 + .../tables/0/wmo/42/codetables/21068.table | 7 + .../tables/0/wmo/42/codetables/21069.table | 9 + .../tables/0/wmo/42/codetables/21070.table | 22 + .../tables/0/wmo/42/codetables/21072.table | 3 + .../tables/0/wmo/42/codetables/21073.table | 8 + .../tables/0/wmo/42/codetables/21076.table | 4 + .../tables/0/wmo/42/codetables/21109.table | 7 + .../tables/0/wmo/42/codetables/21115.table | 10 + .../tables/0/wmo/42/codetables/21116.table | 16 + .../tables/0/wmo/42/codetables/21119.table | 14 + .../tables/0/wmo/42/codetables/21144.table | 1 + .../tables/0/wmo/42/codetables/21148.table | 2 + .../tables/0/wmo/42/codetables/2115.table | 7 + .../tables/0/wmo/42/codetables/21150.table | 4 + .../tables/0/wmo/42/codetables/21155.table | 16 + .../tables/0/wmo/42/codetables/21158.table | 4 + .../tables/0/wmo/42/codetables/21159.table | 4 + .../tables/0/wmo/42/codetables/21169.table | 4 + .../tables/0/wmo/42/codetables/2119.table | 8 + .../tables/0/wmo/42/codetables/2131.table | 1 + .../tables/0/wmo/42/codetables/2137.table | 4 + .../tables/0/wmo/42/codetables/2138.table | 3 + .../tables/0/wmo/42/codetables/2139.table | 3 + .../tables/0/wmo/42/codetables/2143.table | 21 + .../tables/0/wmo/42/codetables/2144.table | 8 + .../tables/0/wmo/42/codetables/2145.table | 9 + .../tables/0/wmo/42/codetables/2146.table | 11 + .../tables/0/wmo/42/codetables/2147.table | 11 + .../tables/0/wmo/42/codetables/2148.table | 12 + .../tables/0/wmo/42/codetables/2149.table | 38 + .../tables/0/wmo/42/codetables/2150.table | 55 + .../tables/0/wmo/42/codetables/2151.table | 11 + .../tables/0/wmo/42/codetables/2152.table | 13 + .../tables/0/wmo/42/codetables/2158.table | 8 + .../tables/0/wmo/42/codetables/2159.table | 7 + .../tables/0/wmo/42/codetables/2160.table | 11 + .../tables/0/wmo/42/codetables/2161.table | 5 + .../tables/0/wmo/42/codetables/2162.table | 19 + .../tables/0/wmo/42/codetables/2163.table | 16 + .../tables/0/wmo/42/codetables/2164.table | 5 + .../tables/0/wmo/42/codetables/2165.table | 7 + .../tables/0/wmo/42/codetables/2166.table | 6 + .../tables/0/wmo/42/codetables/2167.table | 4 + .../tables/0/wmo/42/codetables/2169.table | 5 + .../tables/0/wmo/42/codetables/2170.table | 5 + .../tables/0/wmo/42/codetables/2172.table | 5 + .../tables/0/wmo/42/codetables/2175.table | 9 + .../tables/0/wmo/42/codetables/2176.table | 6 + .../tables/0/wmo/42/codetables/2177.table | 6 + .../tables/0/wmo/42/codetables/2178.table | 5 + .../tables/0/wmo/42/codetables/2179.table | 6 + .../tables/0/wmo/42/codetables/2180.table | 8 + .../tables/0/wmo/42/codetables/2181.table | 5 + .../tables/0/wmo/42/codetables/2182.table | 7 + .../tables/0/wmo/42/codetables/2183.table | 9 + .../tables/0/wmo/42/codetables/2184.table | 9 + .../tables/0/wmo/42/codetables/2185.table | 7 + .../tables/0/wmo/42/codetables/2186.table | 24 + .../tables/0/wmo/42/codetables/2187.table | 11 + .../tables/0/wmo/42/codetables/2188.table | 10 + .../tables/0/wmo/42/codetables/2189.table | 4 + .../tables/0/wmo/42/codetables/2191.table | 4 + .../tables/0/wmo/42/codetables/22056.table | 4 + .../tables/0/wmo/42/codetables/22060.table | 4 + .../tables/0/wmo/42/codetables/22061.table | 11 + .../tables/0/wmo/42/codetables/22067.table | 129 ++ .../tables/0/wmo/42/codetables/22068.table | 43 + .../tables/0/wmo/42/codetables/22120.table | 13 + .../tables/0/wmo/42/codetables/22121.table | 9 + .../tables/0/wmo/42/codetables/22122.table | 8 + .../tables/0/wmo/42/codetables/22123.table | 9 + .../tables/0/wmo/42/codetables/22178.table | 12 + .../tables/0/wmo/42/codetables/23001.table | 5 + .../tables/0/wmo/42/codetables/23002.table | 16 + .../tables/0/wmo/42/codetables/23003.table | 8 + .../tables/0/wmo/42/codetables/23004.table | 6 + .../tables/0/wmo/42/codetables/23005.table | 4 + .../tables/0/wmo/42/codetables/23006.table | 8 + .../tables/0/wmo/42/codetables/23007.table | 5 + .../tables/0/wmo/42/codetables/23008.table | 4 + .../tables/0/wmo/42/codetables/23009.table | 4 + .../tables/0/wmo/42/codetables/23016.table | 4 + .../tables/0/wmo/42/codetables/23018.table | 6 + .../tables/0/wmo/42/codetables/23031.table | 4 + .../tables/0/wmo/42/codetables/23032.table | 4 + .../tables/0/wmo/42/codetables/24003.table | 5 + .../tables/0/wmo/42/codetables/25004.table | 4 + .../tables/0/wmo/42/codetables/25005.table | 4 + .../tables/0/wmo/42/codetables/25006.table | 5 + .../tables/0/wmo/42/codetables/25009.table | 4 + .../tables/0/wmo/42/codetables/25010.table | 8 + .../tables/0/wmo/42/codetables/25011.table | 4 + .../tables/0/wmo/42/codetables/25012.table | 4 + .../tables/0/wmo/42/codetables/25013.table | 1 + .../tables/0/wmo/42/codetables/25015.table | 1 + .../tables/0/wmo/42/codetables/25017.table | 1 + .../tables/0/wmo/42/codetables/25020.table | 4 + .../tables/0/wmo/42/codetables/25021.table | 5 + .../tables/0/wmo/42/codetables/25022.table | 8 + .../tables/0/wmo/42/codetables/25023.table | 8 + .../tables/0/wmo/42/codetables/25024.table | 13 + .../tables/0/wmo/42/codetables/25029.table | 5 + .../tables/0/wmo/42/codetables/25030.table | 4 + .../tables/0/wmo/42/codetables/25031.table | 6 + .../tables/0/wmo/42/codetables/25032.table | 4 + .../tables/0/wmo/42/codetables/25033.table | 4 + .../tables/0/wmo/42/codetables/25034.table | 3 + .../tables/0/wmo/42/codetables/25035.table | 8 + .../tables/0/wmo/42/codetables/25036.table | 4 + .../tables/0/wmo/42/codetables/25040.table | 10 + .../tables/0/wmo/42/codetables/25041.table | 4 + .../tables/0/wmo/42/codetables/25042.table | 4 + .../tables/0/wmo/42/codetables/25053.table | 6 + .../tables/0/wmo/42/codetables/25063.table | 4 + .../tables/0/wmo/42/codetables/25069.table | 7 + .../tables/0/wmo/42/codetables/25086.table | 4 + .../tables/0/wmo/42/codetables/25090.table | 11 + .../tables/0/wmo/42/codetables/25093.table | 3 + .../tables/0/wmo/42/codetables/25095.table | 1 + .../tables/0/wmo/42/codetables/25096.table | 4 + .../tables/0/wmo/42/codetables/25097.table | 11 + .../tables/0/wmo/42/codetables/25098.table | 8 + .../tables/0/wmo/42/codetables/25099.table | 6 + .../tables/0/wmo/42/codetables/25110.table | 6 + .../tables/0/wmo/42/codetables/25112.table | 5 + .../tables/0/wmo/42/codetables/25113.table | 3 + .../tables/0/wmo/42/codetables/25120.table | 4 + .../tables/0/wmo/42/codetables/25122.table | 4 + .../tables/0/wmo/42/codetables/25123.table | 4 + .../tables/0/wmo/42/codetables/25124.table | 4 + .../tables/0/wmo/42/codetables/25139.table | 3 + .../tables/0/wmo/42/codetables/25150.table | 3 + .../tables/0/wmo/42/codetables/25174.table | 13 + .../tables/0/wmo/42/codetables/25181.table | 3 + .../tables/0/wmo/42/codetables/25182.table | 3 + .../tables/0/wmo/42/codetables/25184.table | 3 + .../tables/0/wmo/42/codetables/25185.table | 2 + .../tables/0/wmo/42/codetables/25187.table | 3 + .../tables/0/wmo/42/codetables/25188.table | 6 + .../tables/0/wmo/42/codetables/25190.table | 7 + .../tables/0/wmo/42/codetables/25191.table | 4 + .../tables/0/wmo/42/codetables/26010.table | 25 + .../tables/0/wmo/42/codetables/29001.table | 8 + .../tables/0/wmo/42/codetables/29002.table | 4 + .../tables/0/wmo/42/codetables/3001.table | 12 + .../tables/0/wmo/42/codetables/3003.table | 8 + .../tables/0/wmo/42/codetables/30031.table | 13 + .../tables/0/wmo/42/codetables/30032.table | 9 + .../tables/0/wmo/42/codetables/3004.table | 11 + .../tables/0/wmo/42/codetables/3008.table | 4 + .../tables/0/wmo/42/codetables/3010.table | 12 + .../tables/0/wmo/42/codetables/3011.table | 4 + .../tables/0/wmo/42/codetables/3012.table | 3 + .../tables/0/wmo/42/codetables/3016.table | 9 + .../tables/0/wmo/42/codetables/3017.table | 5 + .../tables/0/wmo/42/codetables/3018.table | 22 + .../tables/0/wmo/42/codetables/3019.table | 8 + .../tables/0/wmo/42/codetables/3020.table | 5 + .../tables/0/wmo/42/codetables/3021.table | 4 + .../tables/0/wmo/42/codetables/3022.table | 4 + .../tables/0/wmo/42/codetables/3023.table | 8 + .../tables/0/wmo/42/codetables/3027.table | 8 + .../tables/0/wmo/42/codetables/3028.table | 8 + .../tables/0/wmo/42/codetables/3029.table | 3 + .../tables/0/wmo/42/codetables/3030.table | 3 + .../tables/0/wmo/42/codetables/31021.table | 10 + .../tables/0/wmo/42/codetables/31031.table | 1 + .../tables/0/wmo/42/codetables/33002.table | 4 + .../tables/0/wmo/42/codetables/33003.table | 5 + .../tables/0/wmo/42/codetables/33005.table | 23 + .../tables/0/wmo/42/codetables/33006.table | 5 + .../tables/0/wmo/42/codetables/33015.table | 16 + .../tables/0/wmo/42/codetables/33020.table | 8 + .../tables/0/wmo/42/codetables/33021.table | 4 + .../tables/0/wmo/42/codetables/33022.table | 4 + .../tables/0/wmo/42/codetables/33023.table | 4 + .../tables/0/wmo/42/codetables/33024.table | 10 + .../tables/0/wmo/42/codetables/33025.table | 5 + .../tables/0/wmo/42/codetables/33026.table | 17 + .../tables/0/wmo/42/codetables/33027.table | 6 + .../tables/0/wmo/42/codetables/33028.table | 7 + .../tables/0/wmo/42/codetables/33030.table | 7 + .../tables/0/wmo/42/codetables/33031.table | 21 + .../tables/0/wmo/42/codetables/33032.table | 7 + .../tables/0/wmo/42/codetables/33033.table | 3 + .../tables/0/wmo/42/codetables/33035.table | 10 + .../tables/0/wmo/42/codetables/33037.table | 19 + .../tables/0/wmo/42/codetables/33038.table | 9 + .../tables/0/wmo/42/codetables/33039.table | 12 + .../tables/0/wmo/42/codetables/33041.table | 4 + .../tables/0/wmo/42/codetables/33042.table | 5 + .../tables/0/wmo/42/codetables/33043.table | 4 + .../tables/0/wmo/42/codetables/33044.table | 14 + .../tables/0/wmo/42/codetables/33047.table | 27 + .../tables/0/wmo/42/codetables/33048.table | 4 + .../tables/0/wmo/42/codetables/33049.table | 4 + .../tables/0/wmo/42/codetables/33050.table | 9 + .../tables/0/wmo/42/codetables/33054.table | 5 + .../tables/0/wmo/42/codetables/33055.table | 13 + .../tables/0/wmo/42/codetables/33056.table | 13 + .../tables/0/wmo/42/codetables/33060.table | 4 + .../tables/0/wmo/42/codetables/33066.table | 4 + .../tables/0/wmo/42/codetables/33070.table | 14 + .../tables/0/wmo/42/codetables/33071.table | 10 + .../tables/0/wmo/42/codetables/33072.table | 18 + .../tables/0/wmo/42/codetables/33075.table | 5 + .../tables/0/wmo/42/codetables/33076.table | 2 + .../tables/0/wmo/42/codetables/33077.table | 12 + .../tables/0/wmo/42/codetables/33078.table | 5 + .../tables/0/wmo/42/codetables/33079.table | 10 + .../tables/0/wmo/42/codetables/33080.table | 13 + .../tables/0/wmo/42/codetables/33081.table | 9 + .../tables/0/wmo/42/codetables/33082.table | 10 + .../tables/0/wmo/42/codetables/33083.table | 10 + .../tables/0/wmo/42/codetables/33084.table | 10 + .../tables/0/wmo/42/codetables/33085.table | 14 + .../tables/0/wmo/42/codetables/33086.table | 5 + .../tables/0/wmo/42/codetables/33087.table | 10 + .../tables/0/wmo/42/codetables/33088.table | 12 + .../tables/0/wmo/42/codetables/33092.table | 2 + .../tables/0/wmo/42/codetables/33093.table | 19 + .../tables/0/wmo/42/codetables/33094.table | 8 + .../tables/0/wmo/42/codetables/33095.table | 7 + .../tables/0/wmo/42/codetables/33096.table | 15 + .../tables/0/wmo/42/codetables/33097.table | 10 + .../tables/0/wmo/42/codetables/33098.table | 8 + .../tables/0/wmo/42/codetables/33099.table | 15 + .../tables/0/wmo/42/codetables/33100.table | 7 + .../tables/0/wmo/42/codetables/33101.table | 12 + .../tables/0/wmo/42/codetables/33102.table | 9 + .../tables/0/wmo/42/codetables/33103.table | 8 + .../tables/0/wmo/42/codetables/33104.table | 15 + .../tables/0/wmo/42/codetables/33105.table | 9 + .../tables/0/wmo/42/codetables/33106.table | 12 + .../tables/0/wmo/42/codetables/33107.table | 15 + .../tables/0/wmo/42/codetables/33108.table | 12 + .../tables/0/wmo/42/codetables/33109.table | 6 + .../tables/0/wmo/42/codetables/33110.table | 8 + .../tables/0/wmo/42/codetables/33111.table | 31 + .../tables/0/wmo/42/codetables/33113.table | 11 + .../tables/0/wmo/42/codetables/33114.table | 16 + .../tables/0/wmo/42/codetables/33115.table | 6 + .../tables/0/wmo/42/codetables/33116.table | 16 + .../tables/0/wmo/42/codetables/33117.table | 16 + .../tables/0/wmo/42/codetables/35000.table | 1 + .../tables/0/wmo/42/codetables/35001.table | 4 + .../tables/0/wmo/42/codetables/35030.table | 10 + .../tables/0/wmo/42/codetables/35031.table | 20 + .../tables/0/wmo/42/codetables/35032.table | 10 + .../tables/0/wmo/42/codetables/35033.table | 12 + .../tables/0/wmo/42/codetables/35034.table | 7 + .../tables/0/wmo/42/codetables/35035.table | 20 + .../tables/0/wmo/42/codetables/40005.table | 5 + .../tables/0/wmo/42/codetables/40006.table | 8 + .../tables/0/wmo/42/codetables/40011.table | 4 + .../tables/0/wmo/42/codetables/40012.table | 3 + .../tables/0/wmo/42/codetables/40013.table | 5 + .../tables/0/wmo/42/codetables/40020.table | 16 + .../tables/0/wmo/42/codetables/40023.table | 4 + .../tables/0/wmo/42/codetables/40024.table | 5 + .../tables/0/wmo/42/codetables/40025.table | 4 + .../tables/0/wmo/42/codetables/40028.table | 16 + .../tables/0/wmo/42/codetables/40036.table | 6 + .../tables/0/wmo/42/codetables/40043.table | 4 + .../tables/0/wmo/42/codetables/40045.table | 4 + .../tables/0/wmo/42/codetables/40046.table | 5 + .../tables/0/wmo/42/codetables/40047.table | 4 + .../tables/0/wmo/42/codetables/40048.table | 4 + .../tables/0/wmo/42/codetables/40049.table | 12 + .../tables/0/wmo/42/codetables/40050.table | 3 + .../tables/0/wmo/42/codetables/40051.table | 8 + .../tables/0/wmo/42/codetables/40052.table | 4 + .../tables/0/wmo/42/codetables/40054.table | 12 + .../tables/0/wmo/42/codetables/40055.table | 20 + .../tables/0/wmo/42/codetables/40056.table | 4 + .../tables/0/wmo/42/codetables/40057.table | 30 + .../tables/0/wmo/42/codetables/40068.table | 4 + .../tables/0/wmo/42/codetables/40074.table | 10 + .../tables/0/wmo/42/codetables/40077.table | 4 + .../tables/0/wmo/42/codetables/40080.table | 4 + .../tables/0/wmo/42/codetables/4059.table | 5 + .../tables/0/wmo/42/codetables/4080.table | 6 + .../tables/0/wmo/42/codetables/42004.table | 3 + .../tables/0/wmo/42/codetables/42017.table | 5 + .../tables/0/wmo/42/codetables/42018.table | 6 + .../tables/0/wmo/42/codetables/5069.table | 4 + .../tables/0/wmo/42/codetables/8001.table | 6 + .../tables/0/wmo/42/codetables/8002.table | 19 + .../tables/0/wmo/42/codetables/8003.table | 12 + .../tables/0/wmo/42/codetables/8004.table | 6 + .../tables/0/wmo/42/codetables/8005.table | 7 + .../tables/0/wmo/42/codetables/8006.table | 8 + .../tables/0/wmo/42/codetables/8007.table | 5 + .../tables/0/wmo/42/codetables/8008.table | 8 + .../tables/0/wmo/42/codetables/8009.table | 16 + .../tables/0/wmo/42/codetables/8010.table | 14 + .../tables/0/wmo/42/codetables/8011.table | 27 + .../tables/0/wmo/42/codetables/8012.table | 4 + .../tables/0/wmo/42/codetables/8013.table | 4 + .../tables/0/wmo/42/codetables/8014.table | 10 + .../tables/0/wmo/42/codetables/8015.table | 4 + .../tables/0/wmo/42/codetables/8016.table | 5 + .../tables/0/wmo/42/codetables/8017.table | 4 + .../tables/0/wmo/42/codetables/8018.table | 4 + .../tables/0/wmo/42/codetables/8019.table | 8 + .../tables/0/wmo/42/codetables/8021.table | 32 + .../tables/0/wmo/42/codetables/8023.table | 15 + .../tables/0/wmo/42/codetables/8024.table | 12 + .../tables/0/wmo/42/codetables/8025.table | 5 + .../tables/0/wmo/42/codetables/8026.table | 5 + .../tables/0/wmo/42/codetables/8029.table | 24 + .../tables/0/wmo/42/codetables/8032.table | 7 + .../tables/0/wmo/42/codetables/8033.table | 6 + .../tables/0/wmo/42/codetables/8034.table | 10 + .../tables/0/wmo/42/codetables/8035.table | 8 + .../tables/0/wmo/42/codetables/8036.table | 8 + .../tables/0/wmo/42/codetables/8037.table | 4 + .../tables/0/wmo/42/codetables/8038.table | 3 + .../tables/0/wmo/42/codetables/8039.table | 8 + .../tables/0/wmo/42/codetables/8040.table | 49 + .../tables/0/wmo/42/codetables/8041.table | 15 + .../tables/0/wmo/42/codetables/8042.table | 17 + .../tables/0/wmo/42/codetables/8043.table | 20 + .../tables/0/wmo/42/codetables/8045.table | 5 + .../tables/0/wmo/42/codetables/8046.table | 587 ++++++ .../tables/0/wmo/42/codetables/8050.table | 11 + .../tables/0/wmo/42/codetables/8051.table | 7 + .../tables/0/wmo/42/codetables/8052.table | 26 + .../tables/0/wmo/42/codetables/8053.table | 4 + .../tables/0/wmo/42/codetables/8054.table | 3 + .../tables/0/wmo/42/codetables/8060.table | 8 + .../tables/0/wmo/42/codetables/8065.table | 4 + .../tables/0/wmo/42/codetables/8066.table | 4 + .../tables/0/wmo/42/codetables/8070.table | 6 + .../tables/0/wmo/42/codetables/8071.table | 4 + .../tables/0/wmo/42/codetables/8072.table | 8 + .../tables/0/wmo/42/codetables/8074.table | 4 + .../tables/0/wmo/42/codetables/8075.table | 4 + .../tables/0/wmo/42/codetables/8076.table | 9 + .../tables/0/wmo/42/codetables/8077.table | 7 + .../tables/0/wmo/42/codetables/8079.table | 9 + .../tables/0/wmo/42/codetables/8080.table | 20 + .../tables/0/wmo/42/codetables/8081.table | 5 + .../tables/0/wmo/42/codetables/8082.table | 3 + .../tables/0/wmo/42/codetables/8083.table | 9 + .../tables/0/wmo/42/codetables/8085.table | 4 + .../tables/0/wmo/42/codetables/8086.table | 11 + .../tables/0/wmo/42/codetables/8087.table | 5 + .../tables/0/wmo/42/codetables/8088.table | 4 + .../tables/0/wmo/42/codetables/8091.table | 11 + .../tables/0/wmo/42/codetables/8092.table | 3 + .../tables/0/wmo/42/codetables/8093.table | 4 + .../tables/0/wmo/42/codetables/8094.table | 8 + .../tables/0/wmo/42/codetables/8095.table | 36 + .../tables/0/wmo/42/codetables/8096.table | 36 + .../tables/0/wmo/42/codetables/8097.table | 4 + .../tables/0/wmo/42/codetables/8098.table | 7 + .../tables/0/wmo/42/codetables/8099.table | 3 + .../bufr/tables/0/wmo/42/element.table | 1834 +++++++++++++++++ definitions/bufr/tables/0/wmo/42/sequence.def | 1303 ++++++++++++ 537 files changed, 10572 insertions(+), 2 deletions(-) create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1003.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/10063.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/10064.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1007.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1024.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1028.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1029.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1033.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1034.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1035.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1036.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1038.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1044.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1052.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1090.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1092.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1101.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/11030.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/11031.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/11037.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/11038.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/11039.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1150.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1151.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/1155.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/13038.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/13039.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/13040.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/13041.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/13051.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/13056.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/13057.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/15025.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19001.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19008.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19010.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19100.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19101.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19102.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19103.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19104.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19105.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19107.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19108.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19109.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19110.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19113.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19117.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/19119.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20003.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20004.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20005.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20006.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20008.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20009.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2001.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20011.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20012.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20017.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20018.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2002.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20021.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20022.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20023.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20024.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20025.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20026.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20027.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20028.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20029.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2003.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20032.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20033.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20034.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20035.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20036.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20037.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2004.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20040.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20041.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20042.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20045.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20048.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20050.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20055.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20056.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2006.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20062.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20063.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2007.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20071.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20079.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2008.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20085.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20086.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20087.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20089.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2009.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20090.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20101.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20102.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20103.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20104.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20105.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20106.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20107.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20108.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2011.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20119.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20124.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2013.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20136.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20137.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20138.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20139.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2014.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/20143.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2015.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2016.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2017.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2019.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2020.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2021.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2022.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2023.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2024.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2025.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2030.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2031.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2032.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2033.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2034.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2036.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2037.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2038.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2039.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2040.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2041.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2042.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2044.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2045.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2046.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2047.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2048.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2049.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2050.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2051.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2052.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2053.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2054.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2055.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2056.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2057.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2058.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2059.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2060.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2061.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2062.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2064.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2066.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2070.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2080.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2081.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2083.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2084.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2092.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2095.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2096.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2097.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2099.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2101.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21026.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2103.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2104.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21066.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21067.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21068.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21069.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21070.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21072.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21073.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21076.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21109.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21115.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21116.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21119.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21144.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21148.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2115.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21150.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21155.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21158.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21159.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/21169.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2119.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2131.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2137.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2138.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2139.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2143.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2144.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2145.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2146.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2147.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2148.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2149.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2150.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2151.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2152.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2158.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2159.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2160.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2161.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2162.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2163.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2164.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2165.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2166.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2167.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2169.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2170.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2172.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2175.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2176.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2177.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2178.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2179.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2180.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2181.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2182.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2183.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2184.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2185.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2186.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2187.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2188.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2189.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/2191.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/22056.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/22060.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/22061.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/22067.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/22068.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/22120.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/22121.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/22122.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/22123.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/22178.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23001.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23002.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23003.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23004.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23005.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23006.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23007.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23008.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23009.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23016.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23018.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23031.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/23032.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/24003.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25004.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25005.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25006.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25009.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25010.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25011.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25012.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25013.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25015.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25017.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25020.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25021.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25022.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25023.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25024.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25029.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25030.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25031.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25032.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25033.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25034.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25035.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25036.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25040.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25041.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25042.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25053.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25063.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25069.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25086.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25090.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25093.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25095.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25096.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25097.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25098.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25099.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25110.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25112.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25113.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25120.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25122.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25123.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25124.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25139.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25150.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25174.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25181.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25182.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25184.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25185.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25187.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25188.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25190.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/25191.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/26010.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/29001.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/29002.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3001.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3003.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/30031.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/30032.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3004.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3008.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3010.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3011.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3012.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3016.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3017.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3018.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3019.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3020.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3021.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3022.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3023.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3027.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3028.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3029.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/3030.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/31021.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/31031.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33002.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33003.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33005.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33006.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33015.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33020.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33021.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33022.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33023.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33024.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33025.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33026.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33027.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33028.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33030.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33031.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33032.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33033.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33035.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33037.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33038.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33039.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33041.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33042.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33043.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33044.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33047.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33048.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33049.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33050.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33054.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33055.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33056.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33060.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33066.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33070.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33071.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33072.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33075.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33076.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33077.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33078.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33079.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33080.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33081.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33082.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33083.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33084.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33085.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33086.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33087.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33088.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33092.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33093.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33094.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33095.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33096.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33097.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33098.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33099.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33100.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33101.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33102.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33103.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33104.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33105.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33106.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33107.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33108.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33109.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33110.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33111.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33113.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33114.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33115.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33116.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/33117.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/35000.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/35001.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/35030.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/35031.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/35032.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/35033.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/35034.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/35035.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40005.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40006.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40011.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40012.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40013.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40020.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40023.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40024.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40025.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40028.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40036.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40043.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40045.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40046.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40047.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40048.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40049.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40050.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40051.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40052.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40054.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40055.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40056.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40057.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40068.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40074.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40077.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/40080.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/4059.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/4080.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/42004.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/42017.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/42018.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/5069.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8001.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8002.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8003.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8004.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8005.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8006.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8007.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8008.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8009.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8010.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8011.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8012.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8013.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8014.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8015.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8016.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8017.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8018.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8019.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8021.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8023.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8024.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8025.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8026.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8029.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8032.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8033.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8034.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8035.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8036.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8037.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8038.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8039.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8040.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8041.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8042.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8043.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8045.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8046.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8050.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8051.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8052.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8053.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8054.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8060.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8065.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8066.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8070.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8071.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8072.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8074.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8075.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8076.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8077.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8079.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8080.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8081.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8082.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8083.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8085.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8086.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8087.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8088.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8091.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8092.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8093.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8094.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8095.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8096.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8097.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8098.table create mode 100644 definitions/bufr/tables/0/wmo/42/codetables/8099.table create mode 100644 definitions/bufr/tables/0/wmo/42/element.table create mode 100644 definitions/bufr/tables/0/wmo/42/sequence.def diff --git a/definitions/bufr/boot.def b/definitions/bufr/boot.def index 0ee5addcb..76ea8d4d9 100644 --- a/definitions/bufr/boot.def +++ b/definitions/bufr/boot.def @@ -12,8 +12,8 @@ transient missingValue=999999 : hidden; transient setToMissingIfOutOfRange=0 : hidden; # This gets updated twice a year by WMO. -# See https://community.wmo.int/activity-areas/wmo-codes/manual-codes/latest-version -constant masterTablesVersionNumberLatest = 41; +# See https://community.wmo.int/en/wis/latest-version +constant masterTablesVersionNumberLatest = 42; #negative value=not used transient inputDelayedDescriptorReplicationFactor={-1} : hidden; diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1003.table b/definitions/bufr/tables/0/wmo/42/codetables/1003.table new file mode 100644 index 000000000..a0c90ee0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1003.table @@ -0,0 +1,8 @@ +0 0 ANTARCTICA +1 1 REGION I +2 2 REGION II +3 3 REGION III +4 4 REGION IV +5 5 REGION V +6 6 REGION VI +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/10063.table b/definitions/bufr/tables/0/wmo/42/codetables/10063.table new file mode 100644 index 000000000..50978740b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/10063.table @@ -0,0 +1,10 @@ +0 0 INCREASING, THEN DECREASING; ATMOSPHERIC PRESSURE THE SAME OR HIGHER THAN THREE HOURS AGO +1 1 INCREASING, THEN STEADY; OR INCREASING, THEN INCREASING MORE SLOWLY +2 2 INCREASING (STEADILY OR UNSTEADILY) +3 3 DECREASING OR STEADY, THEN INCREASING; OR INCREASING, THEN INCREASING MORE RAPIDLY +4 4 STEADY; ATMOSPHERIC PRESSURE THE SAME AS THREE HOURS AGO +5 5 DECREASING, THEN INCREASING; ATMOSPHERIC PRESSURE THE SAME OR LOWER THAN THREE HOURS AGO +6 6 DECREASING, THEN STEADY; OR DECREASING, THEN DECREASING MORE SLOWLY +7 7 DECREASING (STEADILY OR UNSTEADILY) +8 8 STEADY OR INCREASING, THEN DECREASING; OR DECREASING, THEN DECREASING MORE RAPIDLY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/10064.table b/definitions/bufr/tables/0/wmo/42/codetables/10064.table new file mode 100644 index 000000000..88ba38a95 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/10064.table @@ -0,0 +1,4 @@ +0 0 SUBSONIC +1 1 TRANSONIC +2 2 SUPERSONIC +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1007.table b/definitions/bufr/tables/0/wmo/42/codetables/1007.table new file mode 100644 index 000000000..4775da96c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1007.table @@ -0,0 +1,263 @@ +0 0 RESERVED +1 1 ERS 1 +2 2 ERS 2 +3 3 METOP-1 (METOP-B) +4 4 METOP-2 (METOP-A) +5 5 METOP-3 (METOP-C) +20 20 SPOT1 +21 21 SPOT2 +22 22 SPOT3 +23 23 SPOT4 +24 24 METOP-D +25 25 METOP-E +26 26 METOP-F +27 27 METOP-G +28 28 METOP-H +29 29 METOP-I +40 40 OERSTED +41 41 CHAMP +42 42 TERRASAR-X +43 43 TANDEM-X +44 44 PAZ +45 45 ALTIUS +46 46 SMOS +47 47 CRYOSAT-2 +48 48 AEOLUS +49 49 EARTHCARE +50 50 METEOSAT 3 +51 51 METEOSAT 4 +52 52 METEOSAT 5 +53 53 METEOSAT 6 +54 54 METEOSAT 7 +55 55 METEOSAT 8 +56 56 METEOSAT 9 +57 57 METEOSAT 10 +58 58 METEOSAT 1 +59 59 METEOSAT 2 +60 60 ENVISAT +61 61 SENTINEL 3A +62 62 SENTINEL 1A +63 63 SENTINEL 1B +64 64 SENTINEL 5P +65 65 SENTINEL 3B +66 66 SENTINEL-6A +67 67 SENTINEL-6B +68 68 SENTINEL-1C +69 69 SENTINEL-1D +70 70 METEOSAT 11 +71 71 METEOSAT 12 +72 72 METEOSAT 13 +73 73 METEOSAT 14 +74 74 METEOSAT 15 +75 75 METEOSAT 16 +76 76 METEOSAT 17 +80 80 AWS1 +120 120 ADEOS +121 121 ADEOS II +122 122 GCOM-W1 +140 140 GOSAT +141 141 GOSAT-2 +150 150 GMS 3 +151 151 GMS 4 +152 152 GMS 5 +153 153 GMS +154 154 GMS 2 +171 171 MTSAT-1R +172 172 MTSAT-2 +173 173 HIMAWARI-8 +174 174 HIMAWARI-9 +200 200 NOAA 8 +201 201 NOAA 9 +202 202 NOAA 10 +203 203 NOAA 11 +204 204 NOAA 12 +205 205 NOAA 14 +206 206 NOAA 15 +207 207 NOAA 16 +208 208 NOAA 17 +209 209 NOAA 18 +220 220 LANDSAT 5 +221 221 LANDSAT 4 +222 222 LANDSAT 7 +223 223 NOAA 19 +224 224 NPP +225 225 NOAA 20 +226 226 NOAA 21 +227 227 TROPICS-02 +228 228 TROPICS-03 +229 229 TROPICS-04 +240 240 DMSP 7 +241 241 DMSP 8 +242 242 DMSP 9 +243 243 DMSP 10 +244 244 DMSP 11 +245 245 DMSP 12 +246 246 DMSP 13 +247 247 DMSP 14 +248 248 DMSP 15 +249 249 DMSP 16 +250 250 GOES 6 +251 251 GOES 7 +252 252 GOES 8 +253 253 GOES 9 +254 254 GOES 10 +255 255 GOES 11 +256 256 GOES 12 +257 257 GOES 13 +258 258 GOES 14 +259 259 GOES 15 +260 260 JASON 1 +261 261 JASON 2 +262 262 JASON 3 +263 263 TROPICS-05 +264 264 TROPICS-06 +265 265 GEOOPTICS CICERO OP1 +266 266 GEOOPTICS CICERO OP2 +267 267 PLANETIQ GNOMES-A +268 268 PLANETIQ GNOMES-B +269 269 SPIRE LEMUR 3U CUBESAT +270 270 GOES 16 +271 271 GOES 17 +272 272 GOES 18 +273 273 GOES 19 +280 280 SWOT +281 281 QUIKSCAT +282 282 TRMM +283 283 CORIOLIS +284 284 TROPICS-07 +285 285 DMSP 17 +286 286 DMSP 18 +287 287 DMSP 19 +288 288 GPM-CORE +289 289 ORBITING CARBON OBSERVATORY - 2 (OCO-2, NASA) +310 310 GOMS 1 +311 311 GOMS 2 +320 320 METEOR 2-21 +321 321 METEOR 3-5 +322 322 METEOR 3M-1 +323 323 METEOR 3M-2 +324 324 METEOR-M N2 +325 325 METEOR-M N2 2 +341 341 RESURS 01-4 +410 410 KALPANA-1 +421 421 OCEANSAT-2 +422 422 SCATSAT-1 +423 423 OCEANSAT-3 +430 430 INSAT 1B +431 431 INSAT 1C +432 432 INSAT 1D +440 440 MEGHA-TROPIQUES +441 441 SARAL +450 450 INSAT 2A +451 451 INSAT 2B +452 452 INSAT 2E +470 470 INSAT 3A +471 471 INSAT 3D +472 472 INSAT 3E +473 473 INSAT 3DR +474 474 INSAT 3DS +500 500 FY-1C +501 501 FY-1D +502 502 HAI YANG 2A (HY-2A, SOA/NSOAS CHINA) +503 503 HAI YANG 2B (HY-2B, SOA/NSOAS CHINA) +504 504 HAI YANG 2C (HY-2C, SOA/NSOAS CHINA) +505 505 HAI YANG 2D (HY-2D, SOA/NSOAS CHINA) +510 510 FY-2 +512 512 FY-2B +513 513 FY-2C +514 514 FY-2D +515 515 FY-2E +516 516 FY-2F +517 517 FY-2G +518 518 FY-2H +520 520 FY-3A +521 521 FY-3B +522 522 FY-3C +523 523 FY-3D +524 524 FY-3E +525 525 FY-3F +526 526 FY-3G +530 530 FY-4A +531 531 FY-4B +700 700 TIROS M (ITOS 1) +701 701 NOAA 1 +702 702 NOAA 2 +703 703 NOAA 3 +704 704 NOAA 4 +705 705 NOAA 5 +706 706 NOAA 6 +707 707 NOAA 7 +708 708 TIROS-N +709 709 TROPICS-01 (PATHFINDER) +710 710 GOES (SMS 1) +711 711 GOES (SMS 2) +720 720 TOPEX +721 721 GFO (GEOSAT FOLLOW ON) +722 722 GRACE A +723 723 GRACE B +724 724 COSMIC-2 P1 +725 725 COSMIC-2 P2 +726 726 COSMIC-2 P3 +727 727 COSMIC-2 P4 +728 728 COSMIC-2 P5 +729 729 COSMIC-2 P6 +731 731 GOES 1 +732 732 GOES 2 +733 733 GOES 3 +734 734 GOES 4 +735 735 GOES 5 +740 740 COSMIC-1 +741 741 COSMIC-2 +742 742 COSMIC-3 +743 743 COSMIC-4 +744 744 COSMIC-5 +745 745 COSMIC-6 +746 746 DMSP 1 +747 747 DMSP 2 +748 748 DMSP 3 +749 749 DMSP 4 +750 750 COSMIC-2 E1 +751 751 COSMIC-2 E2 +752 752 COSMIC-2 E3 +753 753 COSMIC-2 E4 +754 754 COSMIC-2 E5 +755 755 COSMIC-2 E6 +761 761 NIMBUS 1 +762 762 NIMBUS 2 +763 763 NIMBUS 3 +764 764 NIMBUS 4 +765 765 NIMBUS 5 +766 766 NIMBUS 6 +767 767 NIMBUS 7 +780 780 ERBS +781 781 UARS +782 782 EARTH PROBE +783 783 TERRA +784 784 AQUA +785 785 AURA +786 786 C/NOFS +787 787 CALIPSO +788 788 CLOUDSAT +789 789 SMAP +790 790 TEMPO +800 800 SUNSAT +801 801 INTERNATIONAL SPACE STATION (ISS) +802 802 CFOSAT +803 803 GRACE C (GRACE-FO) +804 804 GRACE D (GRACE-FO) +810 810 COMS +811 811 GEO-KOMPSAT-2A +812 812 SCISAT-1 +813 813 ODIN +814 814 GEO-KOMPSAT-2B +820 820 SAC-C +821 821 SAC-D +825 825 KOMPSAT-5 +850 850 COMBINATION OF TERRA AND AQUA +851 851 COMBINATION OF NOAA 16 TO NOAA 19 +852 852 COMBINATION OF METOP-1 TO METOP-3 +853 853 COMBINATION OF METEOSAT AND DMSP +854 854 NON-SPECIFIC MIXTURE OF GEOSTATIONARY AND LOW EARTH-ORBITING SATELLITES +855 855 COMBINATION OF INSAT 3D AND INSAT 3DR +856 856 COMBINATION OF SENTINEL-3 SATELLITES +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1024.table b/definitions/bufr/tables/0/wmo/42/codetables/1024.table new file mode 100644 index 000000000..cdc9e2470 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1024.table @@ -0,0 +1,9 @@ +0 0 NO WIND SPEED DATA AVAILABLE +1 1 AMSR-E DATA +2 2 TMI DATA +3 3 NWP: ECMWF +4 4 NWP: UK MET OFFICE +5 5 NWP: NCEP +6 6 REFERENCE CLIMATOLOGY +7 7 ERS_SCATTEROMETER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1028.table b/definitions/bufr/tables/0/wmo/42/codetables/1028.table new file mode 100644 index 000000000..18f82068b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1028.table @@ -0,0 +1,7 @@ +0 0 NO AOD DATA AVAILABLE +1 1 NESDIS +2 2 NAVOCEANO +3 3 NAAPS +4 4 MERIS +5 5 AATSR +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1029.table b/definitions/bufr/tables/0/wmo/42/codetables/1029.table new file mode 100644 index 000000000..d63d07ef0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1029.table @@ -0,0 +1,8 @@ +0 0 NO SSI DATA AVAILABLE +1 1 MSG_SEVIRI +2 2 GOES EAST +3 3 GOES WEST +4 4 ECMWF +5 5 NCEP +6 6 UK MET OFFICE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1033.table b/definitions/bufr/tables/0/wmo/42/codetables/1033.table new file mode 100644 index 000000000..a22bbe3ec --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1033.table @@ -0,0 +1,240 @@ +0 0 WMO SECRETARIAT +1 1 MELBOURNE +2 2 MELBOURNE +3 3 ) +4 4 MOSCOW +5 5 MOSCOW +6 6 ) +7 7 US NATIONAL WEATHER SERVICE - NATIONAL CENTRES FOR ENVIRONMENTAL PREDICTION (NCEP) +8 8 US NATIONAL WEATHER SERVICE TELECOMMUNICATIONS GATEWAY (NWSTG) +9 9 US NATIONAL WEATHER SERVICE - OTHER +10 10 CAIRO (RSMC) +11 11 ) +12 12 DAKAR (RSMC) +13 13 ) +14 14 NAIROBI (RSMC) +15 15 ) +16 16 CASABLANCA (RSMC) +17 17 TUNIS (RSMC) +18 18 TUNIS - CASABLANCA (RSMC) +19 19 ) +20 20 LAS PALMAS +21 21 ALGIERS (RSMC) +22 22 ACMAD +23 23 MOZAMBIQUE (NMC) +24 24 PRETORIA (RSMC) +25 25 LA REUNION (RSMC) +26 26 KHABAROVSK (RSMC) +27 27 ) +28 28 NEW DELHI (RSMC) +29 29 ) +30 30 NOVOSIBIRSK (RSMC) +31 31 ) +32 32 TASHKENT (RSMC) +33 33 JEDDAH (RSMC) +34 34 TOKYO (RSMC), JAPAN METEOROLOGICAL AGENCY +35 35 ) +36 36 BANGKOK +37 37 ULAANBAATAR +38 38 BEIJING (RSMC) +39 39 ) +40 40 SEOUL +41 41 BUENOS AIRES (RSMC) +42 42 ) +43 43 BRASILIA (RSMC) +44 44 ) +45 45 SANTIAGO +46 46 BRAZILIAN SPACE AGENCY INPE +47 47 COLOMBIA (NMC) +48 48 ECUADOR (NMC) +49 49 PERU (NMC) +50 50 VENEZUELA (BOLIVARIAN REPUBLIC OF) (NMC) +51 51 MIAMI (RSMC) +52 52 MIAMI (RSMC), NATIONAL HURRICANE CENTRE +53 53 MSC MONITORING +54 54 MONTREAL (RSMC) +55 55 SAN FRANCISCO +56 56 ARINC CENTRE +57 57 US AIR FORCE - AIR FORCE GLOBAL WEATHER CENTRAL +58 58 FLEET NUMERICAL METEOROLOGY AND OCEANOGRAPHY CENTER, MONTEREY, CA, UNITED STATES +59 59 THE NOAA FORECAST SYSTEMS LABORATORY, BOULDER, CO, UNITED STATES +60 60 UNITED STATES NATIONAL CENTER FOR ATMOSPHERIC RESEARCH (NCAR) +61 61 SERVICE ARGOS - LANDOVER +62 62 US NAVAL OCEANOGRAPHIC OFFICE +63 63 INTERNATIONAL RESEARCH INSTITUTE FOR CLIMATE AND SOCIETY (IRI) +64 64 HONOLULU (RSMC) +65 65 DARWIN (RSMC) +66 66 ) +67 67 MELBOURNE (RSMC) +68 68 RESERVED +69 69 WELLINGTON (RSMC) +70 70 ) +71 71 NADI (RSMC) +72 72 SINGAPORE +73 73 MALAYSIA (NMC) +74 74 UK METEOROLOGICAL OFFICE EXETER (RSMC) +75 75 ) +76 76 MOSCOW (RSMC) +77 77 RESERVED +78 78 OFFENBACH (RSMC) +79 79 ) +80 80 ROME (RSMC) +81 81 ) +82 82 NORRKOPING +83 83 ) +84 84 TOULOUSE (RSMC) +85 85 TOULOUSE (RSMC) +86 86 HELSINKI +87 87 BELGRADE +88 88 OSLO +89 89 PRAGUE +90 90 EPISKOPI +91 91 ANKARA +92 92 FRANKFURT/MAIN +93 93 LONDON (WAFC) +94 94 COPENHAGEN +95 95 ROTA +96 96 ATHENS +97 97 EUROPEAN SPACE AGENCY (ESA) +98 98 EUROPEAN CENTRE FOR MEDIUM-RANGE WEATHER FORECASTS (ECMWF) (RSMC) +99 99 DE BILT +100 100 BRAZZAVILLE +101 101 ABIDJAN +102 102 LIBYA (NMC) +103 103 MADAGASCAR (NMC) +104 104 MAURITIUS (NMC) +105 105 NIGER (NMC) +106 106 SEYCHELLES (NMC) +107 107 UGANDA (NMC) +108 108 UNITED REPUBLIC OF TANZANIA (NMC) +109 109 ZIMBABWE (NMC) +110 110 HONG-KONG, CHINA +111 111 AFGHANISTAN (NMC) +112 112 BAHRAIN (NMC) +113 113 BANGLADESH (NMC) +114 114 BHUTAN (NMC) +115 115 CAMBODIA (NMC) +116 116 DEMOCRATIC PEOPLE'S REPUBLIC OF KOREA (NMC) +117 117 ISLAMIC REPUBLIC OF IRAN (NMC) +118 118 IRAQ (NMC) +119 119 KAZAKHSTAN (NMC) +120 120 KUWAIT (NMC) +121 121 KYRGYZSTAN (NMC) +122 122 LAO PEOPLE'S DEMOCRATIC REPUBLIC (NMC) +123 123 MACAO, CHINA +124 124 MALDIVES (NMC) +125 125 MYANMAR (NMC) +126 126 NEPAL (NMC) +127 127 OMAN (NMC) +128 128 PAKISTAN (NMC) +129 129 QATAR (NMC) +130 130 YEMEN (NMC) +131 131 SRI LANKA (NMC) +132 132 TAJIKISTAN (NMC) +133 133 TURKMENISTAN (NMC) +134 134 UNITED ARAB EMIRATES (NMC) +135 135 UZBEKISTAN (NMC) +136 136 VIET NAM (NMC) +140 140 BOLIVIA (PLURINATIONAL STATE OF) (NMC) +141 141 GUYANA (NMC) +142 142 PARAGUAY (NMC) +143 143 SURINAME (NMC) +144 144 URUGUAY (NMC) +145 145 FRENCH GUIANA +146 146 BRAZILIAN NAVY HYDROGRAPHIC CENTRE +147 147 NATIONAL COMMISSION ON SPACE ACTIVITIES (CONAE) - ARGENTINA +148 148 BRAZILIAN DEPARTMENT OF AIRSPACE CONTROL - DECEA +149 149 RESERVED FOR OTHER CENTRES +150 150 ANTIGUA AND BARBUDA (NMC) +151 151 BAHAMAS (NMC) +152 152 BARBADOS (NMC) +153 153 BELIZE (NMC) +154 154 BRITISH CARIBBEAN TERRITORIES CENTRE +155 155 SAN JOSE +156 156 CUBA (NMC) +157 157 DOMINICA (NMC) +158 158 DOMINICAN REPUBLIC (NMC) +159 159 EL SALVADOR (NMC) +160 160 US NOAA/NESDIS +161 161 US NOAA OFFICE OF OCEANIC AND ATMOSPHERIC RESEARCH +162 162 GUATEMALA (NMC) +163 163 HAITI (NMC) +164 164 HONDURAS (NMC) +165 165 JAMAICA (NMC) +166 166 MEXICO CITY +167 167 CURACAO AND SINT MAARTEN (NMC) +168 168 NICARAGUA (NMC) +169 169 PANAMA (NMC) +170 170 SAINT LUCIA (NMC) +171 171 TRINIDAD AND TOBAGO (NMC) +172 172 FRENCH DEPARTMENTS IN RA IV +173 173 US NATIONAL AERONAUTICS AND SPACE ADMINISTRATION (NASA) +174 174 INTEGRATED SCIENCE DATA MANAGEMENT/MARINE ENVIRONMENTAL DATA SERVICE (ISDM/MEDS) - CANADA +175 175 UNIVERSITY CORPORATION FOR ATMOSPHERIC RESEARCH (UCAR) - UNITED STATES +176 176 COOPERATIVE INSTITUTE FOR METEOROLOGICAL SATELLITE STUDIES (CIMSS) - UNITED STATES +177 177 NOAA NATIONAL OCEAN SERVICE - UNITED STATES +178 178 SPIRE GLOBAL, INC. +179 179 GEOOPTICS, INC. +180 180 PLANETIQ +181 181 ATMOSPHERIC AND ENVIRONMENTAL RESEARCH (AER) +190 190 COOK ISLANDS (NMC) +191 191 FRENCH POLYNESIA (NMC) +192 192 TONGA (NMC) +193 193 VANUATU (NMC) +194 194 BRUNEI DARUSSALAM (NMC) +195 195 INDONESIA (NMC) +196 196 KIRIBATI (NMC) +197 197 FEDERATED STATES OF MICRONESIA (NMC) +198 198 NEW CALEDONIA (NMC) +199 199 NIUE +200 200 PAPUA NEW GUINEA (NMC) +201 201 PHILIPPINES (NMC) +202 202 SAMOA (NMC) +203 203 SOLOMON ISLANDS (NMC) +204 204 NATIONAL INSTITUTE OF WATER AND ATMOSPHERIC RESEARCH (NIWA - NEW ZEALAND) +210 210 FRASCATI (ESA/ESRIN) +211 211 LANNION +212 212 LISBON +213 213 REYKJAVIK +214 214 MADRID +215 215 ZUERICH +216 216 SERVICE ARGOS - TOULOUSE +217 217 BRATISLAVA +218 218 BUDAPEST +219 219 LJUBLJANA +220 220 WARSAW +221 221 ZAGREB +222 222 ALBANIA (NMC) +223 223 ARMENIA (NMC) +224 224 AUSTRIA (NMC) +225 225 AZERBAIJAN (NMC) +226 226 BELARUS (NMC) +227 227 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 233 DUBLIN +234 234 ISRAEL (NMC) +235 235 JORDAN (NMC) +236 236 LATVIA (NMC) +237 237 LEBANON (NMC) +238 238 LITHUANIA (NMC) +239 239 LUXEMBOURG +240 240 MALTA (NMC) +241 241 MONACO +242 242 ROMANIA (NMC) +243 243 SYRIAN ARAB REPUBLIC (NMC) +244 244 THE FORMER YUGOSLAV REPUBLIC OF MACEDONIA (NMC) +245 245 UKRAINE (NMC) +246 246 REPUBLIC OF MOLDOVA (NMC) +247 247 OPERATIONAL PROGRAMME FOR THE EXCHANGE OF WEATHER RADAR INFORMATION (OPERA) - EUMETNET +248 248 MONTENEGRO (NMC) +249 249 BARCELONA DUST FORECAST CENTER +250 250 CONSORTIUM FOR SMALL SCALE MODELLING (COSMO) +251 251 METEOROLOGICAL COOPERATION ON OPERATIONAL NWP (METCOOP) +252 252 MAX PLANCK INSTITUTE FOR METEOROLOGY (MPI-M) +253 253 ALFRED WEGENER INSTITUTE (AWI) +254 254 EUMETSAT OPERATION CENTRE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1034.table b/definitions/bufr/tables/0/wmo/42/codetables/1034.table new file mode 100644 index 000000000..fce0d85fd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1034.table @@ -0,0 +1,104 @@ +0 0 NO SUB-CENTRE +1 1 LUXEMBOURG (NMC) +2 2 FUCINO +3 3 GATINEAU +4 4 MASPALOMAS (SPAIN) +5 5 ESA ERS CENTRAL FACILITY +6 6 PRINCE ALBERT +7 7 WEST FREUGH +8 8 LANGLEY RESEARCH CENTER +9 9 MARSHALL SPACE FLIGHT CENTER +10 10 TROMSO (NORWAY) +11 11 MCMURDO (ANTARCTICA) +12 12 SODANKYLA (FINLAND) +13 13 TROMSO +14 14 BARROW (UNITED STATES) +15 15 ROTHERA (ANTARCTICA) +16 16 SPACE WEATHER PREDICTION CENTER +17 17 ESRL GLOBAL SYSTEMS DIVISION +18 18 SIPAM-PORTO VELHO-RO +19 19 SIPAM-BELEM-PA +20 20 MASPALOMAS (SPAIN) +21 21 AGENZIA SPAZIALE ITALIANA (ITALY) +22 22 CENTRE NATIONAL DE LA RECHERCHE SCIENTIFIQUE (FRANCE) +23 23 GEOFORSCHUNGS ZENTRUM (GERMANY) +24 24 GEODETIC OBSERVATORY PECNY (CZECHIA) +25 25 INSTITUT D'ESTUDIS ESPACIALS DE CATALUNYA (SPAIN) +26 26 FEDERAL OFFICE OF TOPOGRAPHY (SWITZERLAND) +27 27 NORDIC COMMISSION OF GEODESY (NORWAY) +28 28 NORDIC COMMISSION OF GEODESY (SWEDEN) +29 29 INSTITUTE GEOGRAPHIQUE NATIONAL (FRANCE) - SERVICE DE GEODESIE +30 30 KANGERLUSSUAQ (GREENLAND) +31 31 INSTITUTE OF ENGINEERING SATELLITE SURVEYING AND GEODESY (UNITED KINGDOM) +32 32 JOINT OPERATIONAL METEOROLOGY AND OCEANOGRAPHY CENTRE (JOMOC) +33 33 KONINKLIJK NEDERLANDS METEOROLOGISCH INSTITUT (NETHERLANDS) +34 34 NORDIC GPS ATMOSPHERIC ANALYSIS CENTRE (SWEDEN) +35 35 INSTITUTO GEOGRAFICO NACIONAL DE ESPANA (SPAIN) +36 36 MET EIREANN (IRELAND) +37 37 ROYAL OBSERVATORY OF BELGIUM (BELGIUM) +40 40 EDMONTON (CANADA) +50 50 BEDFORD (CANADA) +60 60 GANDER (CANADA) +64 64 BUNDESWEHR GEOINFORMATION OFFICE (BGIO) +70 70 MONTEREY (UNITED STATES) +76 76 ROSHYDROMET (RUSSIAN FEDERATION) +78 78 DEUTSCHER WETTERDIENST (GERMANY) +80 80 WALLOPS ISLAND (UNITED STATES) +90 90 GILMOR CREEK (UNITED STATES) +96 96 HELLENIC NATIONAL METEOROLOGICAL SERVICE (GREECE) +100 100 ATHENS (GREECE) +101 101 ALBANIA (NMC) +102 102 NATIONAL RESEARCH COUNCIL/INSTITUTE OF ATMOSPHERIC SCIENCES AND CLIMATE (CNR-ISAC) +110 110 NOWCAST MOBILE (LIGHTNING DATA) +120 120 EWA BEACH, HAWAII +125 125 FORD ISLAND, HAWAII +130 130 MIAMI, FLORIDA +140 140 LANNION (FRANCE) +150 150 SVALBARD (NORWAY) +170 170 SAINT-DENIS (LA REUNION) +180 180 MOSCOW +190 190 MUSCAT +200 200 KHABAROVSK +201 201 RHEINISCHES INSTITUT FUER UMWELTFORSCHUNG AN DER UNIVERSITAET ZU KOELN E.V. (GERMANY) +202 202 INSTITUT FRANCAIS DE RECHERCHE POUR L'EXPLOITATION DE LA MER +203 203 AARHUS UNIVERSITY (DENMARK) +204 204 INSTITUTE OF ENVIRONMENTAL PROTECTION - NATIONAL RESEARCH INSTITUTE (POLAND) +205 205 NIUE +206 206 RAROTONGA (COOK ISLANDS) +207 207 APIA (SAMOA) +208 208 TONGA +209 209 TUVALU +210 210 NOVOSIBIRSK +211 211 TOKELAU +214 214 DARWIN +215 215 METEOSWISS (SWITZERLAND) +217 217 PERTH +219 219 TOWNSVILLE +220 220 NOAA SATELLITE OPERATIONS FACILITY (NSOF) +221 221 SCHLESWIG-HOLSTEIN, TRAFFIC OPERATIONS COMPUTING CENTRE (TOCC) KIEL/NEUMUENSTER +222 222 HAMBURG, TOCC HAMBURG +223 223 NIEDERSACHSEN, TOCC HANNOVER +224 224 AUSTRIA (NMC) +225 225 NORDRHEIN-WESTFALEN, TOCC KAMEN LEVERKUSEN +226 226 HESSEN, TOCC RUESSELSHEIM +227 227 RHEINLAND-PFALZ, TOCC KOBLENZ +228 228 BADEN-WUERTTEMBERG, TOCC LUDWIGSBURG +229 229 BAYERN, TOCC FREIMANN +230 230 SAARLAND, TOCC ROHRBACH +231 231 BAYERN, AUTOBAHN DIRECTORATE NORDBAYERN +232 232 BRANDENBURG, TOCC STOLPE +233 233 MECKLENBURG-VORPOMMERN, TOCC MALCHOW +234 234 SACHSEN, TOCC DRESDEN +235 235 SACHSEN-ANHALT, TOCC HALLE +236 236 THUERINGEN, TOCC ERFURT +237 237 EASYWAY - METEOTRANS +240 240 KIYOSE +241 241 REANALYSIS PROJECT +242 242 NATIONAL METEOROLOGICAL ADMINISTRATION (ROMANIA) +243 243 KELBURN +245 245 JINCHEON +249 249 SINGAPORE +250 250 VLADIVOSTOCK +251 251 GUAM +252 252 HONOLULU +254 254 EUMETSAT diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1035.table b/definitions/bufr/tables/0/wmo/42/codetables/1035.table new file mode 100644 index 000000000..041477240 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1035.table @@ -0,0 +1,308 @@ +0 0 WMO SECRETARIAT +1 1 MELBOURNE +2 2 MELBOURNE +3 3 ) +4 4 MOSCOW +5 5 MOSCOW +6 6 ) +7 7 US NATIONAL WEATHER SERVICE, NATIONAL CENTRES FOR ENVIRONMENTAL PREDICTION (NCEP) +8 8 US NATIONAL WEATHER SERVICE TELECOMMUNICATIONS GATEWAY (NWSTG) +9 9 US NATIONAL WEATHER SERVICE - OTHER +10 10 CAIRO (RSMC) +11 11 ) +12 12 DAKAR (RSMC) +13 13 ) +14 14 NAIROBI (RSMC) +15 15 ) +16 16 CASABLANCA (RSMC) +17 17 TUNIS (RSMC) +18 18 TUNIS-CASABLANCA (RSMC) +19 19 ) +20 20 LAS PALMAS +21 21 ALGIERS (RSMC) +22 22 ACMAD +23 23 MOZAMBIQUE (NMC) +24 24 PRETORIA (RSMC) +25 25 LA REUNION (RSMC) +26 26 KHABAROVSK (RSMC) +27 27 ) +28 28 NEW DELHI (RSMC) +29 29 ) +30 30 NOVOSIBIRSK (RSMC) +31 31 ) +32 32 TASHKENT (RSMC) +33 33 JEDDAH (RSMC) +34 34 TOKYO (RSMC), JAPAN METEOROLOGICAL AGENCY +35 35 ) +36 36 BANGKOK +37 37 ULAANBAATAR +38 38 BEIJING (RSMC) +39 39 ) +40 40 SEOUL +41 41 BUENOS AIRES (RSMC) +42 42 ) +43 43 BRASILIA (RSMC) +44 44 ) +45 45 SANTIAGO +46 46 BRAZILIAN SPACE AGENCY INPE +47 47 COLOMBIA (NMC) +48 48 ECUADOR (NMC) +49 49 PERU (NMC) +50 50 VENEZUELA (BOLIVARIAN REPUBLIC OF) (NMC) +51 51 MIAMI (RSMC) +52 52 MIAMI RSMC, NATIONAL HURRICANE CENTRE +53 53 MSC MONITORING +54 54 MONTREAL (RSMC) +55 55 SAN FRANCISCO +56 56 ARINC CENTRE +57 57 US AIR FORCE - AIR FORCE GLOBAL WEATHER CENTRAL +58 58 FLEET NUMERICAL METEOROLOGY AND OCEANOGRAPHY CENTER, MONTEREY, CA, UNITED STATES +59 59 THE NOAA FORECAST SYSTEMS LABORATORY, BOULDER, CO, UNITED STATES +60 60 UNITED STATES NATIONAL CENTER FOR ATMOSPHERIC RESEARCH (NCAR) +61 61 SERVICE ARGOS - LANDOVER +62 62 US NAVAL OCEANOGRAPHIC OFFICE +63 63 INTERNATIONAL RESEARCH INSTITUTE FOR CLIMATE AND SOCIETY (IRI) +64 64 HONOLULU (RSMC) +65 65 DARWIN (RSMC) +66 66 ) +67 67 MELBOURNE (RSMC) +68 68 RESERVED +69 69 WELLINGTON (RSMC) +70 70 ) +71 71 NADI (RSMC) +72 72 SINGAPORE +73 73 MALAYSIA (NMC) +74 74 UK METEOROLOGICAL OFFICE EXETER (RSMC) +75 75 ) +76 76 MOSCOW (RSMC) +77 77 RESERVED +78 78 OFFENBACH (RSMC) +79 79 ) +80 80 ROME (RSMC) +81 81 ) +82 82 NORRKOPING +83 83 ) +84 84 TOULOUSE (RSMC) +85 85 TOULOUSE (RSMC) +86 86 HELSINKI +87 87 BELGRADE +88 88 OSLO +89 89 PRAGUE +90 90 EPISKOPI +91 91 ANKARA +92 92 FRANKFURT/MAIN +93 93 LONDON (WAFC) +94 94 COPENHAGEN +95 95 ROTA +96 96 ATHENS +97 97 EUROPEAN SPACE AGENCY (ESA) +98 98 EUROPEAN CENTRE FOR MEDIUM RANGE WEATHER FORECASTS (ECMWF) (RSMC) +99 99 DE BILT +100 100 BRAZZAVILLE +101 101 ABIDJAN +102 102 LIBYA (NMC) +103 103 MADAGASCAR (NMC) +104 104 MAURITIUS (NMC) +105 105 NIGER (NMC) +106 106 SEYCHELLES (NMC) +107 107 UGANDA (NMC) +108 108 UNITED REPUBLIC OF TANZANIA (NMC) +109 109 ZIMBABWE (NMC) +110 110 HONG KONG, CHINA +111 111 AFGHANISTAN (NMC) +112 112 BAHRAIN (NMC) +113 113 BANGLADESH (NMC) +114 114 BHUTAN (NMC) +115 115 CAMBODIA (NMC) +116 116 DEMOCRATIC PEOPLE'S REPUBLIC OF KOREA (NMC) +117 117 ISLAMIC REPUBLIC OF IRAN (NMC) +118 118 IRAQ (NMC) +119 119 KAZAKHSTAN (NMC) +120 120 KUWAIT (NMC) +121 121 KYRGYZSTAN (NMC) +122 122 LAO PEOPLE'S DEMOCRATIC REPUBLIC (NMC) +123 123 MACAO, CHINA +124 124 MALDIVES (NMC) +125 125 MYANMAR (NMC) +126 126 NEPAL (NMC) +127 127 OMAN (NMC) +128 128 PAKISTAN (NMC) +129 129 QATAR (NMC) +130 130 YEMEN (NMC) +131 131 SRI LANKA (NMC) +132 132 TAJIKISTAN (NMC) +133 133 TURKMENISTAN (NMC) +134 134 UNITED ARAB EMIRATES (NMC) +135 135 UZBEKISTAN (NMC) +136 136 VIET NAM (NMC) +140 140 BOLIVIA (PLURINATIONAL STATE OF) (NMC) +141 141 GUYANA (NMC) +142 142 PARAGUAY (NMC) +143 143 SURINAME (NMC) +144 144 URUGUAY (NMC) +145 145 FRENCH GUIANA +146 146 BRAZILIAN NAVY HYDROGRAPHIC CENTRE +147 147 NATIONAL COMMISSION ON SPACE ACTIVITIES (CONAE) - ARGENTINA +148 148 BRAZILIAN DEPARTMENT OF AIRSPACE CONTROL - DECEA +149 149 RESERVED FOR OTHER CENTRES +150 150 ANTIGUA AND BARBUDA (NMC) +151 151 BAHAMAS (NMC) +152 152 BARBADOS (NMC) +153 153 BELIZE (NMC) +154 154 BRITISH CARIBBEAN TERRITORIES CENTRE +155 155 SAN JOSE +156 156 CUBA (NMC) +157 157 DOMINICA (NMC) +158 158 DOMINICAN REPUBLIC (NMC) +159 159 EL SALVADOR (NMC) +160 160 US NOAA/NESDIS +161 161 US NOAA OFFICE OF OCEANIC AND ATMOSPHERIC RESEARCH +162 162 GUATEMALA (NMC) +163 163 HAITI (NMC) +164 164 HONDURAS (NMC) +165 165 JAMAICA (NMC) +166 166 MEXICO +167 167 CURACAO AND SINT MAARTEN (NMC) +168 168 NICARAGUA (NMC) +169 169 PANAMA (NMC) +170 170 SAINT LUCIA (NMC) +171 171 TRINIDAD AND TOBAGO (NMC) +172 172 FRENCH DEPARTMENTS IN RA IV +173 173 US NATIONAL AERONAUTICS AND SPACE ADMINISTRATION (NASA) +174 174 INTEGRATED SCIENCE DATA MANAGEMENT/MARINE ENVIRONMENTAL DATA SERVICE (ISDM/MEDS - CANADA) +175 175 UNIVERSITY CORPORATION FOR ATMOSPHERIC RESEARCH (UCAR) - UNITED STATES +176 176 COOPERATIVE INSTITUTE FOR METEOROLOGICAL SATELLITE STUDIES (CIMSS) - UNITED STATES +177 177 NOAA NATIONAL OCEAN SERVICE - UNITED STATES +178 178 SPIRE GLOBAL, INC. +179 179 GEOOPTICS, INC. +180 180 PLANETIQ +181 181 ATMOSPHERIC AND ENVIRONMENTAL RESEARCH (AER) +190 190 COOK ISLANDS (NMC) +191 191 FRENCH POLYNESIA (NMC) +192 192 TONGA (NMC) +193 193 VANUATU (NMC) +194 194 BRUNEI DARUSSALAM (NMC) +195 195 INDONESIA (NMC) +196 196 KIRIBATI (NMC) +197 197 FEDERATED STATES OF MICRONESIA (NMC) +198 198 NEW CALEDONIA (NMC) +199 199 NIUE +200 200 PAPUA NEW GUINEA (NMC) +201 201 PHILIPPINES (NMC) +202 202 SAMOA (NMC) +203 203 SOLOMON ISLANDS (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 214 MADRID +215 215 ZUERICH +216 216 SERVICE ARGOS TOULOUSE +217 217 BRATISLAVA +218 218 BUDAPEST +219 219 LJUBLJANA +220 220 WARSAW +221 221 ZAGREB +222 222 ALBANIA (NMC) +223 223 ARMENIA (NMC) +224 224 AUSTRIA (NMC) +225 225 AZERBAIJAN (NMC) +226 226 BELARUS (NMC) +227 227 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 233 DUBLIN +234 234 ISRAEL (NMC) +235 235 JORDAN (NMC) +236 236 LATVIA (NMC) +237 237 LEBANON (NMC) +238 238 LITHUANIA (NMC) +239 239 LUXEMBOURG +240 240 MALTA (NMC) +241 241 MONACO +242 242 ROMANIA (NMC) +243 243 SYRIAN ARAB REPUBLIC (NMC) +244 244 THE FORMER YUGOSLAV REPUBLIC OF MACEDONIA (NMC) +245 245 UKRAINE (NMC) +246 246 REPUBLIC OF MOLDOVA (NMC) +247 247 OPERATIONAL PROGRAMME FOR THE EXCHANGE OF WEATHER RADAR INFORMATION (OPERA) - EUMETNET +248 248 MONTENEGRO (NMC) +249 249 BARCELONA DUST FORECAST CENTER +250 250 CONSORTIUM FOR SMALL SCALE MODELLING (COSMO) +251 251 METEOROLOGICAL COOPERATION ON OPERATIONAL NWP (METCOOP) +252 252 MAX PLANCK INSTITUTE FOR METEOROLOGY (MPI-M) +253 253 ALFRED WEGENER INSTITUTE (AWI) +254 254 EUMETSAT OPERATION CENTRE +255 255 NOT TO BE USED +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 ESWATINI (NMC) +288 288 TOGO (NMC) +289 289 ZAMBIA (NMC) +290 290 EUMETNET E-PROFILE +291 291 INSTITUTE OF ATMOSPHERIC PHYSICS (IAP) OF THE CHINESE ACADEMY OF SCIENCES (CAS) +292 292 HELMHOLTZ CENTRE FOR ENVIRONMENTAL RESEARCH (UFZ) +293 293 UNIVERSITY OF BREMEN +294 294 NETHERLANDS INSTITUTE FOR SPACE RESEARCH (SRON) +295 295 THE ROYAL BELGIAN INSTITUTE FOR SPACE AERONOMY (BIRA-IASB) +296 296 THE FRENCH NATIONAL CENTRE FOR SCIENTIFIC RESEARCH (CNRS) +297 297 THE NANJING INSTITUTE OF ENVIRONMENTAL SCIENCES (NIES) +298 298 DYNAMIC METEOROLOGY LABORATORY (LMD) +299 299 THE RUTHERFORD APPLETON LABORATORY (RAL) +300 300 GREEK ATOMIC ENERGY COMMISSION (GREECE) +301 301 UNITED STATED ENVIRONMENTAL PROTECTION AGENCY (USA) +302 302 AUTRALIAN RADIATION PROTECTION AND NUCLEAR SAFETY (AUSTRALIA) +303 303 AUTHORITY FOR NUCLEAR SAFETY AND RADIATION PROTECTION (THE NETHERLANDS) +304 304 AUTORITE DE SURETE NUCLEAIRE (FRANCE) +305 305 BUNDESAMT FüR STRAHLENSCHUTZ (GERMANY) +306 306 NATIONAL COMMISSION FOR NUCLEAR ACTIVITIES CONTROL (ROMANIA) +307 307 CONSEJO DE SEGURIDAD NUCLEAR (SPAIN) +308 308 DANISH EMERGENCY MANAGEMENT AGENCY (DENMARK) +309 309 NORWEGIAN RADIATION PROTECTION AGENCY (NORWAY) +310 310 FEDERAL AGENCY FOR NUCLEAR CONTROL (BELGIUM) +311 311 INSTITUTE OF RADIATION PROTECTION AND DOSIMETRY (BRAZIL) +312 312 NATIONAL INSPECTORATE FOR NUCLEAR SAFETY AND RADIATION PROTECTION (ITALY) +313 313 NUCLEAR REGULATORY AUTHORITY (TURKIYE) +314 314 NUCLEAR REGULATION AUTHORITY (JAPAN) +315 315 NUCLEAR REGULATORY AGENCY (BULGARIA) +316 316 UKRAINIAN RADIATION PROTECTION INSTITUTE (UKRIANE) +317 317 HEALTH CANADA RADIO PROTECTION BUREAU (CANADA) +318 318 PORTUGUESE SOCIETY FOR RADIATION PROTECTION (PORTUGAL) +319 319 SWEDISH RADIATION SAFETY AUTHORITY (SWEDEN) +320 320 RADIATION AND NUCLEAR SAFETY AUTHORITY (FINLAND) +321 321 STATE OFFICE FOR NUCLEAR SAFETY (CZECHIA) +322 322 NUCLEAR REGULATION AUTHORITY (SLOVAKIA) +65535 65535 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1036.table b/definitions/bufr/tables/0/wmo/42/codetables/1036.table new file mode 100644 index 000000000..06eab3ccd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1036.table @@ -0,0 +1,42 @@ +36001 36001 AUSTRALIA, BUREAU OF METEOROLOGY (BOM) +36002 36002 AUSTRALIA, JOINT AUSTRALIAN FACILITY FOR OCEAN OBSERVING SYSTEMS (JAFOOS) +36003 36003 AUSTRALIA, THE COMMONWEALTH SCIENTIFIC AND INDUSTRIAL RESEARCH ORGANIZATION (CSIRO) +124001 124001 CANADA, MARINE ENVIRONMENTAL DATA SERVICE (MEDS) +124002 124002 CANADA, INSTITUTE OF OCEAN SCIENCES (IOS) +124173 124173 CANADA, ENVIRONMENT CANADA +124174 124174 CANADA, DEPARTMENT OF NATIONAL DEFENCE +124175 124175 CANADA, NAV CANADA +156001 156001 CHINA, THE STATE OCEANIC ADMINISTRATION +156002 156002 CHINA, SECOND INSTITUTE OF OCEANOGRAPHY, STATE OCEANIC ADMINISTRATION +156003 156003 CHINA, INSTITUTE OF OCEAN TECHNOLOGY +250001 250001 FRANCE, INSTITUT DE RECHERCHE POUR LE DéVELOPPEMENT (IRD) +250002 250002 FRANCE, INSTITUT FRANçAIS DE RECHERCHE POUR L'EXPLOITATION DE LA MER (IFREMER) +276001 276001 GERMANY, BUNDESAMT FUER SEESCHIFFAHRT UND HYDROGRAPHIE (BSH) +276002 276002 GERMANY, INSTITUT FUER MEERESKUNDE, KIEL +356001 356001 INDIA, NATIONAL INSTITUTE OF OCEANOGRAPHY (NIO) +356002 356002 INDIA, NATIONAL INSTITUTE FOR OCEAN TECHNOLOGY (NIOT) +356003 356003 INDIA, NATIONAL CENTRE FOR OCEAN INFORMATION SERVICE +392001 392001 JAPAN, JAPAN METEOROLOGICAL AGENCY (JMA) +392002 392002 JAPAN, FRONTIER OBSERVATIONAL RESEARCH SYSTEM FOR GLOBAL CHANGE +392003 392003 JAPAN, JAPAN MARINE SCIENCE AND TECHNOLOGY CENTRE (JAMSTEC) +410001 410001 REPUBLIC OF KOREA, SEOUL NATIONAL UNIVERSITY +410002 410002 REPUBLIC OF KOREA, KOREA OCEAN RESEARCH AND DEVELOPMENT INSTITUTE (KORDI) +410003 410003 REPUBLIC OF KOREA, METEOROLOGICAL RESEARCH INSTITUTE +540001 540001 NEW CALEDONIA, INSTITUT DE RECHERCHE POUR LE DéVELOPPEMENT (IRD) +554001 554001 NEW ZEALAND, NATIONAL INSTITUTE OF WATER AND ATMOSPHERIC RESEARCH (NIWA) +643001 643001 RUSSIAN FEDERATION, STATE OCEANOGRAPHIC INSTITUTE OF ROSHYDROMET +643002 643002 RUSSIAN FEDERATION, FEDERAL SERVICE FOR HYDROMETEOROLOGY AND ENVIRONMENTAL MONITORING +724001 724001 SPAIN, INSTITUTO ESPAñOL DE OCEANOGRAFIA +826001 826001 UNITED KINGDOM, HYDROGRAPHIC OFFICE +826002 826002 UNITED KINGDOM, NATIONAL OCEANOGRAPHY CENTRE (NOC) +826003 826003 UNITED KINGDOM, CENTRE FOR ENVIRONMENT, FISHERIES AND AQUACULTURE SCIENCE (CEFAS) +826004 826004 UNITED KINGDOM, MARINE SCOTLAND (MS) +826005 826005 UNITED KINGDOM, PLYMOUTH MARINE LABORATORY (PML) +826006 826006 UNITED KINGDOM, BRITISH ANTARCTIC SURVEY (BAS) +840001 840001 USA, NOAA ATLANTIC OCEANOGRAPHIC AND METEOROLOGICAL LABORATORY (AOML) +840002 840002 USA, NOAA PACIFIC MARINE ENVIRONMENTAL LABORATORY (PMEL) +840003 840003 USA, SCRIPPS INSTITUTION OF OCEANOGRAPHY (SIO) +840004 840004 USA, WOODS HOLE OCEANOGRAPHIC INSTITUTION (WHOI) +840005 840005 USA, UNIVERSITY OF WASHINGTON +840006 840006 USA, NAVAL OCEANOGRAPHIC OFFICE +1048575 1048575 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1038.table b/definitions/bufr/tables/0/wmo/42/codetables/1038.table new file mode 100644 index 000000000..2eee38baf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1038.table @@ -0,0 +1,7 @@ +0 0 NO SEA ICE SET +1 1 NSIDC SSM/I CAVALIERI ET AL (1992) +2 2 AMSR-E +3 3 ECMWF +4 4 CMS (FRANCE) CLOUD MASK USED BY MEDSPIRATION +5 5 EUMETSAT OSI-SAF +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1044.table b/definitions/bufr/tables/0/wmo/42/codetables/1044.table new file mode 100644 index 000000000..c419e8307 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1044.table @@ -0,0 +1,9 @@ +0 0 RESERVED +1 1 FULL WEIGHTED MIXTURE OF INDIVIDUAL QUALITY TESTS +2 2 WEIGHTED MIXTURE OF INDIVIDUAL TESTS, BUT EXCLUDING FORECAST COMPARISON +3 3 RECURSIVE FILTER FUNCTION +4 4 COMMON QUALITY INDEX (QI) WITHOUT FORECAST +5 5 QI WITHOUT FORECAST +6 6 QI WITH FORECAST +7 7 ESTIMATED ERROR IN M/S CONVERTED TO A PERCENT CONFIDENCE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1052.table b/definitions/bufr/tables/0/wmo/42/codetables/1052.table new file mode 100644 index 000000000..b8e14ed0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1052.table @@ -0,0 +1,4 @@ +0 0 PRIMARY +1 1 SECONDARY +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1090.table b/definitions/bufr/tables/0/wmo/42/codetables/1090.table new file mode 100644 index 000000000..55f7ca25d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1090.table @@ -0,0 +1,5 @@ +0 0 LAGGED-AVERAGE FORECASTING (LAF) +1 1 BREEDING +2 2 SINGULAR VECTORS +3 3 MULTIPLE ANALYSIS CYCLES +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1092.table b/definitions/bufr/tables/0/wmo/42/codetables/1092.table new file mode 100644 index 000000000..ce982034d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1092.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 +4 4 PERTURBED FORECAST +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1101.table b/definitions/bufr/tables/0/wmo/42/codetables/1101.table new file mode 100644 index 000000000..6bbaf54be --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1101.table @@ -0,0 +1,202 @@ +100 100 ALGERIA +101 101 ANGOLA +102 102 BENIN +103 103 BOTSWANA +104 104 BURKINA FASO +105 105 BURUNDI +106 106 CAMEROON +107 107 CABO VERDE +108 108 CENTRAL AFRICAN REPUBLIC +109 109 CHAD +110 110 COMOROS +111 111 CONGO +112 112 CôTE D'IVOIRE +113 113 DEMOCRATIC REPUBLIC OF THE CONGO +114 114 DJIBOUTI +115 115 EGYPT +116 116 ERITREA +117 117 ETHIOPIA +118 118 FRANCE (RA I) +119 119 GABON +120 120 GAMBIA +121 121 GHANA +122 122 GUINEA +123 123 GUINEA-BISSAU +124 124 KENYA +125 125 LESOTHO +126 126 LIBERIA +127 127 LIBYA +128 128 MADAGASCAR +129 129 MALAWI +130 130 MALI +131 131 MAURITANIA +132 132 MAURITIUS +133 133 MOROCCO +134 134 MOZAMBIQUE +135 135 NAMIBIA +136 136 NIGER +137 137 NIGERIA +138 138 PORTUGAL (RA I) +139 139 RWANDA +140 140 SAO TOME AND PRINCIPE +141 141 SENEGAL +142 142 SEYCHELLES +143 143 SIERRA LEONE +144 144 SOMALIA +145 145 SOUTH AFRICA +146 146 SPAIN (RA I) +147 147 SUDAN +148 148 ESWATINI +149 149 TOGO +150 150 TUNISIA +151 151 UGANDA +152 152 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA I) +153 153 UNITED REPUBLIC OF TANZANIA +154 154 ZAMBIA +155 155 ZIMBABWE +200 200 AFGHANISTAN +201 201 BAHRAIN +202 202 BANGLADESH +203 203 BHUTAN +204 204 CAMBODIA +205 205 CHINA +206 206 DEMOCRATIC PEOPLE'S REPUBLIC OF KOREA +207 207 HONG KONG, CHINA +208 208 INDIA +209 209 IRAN, ISLAMIC REPUBLIC OF +210 210 IRAQ +211 211 JAPAN +212 212 KAZAKHSTAN +213 213 KUWAIT +214 214 KYRGYZSTAN +215 215 LAO PEOPLE'S DEMOCRATIC REPUBLIC +216 216 MACAO, CHINA +217 217 MALDIVES +218 218 MONGOLIA +219 219 MYANMAR +220 220 NEPAL +221 221 OMAN +222 222 PAKISTAN +223 223 QATAR +224 224 REPUBLIC OF KOREA +225 225 YEMEN +226 226 RUSSIAN FEDERATION (RA II) +227 227 SAUDI ARABIA +228 228 SRI LANKA +229 229 TAJIKISTAN +230 230 THAILAND +231 231 TURKMENISTAN +232 232 UNITED ARAB EMIRATES +233 233 UZBEKISTAN +234 234 VIET NAM +300 300 ARGENTINA +301 301 BOLIVIA (PLURINATIONAL STATE OF) +302 302 BRAZIL +303 303 CHILE +304 304 COLOMBIA +305 305 ECUADOR +306 306 FRANCE (RA III) +307 307 GUYANA +308 308 PARAGUAY +309 309 PERU +310 310 SURINAME +311 311 URUGUAY +312 312 VENEZUELA (BOLIVARIAN REPUBLIC OF) +400 400 ANTIGUA AND BARBUDA +401 401 BAHAMAS +402 402 BARBADOS +403 403 BELIZE +404 404 BRITISH CARIBBEAN TERRITORIES +405 405 CANADA +406 406 COLOMBIA +407 407 COSTA RICA +408 408 CUBA +409 409 DOMINICA +410 410 DOMINICAN REPUBLIC +411 411 EL SALVADOR +412 412 FRANCE (RA IV) +413 413 GUATEMALA +414 414 HAITI +415 415 HONDURAS +416 416 JAMAICA +417 417 MEXICO +418 418 CURAçAO AND SINT MAARTEN +419 419 NICARAGUA +420 420 PANAMA +421 421 SAINT LUCIA +422 422 TRINIDAD AND TOBAGO +423 423 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA IV) +424 424 UNITED STATES OF AMERICA (RA IV) +425 425 VENEZUELA (BOLIVARIAN REPUBLIC OF) +500 500 AUSTRALIA +501 501 BRUNEI DARUSSALAM +502 502 COOK ISLANDS +503 503 FIJI +504 504 FRENCH POLYNESIA +505 505 INDONESIA +506 506 KIRIBATI +507 507 MALAYSIA +508 508 MICRONESIA, FEDERATED STATES OF +509 509 NEW CALEDONIA +510 510 NEW ZEALAND +511 511 NIUE +512 512 PAPUA NEW GUINEA +513 513 PHILIPPINES +514 514 SAMOA +515 515 SINGAPORE +516 516 SOLOMON ISLANDS +517 517 TONGA +518 518 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA V) +519 519 UNITED STATES OF AMERICA (RA V) +520 520 VANUATU +600 600 ALBANIA +601 601 ARMENIA +602 602 AUSTRIA +603 603 AZERBAIJAN +604 604 BELARUS +605 605 BELGIUM +606 606 BOSNIA AND HERZEGOVINA +607 607 BULGARIA +608 608 CROATIA +609 609 CYPRUS +610 610 CZECHIA +611 611 DENMARK +612 612 ESTONIA +613 613 FINLAND +614 614 FRANCE (RA VI) +615 615 GEORGIA +616 616 GERMANY +617 617 GREECE +618 618 HUNGARY +619 619 ICELAND +620 620 IRELAND +621 621 ISRAEL +622 622 ITALY +623 623 JORDAN +624 624 KAZAKHSTAN +625 625 LATVIA +626 626 LEBANON +627 627 LITHUANIA +628 628 LUXEMBOURG +629 629 MALTA +630 630 MONACO +631 631 MONTENEGRO +632 632 NETHERLANDS +633 633 NORWAY +634 634 POLAND +635 635 PORTUGAL (RA VI) +636 636 REPUBLIC OF MOLDOVA +637 637 ROMANIA +638 638 RUSSIAN FEDERATION (RA VI) +639 639 SERBIA +640 640 SLOVAKIA +641 641 SLOVENIA +642 642 SPAIN (RA VI) +643 643 SWEDEN +644 644 SWITZERLAND +645 645 SYRIAN ARAB REPUBLIC +646 646 THE FORMER YUGOSLAV REPUBLIC OF MACEDONIA +647 647 TURKIYE +648 648 UKRAINE +649 649 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA VI) +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/11030.table b/definitions/bufr/tables/0/wmo/42/codetables/11030.table new file mode 100644 index 000000000..253b8fccc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/11030.table @@ -0,0 +1,25 @@ +0 0 NIL +1 1 LIGHT +2 2 MODERATE +3 3 SEVERE +4 4 NIL +5 5 LIGHT +6 6 MODERATE +7 7 SEVERE +8 8 NIL +9 9 LIGHT +10 10 MODERATE +11 11 SEVERE +12 12 EXTREME, IN CLEAR AIR +13 13 EXTREME, IN CLOUD +14 14 EXTREME, CLOUD/CLEAR AIR NOT SPECIFIED +15 15 LIGHT, ISOLATED MODERATE +16 16 LIGHT, OCCASIONAL MODERATE +17 17 LIGHT, FREQUENTLY MODERATE +18 18 MODERATE, ISOLATED SEVERE +19 19 MODERATE, OCCASIONAL SEVERE +20 20 MODERATE, FREQUENTLY SEVERE +21 21 SEVERE, ISOLATED EXTREME +22 22 SEVERE, OCCASIONAL EXTREME +23 23 SEVERE, FREQUENTLY EXTREME +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/11031.table b/definitions/bufr/tables/0/wmo/42/codetables/11031.table new file mode 100644 index 000000000..7bece1c85 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/11031.table @@ -0,0 +1,16 @@ +0 0 NIL +1 1 LIGHT +2 2 MODERATE +3 3 SEVERE +4 4 NIL +5 5 LIGHT +6 6 MODERATE +7 7 SEVERE +8 8 NIL +9 9 LIGHT +10 10 MODERATE +11 11 SEVERE +12 12 EXTREME, IN CLEAR AIR +13 13 EXTREME, IN CLOUD +14 14 EXTREME, CLOUD/CLEAR AIR NOT SPECIFIED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/11037.table b/definitions/bufr/tables/0/wmo/42/codetables/11037.table new file mode 100644 index 000000000..e25c9da63 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/11037.table @@ -0,0 +1,30 @@ +0 0 AVE < 0.1 +1 1 AVE < 0.1 +2 2 0.1 =< AVE < 0.2 +3 3 AVE <0.1 +4 4 0.1 =< AVE < 0.2 +5 5 0.2 =< AVE < 0.3 +6 6 AVE < 0.1 +7 7 0.1 =< AVE < 0.2 +8 8 0.2 =< AVE < 0.3 +9 9 0.3 =< AVE < 0.4 +10 10 AVE < 0.1 +11 11 0.1 =< AVE < 0.2 +12 12 0.2 =< AVE < 0.3 +13 13 0.3 =< AVE < 0.4 +14 14 0.4 =< AVE < 0.5 +15 15 AVE < 0.1 +16 16 0.1 =< AVE < 0.2 +17 17 0.2 =< AVE < 0.3 +18 18 0.3 =< AVE < 0.4 +19 19 0.4 =< AVE < 0.5 +20 20 0.5 =< AVE < 0.8 +21 21 AVE < 0.1 +22 22 0.1 =< AVE < 0.2 +23 23 0.2 =< AVE < 0.3 +24 24 0.3 =< AVE < 0.4 +25 25 0.4 =< AVE < 0.5 +26 26 0.5 =< AVE < 0.8 +27 27 0.8 =< AVE +28 28 NIL +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/11038.table b/definitions/bufr/tables/0/wmo/42/codetables/11038.table new file mode 100644 index 000000000..68876b0b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/11038.table @@ -0,0 +1,17 @@ +0 0 MIN < 1 +1 1 1 =< MIN < 2 +2 2 2 =< MIN < 3 +3 3 3 =< MIN < 4 +4 4 4 =< MIN < 5 +5 5 5 =< MIN < 6 +6 6 6 =< MIN < 7 +7 7 7 =< MIN < 8 +8 8 8 =< MIN < 9 +9 9 9 =< MIN < 10 +10 10 10 =< MIN < 11 +11 11 11 =< MIN < 12 +12 12 12 =< MIN < 13 +13 13 13 =< MIN < 14 +14 14 14 =< MIN < 15 +15 15 NO TIMING INFORMATION AVAILABLE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/11039.table b/definitions/bufr/tables/0/wmo/42/codetables/11039.table new file mode 100644 index 000000000..e5af0f23b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/11039.table @@ -0,0 +1,17 @@ +0 0 MIN < 1 +1 1 1 =< MIN < 2 +2 2 2 =< MIN < 3 +3 3 3 =< MIN < 4 +4 4 4 =< MIN < 5 +5 5 5 =< MIN < 6 +6 6 6 =< MIN < 7 +7 7 7 =< MIN < 8 +8 8 8 =< MIN < 9 +9 9 9 =< MIN < 10 +10 10 10 =< MIN < 11 +11 11 11 =< MIN < 12 +12 12 12 =< MIN < 13 +13 13 13 =< MIN < 14 +14 14 14 =< MIN < 15 +60 60 NO TIMING INFORMATION AVAILABLE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1150.table b/definitions/bufr/tables/0/wmo/42/codetables/1150.table new file mode 100644 index 000000000..51d945080 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1150.table @@ -0,0 +1,7 @@ +0 0 WGS84, AS USED BY ICAO SINCE 1998 +1 1 ETRS89, AS DEFINED BY EPSG:4258 +2 2 NAD83, AS DEFINED BY EPSG:4269 +3 3 DHDN, AS DEFINED BY EPSG:4314 +4 4 ELLIPSOIDAL DATUM USING THE INTERNATIONAL REFERENCE MERIDIAN AND THE INTERNATIONAL REFERENCE POLE AS THE PRIME MERIDIAN AND PRIME POLE, RESPECTIVELY, AND THE ORIGIN OF THE INTERNATIONAL TERRESTRIAL REFERENCE SYSTEM (ITRS). THE INTERNATIONAL REFERENCE MERIDIAN, INTERNATIONAL REFERENCE POLE AND ITRS ARE MAINTAINED BY THE INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE (IERS) +5 5 EARTH-CENTERED, EARTH-FIXED (ECEF) COORDINATE SYSTEM OR EARTH-CENTRED ROTATIONAL (ECR) SYSTEM. THIS IS A RIGHT-HANDED CARTESIAN COORDINATE SYSTEM (X, Y, Z) ROTATING WITH THE EARTH. THE ORIGIN IS DEFINED BY THE CENTRE OF MASS OF THE EARTH. (FOOTNOTE (5) OF CLASS 27 DOES NOT APPLY IF ECEF COORDINATES ARE SPECIFIED.) +65535 65535 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1151.table b/definitions/bufr/tables/0/wmo/42/codetables/1151.table new file mode 100644 index 000000000..8907f2371 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1151.table @@ -0,0 +1,3 @@ +0 0 EARTH GRAVITATIONAL MODEL 1996 +1 1 BALTIC HEIGHT SYSTEM 1977 +4095 4095 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/1155.table b/definitions/bufr/tables/0/wmo/42/codetables/1155.table new file mode 100644 index 000000000..3df8457a0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/1155.table @@ -0,0 +1,8 @@ +0 0 STANDARD CORRECT ALGORITHM (SCA) +1 1 STANDARD CORRECT ALGORITHM MID-BIN (SCA MID-BIN) +2 2 MAXIMUM LIKELIHOOD ESTIMATION (MLE) +3 3 OPTIMAL ESTIMATION PROFILE (OE-PRO) +4 4 GROUP +5 5 GROUP MID-BIN +6 6 MAXIMUM LIKELIHOOD ESTIMATION – HIGH HORIZONTAL RESOLUTION (MLESUB) +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/13038.table b/definitions/bufr/tables/0/wmo/42/codetables/13038.table new file mode 100644 index 000000000..19bc42216 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/13038.table @@ -0,0 +1,4 @@ +0 0 NOT SUPERADIABATIC +1 1 SUPERADIABATIC +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/13039.table b/definitions/bufr/tables/0/wmo/42/codetables/13039.table new file mode 100644 index 000000000..c070b1da9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/13039.table @@ -0,0 +1,3 @@ +0 0 SEA ICE +1 1 SNOW ON LAND +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/13040.table b/definitions/bufr/tables/0/wmo/42/codetables/13040.table new file mode 100644 index 000000000..1d37ea957 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/13040.table @@ -0,0 +1,14 @@ +0 0 LAND +1 1 RESERVED +2 2 NEAR COAST +3 3 ICE +4 4 POSSIBLE ICE +5 5 OCEAN +6 6 COAST +7 7 INLAND WATER +8 8 SNOW COVER +9 9 SEA ICE +10 10 STANDING WATER +11 11 SNOW +12 12 FROZEN SOIL +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/13041.table b/definitions/bufr/tables/0/wmo/42/codetables/13041.table new file mode 100644 index 000000000..9e77b6466 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/13041.table @@ -0,0 +1,10 @@ +1 1 A +2 2 A - B +3 3 B +4 4 B - C +5 5 C +6 6 D +7 7 E +8 8 F +9 9 G +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/13051.table b/definitions/bufr/tables/0/wmo/42/codetables/13051.table new file mode 100644 index 000000000..4bdb73e71 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/13051.table @@ -0,0 +1,8 @@ +0 0 SMALLER THAN ANY VALUE IN THE 30-YEAR PERIOD +1 1 IN THE FIRST QUINTILE +2 2 IN THE SECOND QUINTILE +3 3 IN THE THIRD QUINTILE +4 4 IN THE FOURTH QUINTILE +5 5 IN THE FIFTH QUINTILE +6 6 GREATER THAN ANY VALUE IN THE 30-YEAR PERIOD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/13056.table b/definitions/bufr/tables/0/wmo/42/codetables/13056.table new file mode 100644 index 000000000..448c26927 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/13056.table @@ -0,0 +1,11 @@ +0 0 NO PRECIPITATION +1 1 LIGHT INTERMITTENT +2 2 MODERATE INTERMITTENT +3 3 HEAVY INTERMITTENT +4 4 VERY HEAVY INTERMITTENT +5 5 LIGHT CONTINUOUS +6 6 MODERATE CONTINUOUS +7 7 HEAVY CONTINUOUS +8 8 VERY HEAVY CONTINUOUS +9 9 VARIABLE - ALTERNATIVELY LIGHT AND HEAVY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/13057.table b/definitions/bufr/tables/0/wmo/42/codetables/13057.table new file mode 100644 index 000000000..6dfa18dd0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/13057.table @@ -0,0 +1,11 @@ +0 0 NO PRECIPITATION +1 1 WITHIN THE LAST HOUR +2 2 1 TO 2 HOURS AGO +3 3 2 TO 3 HOURS AGO +4 4 3 TO 4 HOURS AGO +5 5 4 TO 5 HOURS AGO +6 6 5 TO 6 HOURS AGO +7 7 6 TO 8 HOURS AGO +8 8 8 TO 10 HOURS AGO +9 9 MORE THAN 10 HOURS AGO +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/15025.table b/definitions/bufr/tables/0/wmo/42/codetables/15025.table new file mode 100644 index 000000000..6bb6ed508 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/15025.table @@ -0,0 +1,4 @@ +0 0 OZONE +11 11 FINE PARTICULATE MATTER (DIAMETER < 2.5 MICRONS) +12 12 FINE PARTICULATE MATTER (DIAMETER < 10 MICRONS) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19001.table b/definitions/bufr/tables/0/wmo/42/codetables/19001.table new file mode 100644 index 000000000..af893eb9a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19001.table @@ -0,0 +1,7 @@ +0 0 DEPRESSION OR LOW (EXTRATROPLCAL) +1 1 TROPICAL DEPRESSION +2 2 TROPICAL STORM +3 3 SEVERE TROPICAL STORM +4 4 TYPHOON +10 10 DUST/SANDSTORM +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19008.table b/definitions/bufr/tables/0/wmo/42/codetables/19008.table new file mode 100644 index 000000000..3bcb5195a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19008.table @@ -0,0 +1,5 @@ +0 0 RESERVED +1 1 SHALLOW (TOP OF CIRCULATION BELOW 700-HPA LEVEL) +2 2 MEDIUM (TOP BETWEEN 700-HPA AND 400-HPA LEVEL) +3 3 DEEP (TOP ABOVE 400-HPA LEVEL) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19010.table b/definitions/bufr/tables/0/wmo/42/codetables/19010.table new file mode 100644 index 000000000..b091d96f0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19010.table @@ -0,0 +1,3 @@ +1 1 MINIMUM VALUE OF SEA LEVEL PRESSURE +2 2 MAXIMUM VALUE OF 850 HPA RELATIVE VORTICITY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19100.table b/definitions/bufr/tables/0/wmo/42/codetables/19100.table new file mode 100644 index 000000000..1f03a6f1b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19100.table @@ -0,0 +1,9 @@ +3 3 DURING THE PRECEDING 15 MINUTES +4 4 DURING THE PRECEDING 30 MINUTES +5 5 DURING THE PRECEDING 1 HOUR +6 6 DURING THE PRECEDING 2 HOURS +7 7 DURING THE PRECEDING 3 HOURS +8 8 DURING THE PRECEDING 6 HOURS +9 9 DURING A PERIOD OF MORE THAN 6 HOURS +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19101.table b/definitions/bufr/tables/0/wmo/42/codetables/19101.table new file mode 100644 index 000000000..0cd1ff4a6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19101.table @@ -0,0 +1,10 @@ +0 0 RESERVED +1 1 EYE VISIBLE ON RADAR SCOPE, ACCURACY GOOD (WITHIN 10 KM) +2 2 EYE VISIBLE ON RADAR SCOPE, ACCURACY FAIR (WITHIN 30 KM) +3 3 EYE VISIBLE ON RADAR SCOPE, ACCURACY POOR (WITHIN 50 KM) +4 4 POSITION OF THE CENTRE WITHIN THE AREA COVERED BY THE RADAR SCOPE, DETERMINATION BY MEANS OF THE SPIRAL-BAND OVERLAY, ACCURACY GOOD (WITHIN 10 KM) +5 5 POSITION OF THE CENTRE WITHIN THE AREA COVERED BY THE RADAR SCOPE, DETERMINATION BY MEANS OF THE SPIRAL-BAND OVERLAY, ACCURACY FAIR (WITHIN 30 KM) +6 6 POSITION OF THE CENTRE WITHIN THE AREA COVERED BY THE RADAR SCOPE, DETERMINATION BY MEANS OF THE SPIRAL-BAND OVERLAY, ACCURACY POOR (WITHIN 50 KM) +7 7 POSITION OF THE CENTRE OUTSIDE THE AREA COVERED BY THE RADAR SCOPE, EXTRAPOLATION BY MEANS OF THE SPIRAL-BAND OVERLAY +10 10 ACCURACY UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19102.table b/definitions/bufr/tables/0/wmo/42/codetables/19102.table new file mode 100644 index 000000000..21ab7756b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19102.table @@ -0,0 +1,8 @@ +0 0 CIRCULAR +1 1 ELLIPTICAL - THE MINOR AXIS IS AT LEAST 3/4 THE LENGTH OF THE MAJOR AXIS +2 2 ELLIPTICAL - THE MINOR AXIS IS LESS THAN 3/4 THE LENGTH OF THE MAJOR AXIS +3 3 APPARENT DOUBLE EYE +4 4 OTHER SHAPE +5 5 ILL DEFINED +6 6 UNDETERMINED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19103.table b/definitions/bufr/tables/0/wmo/42/codetables/19103.table new file mode 100644 index 000000000..3abb184f8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19103.table @@ -0,0 +1,12 @@ +0 0 LESS THAN 5 KM +1 1 5 TO LESS THAN 10 KM +2 2 10 TO LESS THAN 15 KM +3 3 15 TO LESS THAN 20 KM +4 4 20 TO LESS THAN 25 KM +5 5 25 TO LESS THAN 30 KM +6 6 30 TO LESS THAN 35 KM +7 7 35 TO LESS THAN 40 KM +8 8 40 TO LESS THAN 50 KM +9 9 50 KM AND GREATER +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19104.table b/definitions/bufr/tables/0/wmo/42/codetables/19104.table new file mode 100644 index 000000000..67ae47479 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19104.table @@ -0,0 +1,12 @@ +0 0 EYE HAS FIRST BECOME VISIBLE DURING THE PAST 30 MINUTES +1 1 NO SIGNIFICANT CHANGE IN THE CHARACTERISTICS OR SIZE OF THE EYE +2 2 EYE HAS BECOME SMALLER WITH NO OTHER SIGNIFICANT CHANGE IN CHARACTERISTICS +3 3 EYE HAS BECOME LARGER WITH NO OTHER SIGNIFICANT CHANGE IN CHARACTERISTICS +4 4 EYE HAS BECOME LESS DISTINCT WITH NO SIGNIFICANT CHANGE IN SIZE +5 5 EYE HAS BECOME LESS DISTINCT AND DECREASED IN SIZE +6 6 EYE HAS BECOME LESS DISTINCT AND INCREASED IN SIZE +7 7 EYE HAS BECOME MORE DISTINCT WITH NO SIGNIFICANT CHANGE IN SIZE +8 8 EYE HAS BECOME MORE DISTINCT AND DECREASED IN SIZE +9 9 EYE HAS BECOME MORE DISTINCT AND INCREASED IN SIZE +10 10 CHANGE IN CHARACTER AND SIZE OF EYE CANNOT BE DETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19105.table b/definitions/bufr/tables/0/wmo/42/codetables/19105.table new file mode 100644 index 000000000..becfceea8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19105.table @@ -0,0 +1,10 @@ +0 0 0 TO LESS THAN 100 KM +1 1 100 TO LESS THAN 200 KM +2 2 200 TO LESS THAN 300 KM +3 3 300 TO LESS THAN 400 KM +4 4 400 TO LESS THAN 500 KM +5 5 500 TO LESS THAN 600 KM +6 6 600 TO LESS THAN 800 KM +7 7 800 KM OR MORE +10 10 DOUBTFUL OR UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19107.table b/definitions/bufr/tables/0/wmo/42/codetables/19107.table new file mode 100644 index 000000000..ed6b79c54 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19107.table @@ -0,0 +1,11 @@ +0 0 LESS THAN 1 HOUR +1 1 1 TO LESS THAN 2 HOURS +2 2 2 TO LESS THAN 3 HOURS +3 3 3 TO LESS THAN 6 HOURS +4 4 6 TO LESS THAN 9 HOURS +5 5 9 TO LESS THAN 12 HOURS +6 6 12 TO LESS THAN 15 HOURS +7 7 15 TO LESS THAN 18 HOURS +8 8 18 TO LESS THAN 21 HOURS +9 9 21 TO LESS THAN 30 HOURS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19108.table b/definitions/bufr/tables/0/wmo/42/codetables/19108.table new file mode 100644 index 000000000..9350bc265 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19108.table @@ -0,0 +1,8 @@ +0 0 CYCLONE CENTRE WITHIN 10 KM OF THE TRANSMITTED POSITION +1 1 CYCLONE CENTRE WITHIN 20 KM OF THE TRANSMITTED POSITION +2 2 CYCLONE CENTRE WITHIN 50 KM OF THE TRANSMITTED POSITION +3 3 CYCLONE CENTRE WITHIN 100 KM OF THE TRANSMITTED POSITION +4 4 CYCLONE CENTRE WITHIN 200 KM OF THE TRANSMITTED POSITION +5 5 CYCLONE CENTRE WITHIN 300 KM OF THE TRANSMITTED POSITION +6 6 CYCLONE CENTRE UNDETERMINED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19109.table b/definitions/bufr/tables/0/wmo/42/codetables/19109.table new file mode 100644 index 000000000..3d236291d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19109.table @@ -0,0 +1,12 @@ +0 0 LESS THAN 1 DEG OF LATITUDE +1 1 1 DEG TO LESS THAN 2 DEG OF LATITUDE +2 2 2 DEG TO LESS THAN 3 DEG OF LATITUDE +3 3 3 DEG TO LESS THAN 4 DEG OF LATITUDE +4 4 4 DEG TO LESS THAN 5 DEG OF LATITUDE +5 5 5 DEG TO LESS THAN 6 DEG OF LATITUDE +6 6 6 DEG TO LESS THAN 7 DEG OF LATITUDE +7 7 7 DEG TO LESS THAN 8 DEG OF LATITUDE +8 8 8 DEG TO LESS THAN 9 DEG OF LATITUDE +9 9 9 DEG OF LATITUDE OR MORE +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19110.table b/definitions/bufr/tables/0/wmo/42/codetables/19110.table new file mode 100644 index 000000000..81f4f593c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19110.table @@ -0,0 +1,8 @@ +0 0 MUCH WEAKENING +1 1 WEAKENING +2 2 NO CHANGE +3 3 INTENSIFICATION +4 4 STRONG INTENSIFICATION +9 9 NOT OBSERVED PREVIOUSLY +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19113.table b/definitions/bufr/tables/0/wmo/42/codetables/19113.table new file mode 100644 index 000000000..ba46dca88 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19113.table @@ -0,0 +1,8 @@ +1 1 CURVED BAND +2 2 SHEAR +3 3 EYE +4 4 BANDING EYE +5 5 CENTRAL DENSE OVERCAST (CDO) +6 6 EMBEDDED CENTRE +7 7 CENTRE COLD COVER (CCC) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19117.table b/definitions/bufr/tables/0/wmo/42/codetables/19117.table new file mode 100644 index 000000000..b623197a3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19117.table @@ -0,0 +1,4 @@ +1 1 A (CURVED BAND) +2 2 B (CDO) +3 3 C (SHEAR) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/19119.table b/definitions/bufr/tables/0/wmo/42/codetables/19119.table new file mode 100644 index 000000000..8329a8a58 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/19119.table @@ -0,0 +1,4 @@ +1 1 DT-NUMBER +2 2 PT-NUMBER +3 3 MET-NUMBER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20003.table b/definitions/bufr/tables/0/wmo/42/codetables/20003.table new file mode 100644 index 000000000..1414361a2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20003.table @@ -0,0 +1,266 @@ +0 0 CLOUD DEVELOPMENT NOT OBSERVED OR NOT OBSERVABLE +1 1 CLOUDS GENERALLY DISSOLVING OR BECOMING LESS DEVELOPED +2 2 STATE OF SKY ON THE WHOLE UNCHANGED +3 3 CLOUDS GENERALLY FORMING OR DEVELOPING +4 4 VISIBILITY REDUCED BY SMOKE, E.G. VELDT OR FOREST FIRES, INDUSTRIAL SMOKE OR VOLCANIC ASHES +5 5 HAZE +6 6 WIDESPREAD DUST IN SUSPENSION IN THE AIR, NOT RAISED BY WIND AT OR NEAR THE STATION AT THE TIME OF OBSERVATION +7 7 DUST OR SAND RAISED BY WIND AT OR NEAR THE STATION AT THE TIME OF OBSERVATION, BUT NO WELL-DEVELOPED DUST WHIRL(S) OR SAND WHIRL(S), AND NO DUSTSTORM OR SANDSTORM SEEN; OR, IN THE CASE OF SEA STATIONS AND COASTAL STATIONS, BLOWING SPRAY AT THE STATION +8 8 WELL-DEVELOPED DUST WHIRL(S) OR SAND WHIRL(S) SEEN AT OR NEAR THE STATION DURING THE PRECEDING HOUR OR AT THE SAME TIME OF OBSERVATION, BUT NO DUSTSTORM OR SANDSTORM +9 9 DUSTSTORM OR SANDSTORM WITHIN SIGHT AT THE TIME OF OBSERVATION, OR AT THE STATION DURING THE PRECEDING HOUR +10 10 MIST +11 11 PATCHES +12 12 MORE OR LESS CONTINUOUS +13 13 LIGHTNING VISIBLE, NO THUNDER HEARD +14 14 PRECIPITATION WITHIN SIGHT, NOT REACHING THE GROUND OR THE SURFACE OF THE SEA +15 15 PRECIPITATION WITHIN SIGHT, REACHING THE GROUND OR THE SURFACE OF THE SEA, BUT DISTANT, I.E. ESTIMATED TO BE MORE THAN 5 KM FROM THE STATION +16 16 PRECIPITATION WITHIN SIGHT, REACHING THE GROUND OR THE SURFACE OF THE SEA, NEAR TO, BUT NOT AT THE STATION +17 17 THUNDERSTORM, BUT NO PRECIPITATION AT THE TIME OF OBSERVATION +18 18 SQUALLS +19 19 FUNNEL CLOUD(S) +20 20 DRIZZLE (NOT FREEZING) OR SNOW GRAINS +21 21 RAIN (NOT FREEZING) +22 22 SNOW +23 23 RAIN AND SNOW OR ICE PELLETS +24 24 FREEZING DRIZZLE OR FREEZING RAIN +25 25 SHOWER(S) OF RAIN +26 26 SHOWER(S) OF SNOW, OR OF RAIN AND SNOW +27 27 SHOWER(S) OF HAIL, OR OF RAIN AND HAIL +28 28 FOG OR ICE FOG +29 29 THUNDERSTORM (WITH OR WITHOUT PRECIPITATION) +30 30 SLIGHT OR MODERATE DUSTSTORM OR SANDSTORM +31 31 SLIGHT OR MODERATE DUSTSTORM OR SANDSTORM +32 32 SLIGHT OR MODERATE DUSTSTORM OR SANDSTORM +33 33 SEVERE DUSTSTORM OR SANDSTORM +34 34 SEVERE DUSTSTORM OR SANDSTORM +35 35 SEVERE DUSTSTORM OR SANDSTORM +36 36 SLIGHT OR MODERATE DRIFTING SNOW +37 37 HEAVY DRIFTING SNOW +38 38 SLIGHT OR MODERATE BLOWING SNOW +39 39 HEAVY BLOWING SNOW +40 40 FOG OR ICE FOG AT A DISTANCE AT THE TIME OF OBSERVATION, BUT NOT AT THE STATION DURING THE PRECEDING HOUR, THE FOG OR ICE FOG EXTENDING TO A LEVEL ABOVE THAT OF THE OBSERVER +41 41 FOG OR ICE FOG IN PATCHES +42 42 FOG OR ICE FOG, SKY VISIBLE +43 43 FOG OR ICE FOG, SKY INVISIBLE +44 44 FOG OR ICE FOG, SKY VISIBLE +45 45 FOG OR ICE FOG, SKY INVISIBLE +46 46 FOG OR ICE FOG, SKY VISIBLE +47 47 FOG OR ICE FOG, SKY INVISIBLE +48 48 FOG, DEPOSITING RIME, SKY VISIBLE +49 49 FOG, DEPOSITING RIME, SKY INVISIBLE +50 50 DRIZZLE, NOT FREEZING, INTERMITTENT +51 51 DRIZZLE, NOT FREEZING, CONTINUOUS +52 52 DRIZZLE, NOT FREEZING, INTERMITTENT +53 53 DRIZZLE, NOT FREEZING, CONTINUOUS +54 54 DRIZZLE, NOT FREEZING, INTERMITTENT +55 55 DRIZZLE, NOT FREEZING, CONTINUOUS +56 56 DRIZZLE, FREEZING, SLIGHT +57 57 DRIZZLE, FREEZING, MODERATE OR HEAVY (DENSE) +58 58 DRIZZLE AND RAIN, SLIGHT +59 59 DRIZZLE AND RAIN, MODERATE OR HEAVY +60 60 RAIN, NOT FREEZING, INTERMITTENT +61 61 RAIN, NOT FREEZING, CONTINUOUS +62 62 RAIN, NOT FREEZING, INTERMITTENT +63 63 RAIN, NOT FREEZING, CONTINUOUS +64 64 RAIN, NOT FREEZING, INTERMITTENT +65 65 RAIN, NOT FREEZING, CONTINUOUS +66 66 RAIN, FREEZING, SLIGHT +67 67 RAIN, FREEZING, MODERATE OR HEAVY +68 68 RAIN OR DRIZZLE AND SNOW, SLIGHT +69 69 RAIN OR DRIZZLE AND SNOW, MODERATE OR HEAVY +70 70 INTERMITTENT FALL OF SNOWFLAKES +71 71 CONTINUOUS FALL OF SNOWFLAKES +72 72 INTERMITTENT FALL OF SNOWFLAKES +73 73 CONTINUOUS FALL OF SNOWFLAKES +74 74 INTERMITTENT FALL OF SNOWFLAKES +75 75 CONTINUOUS FALL OF SNOWFLAKES +76 76 DIAMOND DUST (WITH OR WITHOUT FOG) +77 77 SNOW GRAINS (WITH OR WITHOUT FOG) +78 78 ISOLATED STAR-LIKE SNOW CRYSTALS (WITH OR WITHOUT FOG) +79 79 ICE PELLETS +80 80 RAIN SHOWER(S), SLIGHT +81 81 RAIN SHOWER(S), MODERATE OR HEAVY +82 82 RAIN SHOWER(S), VIOLENT +83 83 SHOWER(S) OF RAIN AND SNOW MIXED, SLIGHT +84 84 SHOWER(S) OF RAIN AND SNOW MIXED, MODERATE OR HEAVY +85 85 SNOW SHOWER(S), SLIGHT +86 86 SNOW SHOWER(S), MODERATE OR HEAVY +87 87 SHOWER(S) OF SNOW PELLETS OR SMALL HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED +88 88 SHOWER(S) OF SNOW PELLETS OR SMALL HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED +89 89 SHOWER(S) OF HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED, NOT ASSOCIATED WITH THUNDER +90 90 SHOWER(S) OF HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED, NOT ASSOCIATED WITH THUNDER +91 91 SLIGHT RAIN AT TIME OF OBSERVATION +92 92 MODERATE OR HEAVY RAIN AT TIME OF OBSERVATION +93 93 SLIGHT SNOW, OR RAIN AND SNOW MIXED OR HAIL AT TIME OF OBSERVATION +94 94 MODERATE OR HEAVY SNOW, OR RAIN AND SNOW MIXED OR HAIL AT TIME OF OBSERVATION +95 95 THUNDERSTORM, SLIGHT OR MODERATE, WITHOUT HAIL, BUT WITH RAIN AND/OR SNOW AT TIME OF OBSERVATION +96 96 THUNDERSTORM, SLIGHT OR MODERATE, WITH HAIL AT TIME OF OBSERVATION +97 97 THUNDERSTORM, HEAVY, WITHOUT HAIL, BUT WITH RAIN AND/OR SNOW AT TIME OF OBSERVATION +98 98 THUNDERSTORM COMBINED WITH DUSTSTORM OR SANDSTORM AT TIME OF OBSERVATION +99 99 THUNDERSTORM, HEAVY, WITH HAIL AT TIME OF OBSERVATION +100 100 NO SIGNIFICANT WEATHER OBSERVED +101 101 CLOUDS GENERALLY DISSOLVING OR BECOMING LESS DEVELOPED DURING THE PAST HOUR +102 102 STATE OF SKY ON THE WHOLE UNCHANGED DURING THE PAST HOUR +103 103 CLOUDS GENERALLY FORMING OR DEVELOPING DURING THE PAST HOUR +104 104 HAZE OR SMOKE, OR DUST IN SUSPENSION IN THE AIR, VISIBILITY EQUAL TO, OR GREATER THAN, 1 KM +105 105 HAZE OR SMOKE, OR DUST IN SUSPENSION IN THE AIR, VISIBILITY LESS THAN 1 KM +110 110 MIST +111 111 DIAMOND DUST +112 112 DISTANT LIGHTNING +118 118 SQUALLS +119 119 RESERVED +120 120 FOG +121 121 PRECIPITATION +122 122 DRIZZLE (NOT FREEZING) OR SNOW GRAINS +123 123 RAIN (NOT FREEZING) +124 124 SNOW +125 125 FREEZING DRIZZLE OR FREEZING RAIN +126 126 THUNDERSTORM (WITH OR WITHOUT PRECIPITATION) +127 127 BLOWING OR DRIFTING SNOW OR SAND +128 128 BLOWING OR DRIFTING SNOW OR SAND, VISIBILITY EQUAL TO, OR GREATER THAN, 1 KM +129 129 BLOWING OR DRIFTING SNOW OR SAND, VISIBILITY LESS THAN 1 KM +130 130 FOG +131 131 FOG OR ICE FOG IN PATCHES +132 132 FOG OR ICE FOG, HAS BECOME THINNER DURING THE PAST HOUR +133 133 FOG OR ICE FOG, NO APPRECIABLE CHANGE DURING THE PAST HOUR +134 134 FOG OR ICE FOG, HAS BEGUN OR BECOME THICKER DURING THE PAST HOUR +135 135 FOG, DEPOSITING RIME +140 140 PRECIPITATION +141 141 PRECIPITATION, SLIGHT OR MODERATE +142 142 PRECIPITATION, HEAVY +143 143 LIQUID PRECIPITATION, SLIGHT OR MODERATE +144 144 LIQUID PRECIPITATION, HEAVY +145 145 SOLID PRECIPITATION, SLIGHT OR MODERATE +146 146 SOLID PRECIPITATION, HEAVY +147 147 FREEZING PRECIPITATION, SLIGHT OR MODERATE +148 148 FREEZING PRECIPITATION, HEAVY +149 149 RESERVED +150 150 DRIZZLE +151 151 DRIZZLE, NOT FREEZING, SLIGHT +152 152 DRIZZLE, NOT FREEZING, MODERATE +153 153 DRIZZLE, NOT FREEZING, HEAVY +154 154 DRIZZLE, FREEZING, SLIGHT +155 155 DRIZZLE, FREEZING, MODERATE +156 156 DRIZZLE, FREEZING, HEAVY +157 157 DRIZZLE AND RAIN, SLIGHT +158 158 DRIZZLE AND RAIN, MODERATE OR HEAVY +159 159 RESERVED +160 160 RAIN +161 161 RAIN, NOT FREEZING, SLIGHT +162 162 RAIN, NOT FREEZING, MODERATE +163 163 RAIN, NOT FREEZING, HEAVY +164 164 RAIN, FREEZING, SLIGHT +165 165 RAIN, FREEZING, MODERATE +166 166 RAIN, FREEZING, HEAVY +167 167 RAIN (OR DRIZZLE) AND SNOW, SLIGHT +168 168 RAIN (OR DRIZZLE) AND SNOW, MODERATE OR HEAVY +169 169 RESERVED +170 170 SNOW +171 171 SNOW, SLIGHT +172 172 SNOW, MODERATE +173 173 SNOW, HEAVY +174 174 ICE PELLETS, SLIGHT +175 175 ICE PELLETS, MODERATE +176 176 ICE PELLETS, HEAVY +177 177 SNOW GRAINS +178 178 ICE CRYSTALS +179 179 RESERVED +180 180 SHOWER(S) OR INTERMITTENT PRECIPITATION +181 181 RAIN SHOWER(S) OR INTERMITTENT RAIN, SLIGHT +182 182 RAIN SHOWER(S) OR INTERMITTENT RAIN, MODERATE +183 183 RAIN SHOWER(S) OR INTERMITTENT RAIN, HEAVY +184 184 RAIN SHOWER(S) OR INTERMITTENT RAIN, VIOLENT +185 185 SNOW SHOWER(S) OR INTERMITTENT SNOW, SLIGHT +186 186 SNOW SHOWER(S) OR INTERMITTENT SNOW, MODERATE +187 187 SNOW SHOWER(S) OR INTERMITTENT SNOW, HEAVY +188 188 RESERVED +189 189 HAIL +190 190 THUNDERSTORM +191 191 THUNDERSTORM, SLIGHT OR MODERATE, WITH NO PRECIPITATION +192 192 THUNDERSTORM, SLIGHT OR MODERATE, WITH RAIN SHOWERS AND/OR SNOW SHOWERS +193 193 THUNDERSTORM, SLIGHT OR MODERATE, WITH HAIL +194 194 THUNDERSTORM, HEAVY, WITH NO PRECIPITATION +195 195 THUNDERSTORM, HEAVY, WITH RAIN SHOWERS AND/OR SNOW SHOWERS +196 196 THUNDERSTORM, HEAVY, WITH HAIL +199 199 TORNADO +204 204 VOLCANIC ASH SUSPENDED IN THE AIR ALOFT +205 205 NOT USED +206 206 THICK DUST HAZE, VISIBILITY LESS THAN 1 KM +207 207 BLOWING SPRAY AT THE STATION +208 208 DRIFTING DUST (SAND) +209 209 WALL OF DUST OR SAND IN DISTANCE (LIKE HABOOB) +210 210 SNOW HAZE +211 211 WHITEOUT +212 212 NOT USED +213 213 LIGHTNING, CLOUD TO SURFACE +217 217 DRY THUNDERSTORM +218 218 NOT USED +219 219 TORNADO CLOUD (DESTRUCTIVE) AT OR WITHIN SIGHT OF THE STATION DURING PRECEDING HOUR OR AT THE TIME OF OBSERVATION +220 220 DEPOSITION OF VOLCANIC ASH +221 221 DEPOSITION OF DUST OR SAND +222 222 DEPOSITION OF DEW +223 223 DEPOSITION OF WET SNOW +224 224 DEPOSITION OF SOFT RIME +225 225 DEPOSITION OF HARD RIME +226 226 DEPOSITION OF HOAR FROST +227 227 DEPOSITION OF GLAZE +228 228 DEPOSITION OF ICE CRUST (ICE SLICK) +229 229 NOT USED +230 230 DUSTSTORM OR SANDSTORM WITH TEMPERATURE BELOW 0 DEG C +239 239 BLOWING SNOW, IMPOSSIBLE TO DETERMINE WHETHER SNOW IS FALLING OR NOT +240 240 NOT USED +241 241 FOG ON SEA +242 242 FOG IN VALLEYS +243 243 ARCTIC OR ANTARCTIC SEA SMOKE +244 244 STEAM FOG (SEA, LAKE OR RIVER) +245 245 STEAM LOG (LAND) +246 246 FOG OVER ICE OR SNOW COVER +247 247 DENSE FOG, VISIBILITY 60-90 M +248 248 DENSE FOG, VISIBILITY 30-60 M +249 249 DENSE FOG, VISIBILITY LESS THAN 30 M +250 250 DRIZZLE, RATE OF FALL - LESS THAN 0.10 MM H-1 +251 251 DRIZZLE, RATE OF FALL - 0.10-0.19 MM H-1 +252 252 DRIZZLE, RATE OF FALL - 0.20-0.39 MM H-1 +253 253 DRIZZLE, RATE OF FALL - 0.40-0.79 MM H-1 +254 254 DRIZZLE, RATE OF FALL - 0.80-1.59 MM H-1 +255 255 DRIZZLE, RATE OF FALL - 1.60-3.19 MM H-1 +256 256 DRIZZLE, RATE OF FALL - 3.20-6.39 MM H-1 +257 257 DRIZZLE, RATE OF FALL - 6.4 MM H-1 OR MORE +258 258 NOT USED +259 259 DRIZZLE AND SNOW +260 260 RAIN, RATE OF FALL - LESS THAN 1.0 MM H-1 +261 261 RAIN, RATE OF FALL - 1.0-1.9 MM H-1 +262 262 RAIN, RATE OF FALL - 2.0-3.9 MM H-1 +263 263 RAIN, RATE OF FALL - 4.0-7.9 MM H-1 +264 264 RAIN, RATE OF FALL - 8.0-15.9 MM H-1 +265 265 RAIN, RATE OF FALL - 16.0-31.9 MM H-1 +266 266 RAIN, RATE OF FALL - 32.0-63.9 MM H-1 +267 267 RAIN, RATE OF FALL - 64.0 MM H-1 OR MORE +270 270 SNOW, RATE OF FALL - LESS THAN 1.0 CM H-1 +271 271 SNOW, RATE OF FALL - 1.0-1.9 CM H-1 +272 272 SNOW, RATE OF FALL - 2.0-3.9 CM H-1 +273 273 SNOW, RATE OF FALL - 4.0-7.9 CM H-1 +274 274 SNOW, RATE OF FALL - 8.0-15.9 CM H-1 +275 275 SNOW, RATE OF FALL - 16.0-31.9 CM H-1 +276 276 SNOW, RATE OF FALL - 32.0-63.9 CM H-1 +277 277 SNOW, RATE OF FALL - 64.0 CM H-1 OR MORE +278 278 SNOW OR ICE CRYSTAL PRECIPITATION FROM A CLEAR SKY +279 279 WET SNOW, FREEZING ON CONTACT +280 280 PRECIPITATION OF RAIN +281 281 PRECIPITATION OF RAIN, FREEZING +282 282 PRECIPITATION OF RAIN AND SNOW MIXED +283 283 PRECIPITATION OF SNOW +284 284 PRECIPITATION OF SNOW PELLETS OR SMALL HALL +285 285 PRECIPITATION OF SNOW PELLETS OR SMALL HAIL, WITH RAIN +286 286 PRECIPITATION OF SNOW PELLETS OR SMALL HAIL, WITH RAIN AND SNOW MIXED +287 287 PRECIPITATION OF SNOW PELLETS OR SMALL HAIL, WITH SNOW +288 288 PRECIPITATION OF HAIL +289 289 PRECIPITATION OF HAIL, WITH RAIN +290 290 PRECIPITATION OF HALL, WITH RAIN AND SNOW MIXED +291 291 PRECIPITATION OF HAIL, WITH SNOW +292 292 SHOWER(S) OR THUNDERSTORM OVER SEA +293 293 SHOWER(S) OR THUNDERSTORM OVER MOUNTAINS +508 508 NO SIGNIFICANT PHENOMENON TO REPORT, PRESENT AND PAST WEATHER OMITTED +509 509 NO OBSERVATION, DATA NOT AVAILABLE, PRESENT AND PAST WEATHER OMITTED +510 510 PRESENT AND PAST WEATHER MISSING, BUT EXPECTED +511 511 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20004.table b/definitions/bufr/tables/0/wmo/42/codetables/20004.table new file mode 100644 index 000000000..f3d3024d8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20004.table @@ -0,0 +1,21 @@ +0 0 CLOUD COVERING 1/2 OR LESS OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +1 1 CLOUD COVERING MORE THAN 1/2 OF THE SKY DURING PART OF THE APPROPRIATE PERIOD AND COVERING 1/2 OR LESS DURING PART OF THE PERIOD +2 2 CLOUD COVERING MORE THAN 1/2 OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +3 3 SANDSTORM, DUSTSTORM OR BLOWING SNOW +4 4 FOG OR ICE FOG OR THICK HAZE +5 5 DRIZZLE +6 6 RAIN +7 7 SNOW, OR RAIN AND SNOW MIXED +8 8 SHOWER(S) +9 9 THUNDERSTORM(S) WITH OR WITHOUT PRECIPITATION +10 10 NO SIGNIFICANT WEATHER OBSERVED +11 11 VISIBILITY REDUCED +12 12 BLOWING PHENOMENA, VISIBILITY REDUCED +13 13 FOG +14 14 PRECIPITATION +15 15 DRIZZLE +16 16 RAIN +17 17 SNOW OR ICE PELLETS +18 18 SHOWERS OR INTERMITTENT PRECIPITATION +19 19 THUNDERSTORM +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20005.table b/definitions/bufr/tables/0/wmo/42/codetables/20005.table new file mode 100644 index 000000000..f3d3024d8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20005.table @@ -0,0 +1,21 @@ +0 0 CLOUD COVERING 1/2 OR LESS OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +1 1 CLOUD COVERING MORE THAN 1/2 OF THE SKY DURING PART OF THE APPROPRIATE PERIOD AND COVERING 1/2 OR LESS DURING PART OF THE PERIOD +2 2 CLOUD COVERING MORE THAN 1/2 OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +3 3 SANDSTORM, DUSTSTORM OR BLOWING SNOW +4 4 FOG OR ICE FOG OR THICK HAZE +5 5 DRIZZLE +6 6 RAIN +7 7 SNOW, OR RAIN AND SNOW MIXED +8 8 SHOWER(S) +9 9 THUNDERSTORM(S) WITH OR WITHOUT PRECIPITATION +10 10 NO SIGNIFICANT WEATHER OBSERVED +11 11 VISIBILITY REDUCED +12 12 BLOWING PHENOMENA, VISIBILITY REDUCED +13 13 FOG +14 14 PRECIPITATION +15 15 DRIZZLE +16 16 RAIN +17 17 SNOW OR ICE PELLETS +18 18 SHOWERS OR INTERMITTENT PRECIPITATION +19 19 THUNDERSTORM +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20006.table b/definitions/bufr/tables/0/wmo/42/codetables/20006.table new file mode 100644 index 000000000..cc2612116 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20006.table @@ -0,0 +1,5 @@ +0 0 LOW INSTRUMENT FLIGHT RULES - CEILING < 500 FEET AND/OR VISIBILITY < 1 MILE +1 1 INSTRUMENT FLIGHT RULES - CEILING < 1000 FEET AND/OR VISIBILITY < 3 MILES +2 2 MARGINAL VISUAL FLIGHT RULES - 1000 FEET =< CEILING < 3000 FEET AND/OR 3 MILES =< VISIBILITY < 5 MILES +3 3 VISUAL FLIGHT RULES - CEILING >= 3000 FEET AND/OR VISIBILITY >= 5 MILES +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20008.table b/definitions/bufr/tables/0/wmo/42/codetables/20008.table new file mode 100644 index 000000000..966bcc2fa --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20008.table @@ -0,0 +1,19 @@ +0 0 SKY CLEAR +1 1 FEW +2 2 SCATTERED +3 3 BROKEN +4 4 OVERCAST +5 5 RESERVED +6 6 SCATTERED/BROKEN +7 7 BROKEN/OVERCAST +8 8 ISOLATED +9 9 ISOLATED EMBEDDED +10 10 OCCASIONAL +11 11 OCCASIONAL EMBEDDED +12 12 FREQUENT +13 13 DENSE +14 14 LAYERS +15 15 OBSCURED (OBSC) +16 16 EMBEDDED (EMBD) +17 17 FREQUENT EMBEDDED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20009.table b/definitions/bufr/tables/0/wmo/42/codetables/20009.table new file mode 100644 index 000000000..c3f1d7435 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20009.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 NSC NIL SIGNIFICANT CLOUD +2 2 CAVOK +3 3 SKC SKY CLEAR +4 4 NSW NIL SIGNIFICANT WEATHER +5 5 NCD NO CLOUDS DETECTED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2001.table b/definitions/bufr/tables/0/wmo/42/codetables/2001.table new file mode 100644 index 000000000..470fcccb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2001.table @@ -0,0 +1,4 @@ +0 0 AUTOMATIC +1 1 MANNED +2 2 HYBRID: BOTH MANNED AND AUTOMATIC +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20011.table b/definitions/bufr/tables/0/wmo/42/codetables/20011.table new file mode 100644 index 000000000..06c6e106c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20011.table @@ -0,0 +1,16 @@ +0 0 0 +1 1 1 OKTA OR LESS, BUT NOT ZERO +2 2 2 OKTAS +3 3 3 OKTAS +4 4 4 OKTAS +5 5 5 OKTAS +6 6 6 OKTAS +7 7 7 OKTAS OR MORE, BUT NOT 8 OKTAS +8 8 8 OKTAS +9 9 SKY OBSCURED BY FOG AND/OR OTHER METEOROLOGICAL PHENOMENA +10 10 SKY PARTIALLY OBSCURED BY FOG AND/OR OTHER METEOROLOGICAL PHENOMENA +11 11 SCATTERED +12 12 BROKEN +13 13 FEW +14 14 RESERVED +15 15 CLOUD COVER IS INDISCERNIBLE FOR REASONS OTHER THAN FOG OR OTHER METEOROLOGICAL PHENOMENA, OR OBSERVATION IS NOT MADE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20012.table b/definitions/bufr/tables/0/wmo/42/codetables/20012.table new file mode 100644 index 000000000..07984f399 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20012.table @@ -0,0 +1,55 @@ +0 0 CIRRUS (CI) +1 1 CIRROCUMULUS (CC) +2 2 CIRROSTRATUS (CS) +3 3 ALTOCUMULUS (AC) +4 4 ALTOSTRATUS (AS) +5 5 NIMBOSTRATUS (NS) +6 6 STRATOCUMULUS (SC) +7 7 STRATUS (ST) +8 8 CUMULUS (CU) +9 9 CUMULONIMBUS (CB) +10 10 NO CH CLOUDS +11 11 CIRRUS FIBRATUS, SOMETIMES UNCINUS, NOT PROGRESSIVELY INVADING THE SKY +12 12 CIRRUS SPISSATUS, IN PATCHES OR ENTANGLED SHEAVES, WHICH USUALLY DO NOT INCREASE AND SOMETIMES SEEM TO BE THE REMAINS OF THE UPPER PART OF A CUMULONIMBUS; OR CIRRUS CASTELLANUS OR FLOCCUS +13 13 CIRRUS SPISSATUS CUMULONIMBOGENITUS +14 14 CIRRUS UNCINUS OR FIBRATUS, OR BOTH, PROGRESSIVELY INVADING THE SKY; THEY GENERALLY THICKEN AS A WHOLE +15 15 CIRRUS (OFTEN IN BANDS) AND CIRROSTRATUS, OR CIRROSTRATUS ALONE, PROGRESSIVELY INVADING THE SKY; THEY GENERALLY THICKEN AS A WHOLE, BUT THE CONTINUOUS VEIL DOES NOT REACH 45 DEGREES ABOVE THE HORIZON +16 16 CIRRUS (OFTEN IN BANDS) AND CIRROSTRATUS, OR CIRROSTRATUS ALONE, PROGRESSIVELY INVADING THE SKY; THEY GENERALLY THICKEN AS A WHOLE; THE CONTINUOUS VEIL EXTENDS MORE THAN 45 DEGREES ABOVE THE HORIZON, WITHOUT THE SKY BEING TOTALLY COVERED +17 17 CIRROSTRATUS COVERING THE WHOLE SKY +18 18 CIRROSTRATUS NOT PROGRESSIVELY INVADING THE SKY AND NOT ENTIRELY COVERING IT +19 19 CIRROCUMULUS ALONE, OR CIRROCUMULUS PREDOMINANT AMONG THE CH CLOUDS +20 20 NO CM CLOUDS +21 21 ALTOSTRATUS TRANSLUCIDUS +22 22 ALTOSTRATUS OPACUS OR NIMBOSTRATUS +23 23 ALTOCUMULUS TRANSLUCIDUS AT A SINGLE LEVEL +24 24 PATCHES (OFTEN LENTICULAR) OF ALTOCUMULUS TRANSLUCIDUS, CONTINUALLY CHANGING AND OCCURRING AT ONE OR MORE LEVELS +25 25 ALTOCUMULUS TRANSLUCIDUS IN BANDS, OR ONE OR MORE LAYERS OF ALTOCUMULUS TRANSLUCIDUS OR OPACUS, PROGRESSIVELY INVADING THE SKY; THESE ALTOCUMULUS CLOUDS GENERALLY THICKEN AS A WHOLE +26 26 ALTOCUMULUS CUMULOGENITUS (OR CUMULONIMBOGENITUS) +27 27 ALTOCUMULUS TRANSLUCIDUS OR OPACUS IN TWO OR MORE LAYERS, OR ALTOCUMULUS OPACUS IN A SINGLE LAYER, NOT PROGRESSIVELY INVADING THE SKY, OR ALTOCUMULUS WITH ALTOSTRATUS OR NIMBOSTRATUS +28 28 ALTOCUMULUS CASTELLANUS OR FLOCCUS +29 29 ALTOCUMULUS OF A CHAOTIC SKY, GENERALLY AT SEVERAL LEVELS +30 30 NO CL CLOUDS +31 31 CUMULUS HUMILIS OR CUMULUS FRACTUS OTHER THAN OF BAD WEATHER, OR BOTH +32 32 CUMULUS MEDIOCRIS OR CONGESTUS, TOWERING CUMULUS (TCU), WITH OR WITHOUT CUMULUS OF SPECIES FRACTUS OR HUMILIS OR STRATOCUMULUS, ALL HAVING THEIR BASES AT THE SAME LEVEL +33 33 CUMULONIMBUS CALVUS, WITH OR WITHOUT CUMULUS, STRATOCUMULUS OR STRATUS +34 34 STRATOCUMULUS CUMULOGENITUS +35 35 STRATOCUMULUS OTHER THAN STRATOCUMULUS CUMULOGENITUS +36 36 STRATUS NEBULOSUS OR STRATUS FRACTUS OTHER THAN OF BAD WEATHER, OR BOTH +37 37 STRATUS FRACTUS OR CUMULUS FRACTUS OF BAD WEATHER, OR BOTH (PANNUS), USUALLY BELOW ALTOSTRATUS OR NIMBOSTRATUS +38 38 CUMULUS AND STRATOCUMULUS OTHER THAN STRATOCUMULUS CUMULOGENITUS, WITH BASES AT DIFFERENT LEVELS +39 39 CUMULONIMBUS CAPILLATUS (OFTEN WITH AN ANVIL), WITH OR WITHOUT CUMULONIMBUS CALVUS, CUMULUS, STRATOCUMULUS, STRATUS OR PANNUS +40 40 CH +41 41 CM +42 42 CL +43 43 CLEAR +44 44 LIQUID WATER +45 45 SUPERCOOLED LIQUID WATER +46 46 MIXED PHASE +47 47 OPTICALLY THICK ICE +48 48 OPTICALLY THIN ICE +49 49 MULTILAYERED ICE +59 59 CLOUD NOT VISIBLE OWING TO DARKNESS, FOG, DUSTSTORM, SANDSTORM, OR OTHER ANALOGOUS PHENOMENA +60 60 CH CLOUDS INVISIBLE OWING TO DARKNESS, FOG, BLOWING DUST OR SAND, OR OTHER SIMILAR PHENOMENA, OR BECAUSE OF A CONTINUOUS LAYER OF LOWER CLOUDS +61 61 CM CLOUDS INVISIBLE OWING TO DARKNESS, FOG, BLOWING DUST OR SAND, OR OTHER SIMILAR PHENOMENA, OR BECAUSE OF CONTINUOUS LAYER OF LOWER CLOUDS +62 62 CL CLOUDS INVISIBLE OWING TO DARKNESS, FOG, BLOWING DUST OR SAND, OR OTHER SIMILAR PHENOMENA +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20017.table b/definitions/bufr/tables/0/wmo/42/codetables/20017.table new file mode 100644 index 000000000..5ec10bd41 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20017.table @@ -0,0 +1,11 @@ +0 0 ISOLATED CLOUD FRAGMENTS OF CLOUDS +1 1 CONTINUOUS CLOUD +2 2 BROKEN CLOUD - SMALL BREAKS +3 3 BROKEN CLOUD - LARGE BREAKS +4 4 CONTINUOUS CLOUD +5 5 BROKEN CLOUD - SMALL BREAKS +6 6 BROKEN CLOUD - LARGE BREAKS +7 7 CONTINUOUS OR ALMOST CONTINUOUS WAVES WITH TOWERING CLOUDS ABOVE THE TOP OF THE LAYER +8 8 GROUPS OF WAVES WITH TOWERING CLOUDS ABOVE THE TOP OF THE LAYER +9 9 TWO OR MORE LAYERS AT DIFFERENT LEVELS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20018.table b/definitions/bufr/tables/0/wmo/42/codetables/20018.table new file mode 100644 index 000000000..c0ffc3693 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20018.table @@ -0,0 +1,4 @@ +0 0 INCREASING (U) +1 1 DECREASING (D) +2 2 NO DISTINCT CHANGE (N) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2002.table b/definitions/bufr/tables/0/wmo/42/codetables/2002.table new file mode 100644 index 000000000..a701e1e40 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2002.table @@ -0,0 +1,3 @@ +1 1 CERTIFIED INSTRUMENTS +2 2 ORIGINALLY MEASURED IN KNOTS +3 3 ORIGINALLY MEASURED IN KM H-1 diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20021.table b/definitions/bufr/tables/0/wmo/42/codetables/20021.table new file mode 100644 index 000000000..747a7591e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20021.table @@ -0,0 +1,23 @@ +1 1 PRECIPITATION - UNKNOWN TYPE +2 2 LIQUID PRECIPITATION NOT FREEZING +3 3 LIQUID FREEZING PRECIPITATION +4 4 DRIZZLE +5 5 RAIN +6 6 SOLID PRECIPITATION +7 7 SNOW +8 8 SNOW GRAINS +9 9 SNOW PELLETS +10 10 ICE PELLETS +11 11 ICE CRYSTALS +12 12 DIAMOND DUST +13 13 SMALL HAIL +14 14 HAIL +15 15 GLAZE +16 16 RIME +17 17 SOFT RIME +18 18 HARD RIME +19 19 CLEAR ICE +20 20 WET SNOW +21 21 HOAR FROST +22 22 DEW +23 23 WHITE DEW diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20022.table b/definitions/bufr/tables/0/wmo/42/codetables/20022.table new file mode 100644 index 000000000..a551aac0e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20022.table @@ -0,0 +1,7 @@ +0 0 NO PRECIPITATION +1 1 CONTINUOUS +2 2 INTERMITTENT +3 3 SHOWER +4 4 NOT REACHING GROUND +5 5 DEPOSITION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20023.table b/definitions/bufr/tables/0/wmo/42/codetables/20023.table new file mode 100644 index 000000000..97670dfbb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20023.table @@ -0,0 +1,14 @@ +1 1 DUST/SAND WHIRL +2 2 SQUALLS +3 3 SANDSTORM +4 4 DUSTSTORM +5 5 LIGHTNING - CLOUD TO SURFACE +6 6 LIGHTNING - CLOUD TO CLOUD +7 7 LIGHTNING - DISTANT +8 8 THUNDERSTORM +9 9 FUNNEL CLOUD NOT TOUCHING SURFACE +10 10 FUNNEL CLOUD TOUCHING SURFACE +11 11 SPRAY +12 12 WATERSPOUT +13 13 WIND SHEAR +14 14 DUST DEVILS diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20024.table b/definitions/bufr/tables/0/wmo/42/codetables/20024.table new file mode 100644 index 000000000..13aba873e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20024.table @@ -0,0 +1,8 @@ +0 0 NO PHENOMENA +1 1 LIGHT +2 2 MODERATE +3 3 HEAVY +4 4 VIOLENT +5 5 SEVERE +6 6 VERY SEVERE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20025.table b/definitions/bufr/tables/0/wmo/42/codetables/20025.table new file mode 100644 index 000000000..4d70e338f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20025.table @@ -0,0 +1,13 @@ +1 1 FOG +2 2 ICE FOG +3 3 STEAM FOG +7 7 MIST +8 8 HAZE +9 9 SMOKE +10 10 VOLCANIC ASH +11 11 DUST +12 12 SAND +13 13 SNOW +14 14 CLOUD +15 15 PRECIPITATION +16 16 IMPOSSIBLE TO DETERMINE WHETHER SNOW IS FALLING OR NOT diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20026.table b/definitions/bufr/tables/0/wmo/42/codetables/20026.table new file mode 100644 index 000000000..285209472 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20026.table @@ -0,0 +1,16 @@ +0 0 NO CHANGE +1 1 SHALLOW +2 2 PATCHES +3 3 PARTIAL +4 4 FREEZING +5 5 LOW DRIFTING +6 6 BLOWING +7 7 INCREASING +8 8 DECREASING +9 9 IN SUSPENSION IN THE AIR +10 10 WALL +11 11 DENSE +12 12 WHITEOUT +13 13 DRIFTING AND BLOWING +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20027.table b/definitions/bufr/tables/0/wmo/42/codetables/20027.table new file mode 100644 index 000000000..c337f16a7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20027.table @@ -0,0 +1,8 @@ +1 1 AT TIME OF OBSERVATION +2 2 IN PAST HOUR +3 3 IN TIME PERIOD FOR PAST WEATHER W1W2 +4 4 IN TIME PERIOD SPECIFIED +5 5 RESERVED +6 6 BELOW STATION LEVEL +7 7 AT THE STATION +8 8 IN THE VICINITY diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20028.table b/definitions/bufr/tables/0/wmo/42/codetables/20028.table new file mode 100644 index 000000000..6b701a2b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20028.table @@ -0,0 +1,4 @@ +0 0 NO CHANGE (NC) +1 1 FORECAST TO WEAKEN (WKN) +2 2 FORECAST TO INTENSIFY (INTSF) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20029.table b/definitions/bufr/tables/0/wmo/42/codetables/20029.table new file mode 100644 index 000000000..8b46da891 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20029.table @@ -0,0 +1,4 @@ +0 0 NO RAIN +1 1 RAIN +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2003.table b/definitions/bufr/tables/0/wmo/42/codetables/2003.table new file mode 100644 index 000000000..f364d1811 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2003.table @@ -0,0 +1,13 @@ +0 0 PRESSURE INSTRUMENT ASSOCIATED WITH WIND MEASURING EQUIPMENT +1 1 OPTICAL THEODOLITE +2 2 RADIO THEODOLITE +3 3 RADAR +4 4 VLF-OMEGA +5 5 LORAN C +6 6 WIND PROFILER +7 7 SATELLITE NAVIGATION +8 8 RADIO-ACOUSTIC SOUNDING SYSTEM (RASS) +9 9 SODAR +10 10 LIDAR +14 14 PRESSURE INSTRUMENT ASSOCIATED WITH WIND MEASURING EQUIPMENT BUT PRESSURE ELEMENT FAILED DURING ASCENT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20032.table b/definitions/bufr/tables/0/wmo/42/codetables/20032.table new file mode 100644 index 000000000..fd37c1e76 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20032.table @@ -0,0 +1,6 @@ +0 0 ICE NOT BUILDING UP +1 1 ICE BUILDING UP SLOWLY +2 2 ICE BUILDING UP RAPIDLY +3 3 ICE MELTING OR BREAKING UP SLOWLY +4 4 ICE MELTING OR BREAKING UP RAPIDLY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20033.table b/definitions/bufr/tables/0/wmo/42/codetables/20033.table new file mode 100644 index 000000000..817873323 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20033.table @@ -0,0 +1,3 @@ +1 1 ICING FROM OCEAN SPRAY +2 2 ICING FROM FOG +3 3 ICING FROM RAIN diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20034.table b/definitions/bufr/tables/0/wmo/42/codetables/20034.table new file mode 100644 index 000000000..668e91671 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20034.table @@ -0,0 +1,12 @@ +0 0 NO SEA ICE IN SIGHT +1 1 SHIP IN OPEN LEAD MORE THAN 1.0 NAUTICAL MILE WIDE, OR SHIP IN FAST ICE WITH BOUNDARY BEYOND LIMIT OF VISIBILITY +2 2 SEA ICE PRESENT IN CONCENTRATIONS LESS THAN 3/10 (3/8), OPEN WATER OR VERY OPEN PACK ICE +3 3 4/10 TO 6/10 (3/8 TO LESS THAN 6/8), OPEN PACK ICE +4 4 7/10 TO 8/10 (6/8 TO LESS THAN 7/8), CLOSE PACK ICE +5 5 9/10 OR MORE, BUT NOT 10/10 (7/8 TO LESS THAN 8/8), VERY CLOSE PACK ICE +6 6 STRIPS AND PATCHES OF PACK ICE WITH OPEN WATER BETWEEN +7 7 STRIPS AND PATCHES OF CLOSE OR VERY CLOSE PACK ICE WITH AREAS OF LESSER CONCENTRATION BETWEEN +8 8 FAST ICE WITH OPEN WATER, VERY OPEN OR OPEN PACK ICE TO SEAWARD OF THE ICE BOUNDARY +9 9 FAST ICE WITH CLOSE OR VERY CLOSE PACK ICE TO SEAWARD OF THE BOUNDARY +14 14 UNABLE TO REPORT, BECAUSE OF DARKNESS, LACK OF VISIBILITY, OR BECAUSE SHIP IS MORE THAN 0.5 NAUTICAL MILE AWAY FROM ICE EDGE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20035.table b/definitions/bufr/tables/0/wmo/42/codetables/20035.table new file mode 100644 index 000000000..07a4a0284 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20035.table @@ -0,0 +1,12 @@ +0 0 NO ICE OF LAND ORIGIN +1 1 1-5 ICEBERGS, NO GROWLERS OR BERGY BITS +2 2 6-10 ICEBERGS, NO GROWLERS OR BERGY BITS +3 3 11-20 ICEBERGS, NO GROWLERS OR BERGY BITS +4 4 UP TO AND INCLUDING 10 GROWLERS AND BERGY BITS - NO ICEBERGS +5 5 MORE THAN 10 GROWLERS AND BERGY BITS - NO ICEBERGS +6 6 1-5 ICEBERGS, WITH GROWLERS AND BERGY BITS +7 7 6-10 ICEBERGS, WITH GROWLERS AND BERGY BITS +8 8 11-20 ICEBERGS, WITH GROWLERS AND BERGY BITS +9 9 MORE THAN 20 ICEBERGS, WITH GROWLERS AND BERGY BITS - A MAJOR HAZARD TO NAVIGATION +14 14 UNABLE TO REPORT, BECAUSE OF DARKNESS, LACK OF VISIBILITY OR BECAUSE ONLY SEA ICE IS VISIBLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20036.table b/definitions/bufr/tables/0/wmo/42/codetables/20036.table new file mode 100644 index 000000000..b4cc874bd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20036.table @@ -0,0 +1,12 @@ +0 0 SHIP IN OPEN WATER WITH FLOATING ICE IN SIGHT +1 1 SHIP IN EASILY PENETRABLE ICE; CONDITIONS IMPROVING +2 2 SHIP IN EASILY PENETRABLE ICE; CONDITIONS NOT CHANGING +3 3 SHIP IN EASILY PENETRABLE ICE; CONDITIONS WORSENING +4 4 SHIP IN ICE DIFFICULT TO PENETRATE; CONDITIONS IMPROVING +5 5 SHIP IN ICE DIFFICULT TO PENETRATE; CONDITIONS NOT CHANGING +6 6 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. ICE FORMING AND FLOES FREEZING TOGETHER +7 7 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. ICE UNDER SLIGHT PRESSURE +8 8 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. ICE UNDER MODERATE OR SEVERE PRESSURE +9 9 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. SHIP BESET +30 30 UNABLE TO REPORT, BECAUSE OF DARKNESS OR LACK OF VISIBILITY +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20037.table b/definitions/bufr/tables/0/wmo/42/codetables/20037.table new file mode 100644 index 000000000..474eeaae2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20037.table @@ -0,0 +1,12 @@ +0 0 NEW ICE ONLY (FRAZIL ICE, GREASE ICE, SLUSH, SHUGA) +1 1 NILAS OR ICE RIND, LESS THAN 10 CM THICK +2 2 YOUNG ICE (GREY ICE, GREY-WHITE ICE), 10-30 CM THICK +3 3 PREDOMINANTLY NEW AND/OR YOUNG ICE WITH SOME FIRST-YEAR ICE +4 4 PREDOMINANTLY THIN FIRST-YEAR ICE WITH SOME NEW AND/OR YOUNG ICE +5 5 ALL THIN FIRST-YEAR ICE (30-70 CM THICK) +6 6 PREDOMINANTLY MEDIUM FIRST-YEAR ICE (70-120 CM THICK) AND THICK FIRST-YEAR ICE (>120 CM THICK) WITH SOME THINNER (YOUNGER) FIRST-YEAR ICE +7 7 ALL MEDIUM AND THICK FIRST-YEAR ICE +8 8 PREDOMINANTLY MEDIUM AND THICK FIRST-YEAR ICE WITH SOME OLD ICE (USUALLY MORE THAN 2 METRES THICK) +9 9 PREDOMINANTLY OLD ICE +30 30 UNABLE TO REPORT, BECAUSE OF DARKNESS, LACK OF VISIBILITY OR BECAUSE ONLY ICE OF LAND ORIGIN IS VISIBLE OR BECAUSE SHIP IS MORE THAN 0.5 NAUTICAL MILE AWAY FROM ICE EDGE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2004.table b/definitions/bufr/tables/0/wmo/42/codetables/2004.table new file mode 100644 index 000000000..a55de6c58 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2004.table @@ -0,0 +1,11 @@ +0 0 USA OPEN PAN EVAPORIMETER (WITHOUT COVER) +1 1 USA OPEN PAN EVAPORIMETER (MESH COVERED) +2 2 GGI-3000 EVAPORIMETER (SUNKEN) +3 3 20 M2 TANK +4 4 OTHERS +5 5 RICE +6 6 WHEAT +7 7 MAIZE +8 8 SORGHUM +9 9 OTHER CROPS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20040.table b/definitions/bufr/tables/0/wmo/42/codetables/20040.table new file mode 100644 index 000000000..889393bf8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20040.table @@ -0,0 +1,9 @@ +0 0 DRIFT SNOW ENDED BEFORE THE HOUR OF OBSERVATION +1 1 INTENSITY DIMINISHING +2 2 NO CHANGE +3 3 INTENSITY INCREASING +4 4 CONTINUES, APART FROM INTERRUPTION LASTING LESS THAN 30 MINUTES +5 5 GENERAL DRIFT SNOW HAS BECOME DRIFT SNOW NEAR THE GROUND +6 6 DRIFT SNOW NEAR THE GROUND HAS BECOME GENERAL DRIFT SNOW +7 7 DRIFT SNOW HAS STARTED AGAIN AFTER AN INTERRUPTION OF MORE THAN 30 MINUTES +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20041.table b/definitions/bufr/tables/0/wmo/42/codetables/20041.table new file mode 100644 index 000000000..fc571208d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20041.table @@ -0,0 +1,14 @@ +0 0 NO ICING +1 1 LIGHT ICING +2 2 LIGHT ICING IN CLOUD +3 3 LIGHT ICING IN PRECIPITATION +4 4 MODERATE ICING +5 5 MODERATE ICING IN CLOUD +6 6 MODERATE ICING IN PRECIPITATION +7 7 SEVERE ICING +8 8 SEVERE ICING IN CLOUD +9 9 SEVERE ICING IN PRECIPITATION +10 10 TRACE OF ICING +11 11 TRACE OF ICING IN CLOUD +12 12 TRACE OF ICING IN PRECIPITATION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20042.table b/definitions/bufr/tables/0/wmo/42/codetables/20042.table new file mode 100644 index 000000000..2493af725 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20042.table @@ -0,0 +1,4 @@ +0 0 NO ICING +1 1 ICING PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20045.table b/definitions/bufr/tables/0/wmo/42/codetables/20045.table new file mode 100644 index 000000000..91ae63f48 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20045.table @@ -0,0 +1,4 @@ +0 0 NO SLD CONDITIONS PRESENT +1 1 SLD CONDITIONS PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20048.table b/definitions/bufr/tables/0/wmo/42/codetables/20048.table new file mode 100644 index 000000000..4a5488266 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20048.table @@ -0,0 +1,5 @@ +0 0 STABILITY +1 1 DIMINUTION +2 2 INTENSIFICATION +3 3 UNKNOWN +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20050.table b/definitions/bufr/tables/0/wmo/42/codetables/20050.table new file mode 100644 index 000000000..3f8654ed5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20050.table @@ -0,0 +1,10 @@ +0 0 RESERVED +1 1 1ST LOW CLOUD +2 2 2ND LOW CLOUD +3 3 3RD LOW CLOUD +4 4 1ST MEDIUM CLOUD +5 5 2ND MEDIUM CLOUD +6 6 3RD MEDIUM CLOUD +7 7 1ST HIGH CLOUD +8 8 2ND HIGH CLOUD +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20055.table b/definitions/bufr/tables/0/wmo/42/codetables/20055.table new file mode 100644 index 000000000..ea06427f6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20055.table @@ -0,0 +1,12 @@ +0 0 CUMULUS, IF ANY, ARE QUITE SMALL; GENERALLY LESS THAN 2/8 COVERAGE, EXCEPT ON WINDWARD SLOPES OF ELEVATED TERRAIN; AVERAGE WIDTH OF CLOUD IS AT LEAST AS GREAT AS ITS VERTICAL THICKNESS +1 1 CUMULUS OF INTERMEDIATE SIZE WITH CLOUD COVER LESS THAN 5/8; AVERAGE CLOUD WIDTH IS MORE THAN ITS VERTICAL THICKNESS; TOWERS ARE VERTICAL WITH LITTLE OR NO EVIDENCE OF PRECIPITATION, EXCEPT ALONG SLOPES OF ELEVATED TERRAIN; A GENERAL ABSENCE OF MIDDLE AND UPPER CLOUDS +2 2 SWELLING CUMULUS WITH RAPIDLY GROWING TALL TURRETS WHICH DECREASE IN SIZE WITH HEIGHT AND WHOSE TOPS TEND TO SEPARATE FROM THE LONGER CLOUD BODY AND EVAPORATE WITHIN MINUTES OF THE SEPARATION +3 3 SWELLING CUMULUS WITH TOWERS HAVING A PRONOUNCED TILT IN A DOWNWIND DIRECTION; VERTICAL CLOUD THICKNESS IS MORE THAN ONE AND A HALF TIMES THAT OF ITS AVERAGE WIDTH +4 4 SWELLING CUMULUS WITH TOWERS HAVING A PRONOUNCED TILT IN AN UPWIND DIRECTION; VERTICAL CLOUD THICKNESS IS MORE THAN ONE AND A HALF TIMES THAT OF ITS AVERAGE WIDTH +5 5 TALL CUMULUS CONGESTUS WITH VERTICAL THICKNESS MORE THAN TWICE THE AVERAGE WIDTH; NOT ORGANIZED IN CLUSTERS OR LINES; ONE OR MORE LAYERS OF CLOUDS EXTEND OUT FROM THE CLOUD TOWERS, ALTHOUGH NO CONTINUOUS CLOUD LAYERS EXIST +6 6 ISOLATED CUMULONIMBUS OR LARGE CLUSTERS OF CUMULUS TURRETS SEPARATED BY WIDE AREAS IN WHICH CLOUDS ARE ABSENT; CLOUD BASES ARE GENERALLY DARK WITH SHOWERS OBSERVED IN MOST CELLS; SOME SCATTERED MIDDLE AND UPPER CLOUDS MAY BE PRESENT; INDIVIDUAL CUMULUS CELLS ARE ONE TO TWO TIMES HIGHER THAN THEY ARE WIDE +7 7 NUMEROUS CUMULUS EXTENDING THROUGH THE MIDDLE TROPOSPHERE WITH BROKEN TO OVERCAST SHEETS OF MIDDLE CLOUDS AND/OR CIRROSTRATUS; CUMULUS TOWERS DO NOT DECREASE GENERALLY IN SIZE WITH HEIGHT; RAGGED DARK CLOUD BASES WITH SOME SHOWERS PRESENT +8 8 CONTINUOUS DENSE MIDDLE CLOUDS AND/OR CIRROSTRATUS CLOUD SHEETS WITH SOME LARGE ISOLATED CUMULONIMBUS OR CUMULUS CONGESTUS CLOUDS PENETRATING THESE SHEETS; LIGHT RAIN OCCASIONALLY OBSERVED FROM THE ALTOSTRATUS; CUMULONIMBUS BASES RAGGED AND DARK WITH SHOWERS VISIBLE +9 9 CONTINUOUS SHEETS OF MIDDLE CLOUDS AND/OR CIRROSTRATUS WITH CUMULONIMBUS AND CUMULUS CONGESTUS IN ORGANIZED LINES OR CLOUD BANDS; RAIN IS GENERALLY OBSERVED FROM ALTOSTRATUS SHEETS AND HEAVY SHOWERS FROM CUMULONIMBUS; WIND HAS A SQUALLY CHARACTER +10 10 STATE OF SKY UNKNOWN OR NOT DESCRIBED BY ANY OF THE ABOVE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20056.table b/definitions/bufr/tables/0/wmo/42/codetables/20056.table new file mode 100644 index 000000000..204b220b8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20056.table @@ -0,0 +1,8 @@ +0 0 UNKNOWN +1 1 WATER +2 2 ICE +3 3 MIXED +4 4 CLEAR +5 5 SUPERCOOLED LIQUID WATER +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2006.table b/definitions/bufr/tables/0/wmo/42/codetables/2006.table new file mode 100644 index 000000000..e32bac3d7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2006.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 ELASTIC BACKSCATTER LIDAR +2 2 RAMAN BACKSCATTER LIDAR +3 3 RADAR WIND PROFILER +4 4 LIDAR WIND PROFILER +5 5 SODAR WIND PROFILER +6 6 WIND PROFILER +7 7 LIDAR +8 8 GROUND-BASED MICROWAVE RADIOMETER +9 9 DIFFERENTIAL ABSORPTION LIDAR +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20062.table b/definitions/bufr/tables/0/wmo/42/codetables/20062.table new file mode 100644 index 000000000..24d96c46f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20062.table @@ -0,0 +1,21 @@ +0 0 SURFACE OF GROUND DRY (WITHOUT CRACKS AND NO APPRECIABLE AMOUNT OF DUST OR LOOSE SAND) +1 1 SURFACE OF GROUND MOIST +2 2 SURFACE OF GROUND WET (STANDING WATER IN SMALL OR LARGE POOLS ON SURFACE) +3 3 FLOODED +4 4 SURFACE OF GROUND FROZEN +5 5 GLAZE ON GROUND +6 6 LOOSE DRY DUST OR SAND NOT COVERING GROUND COMPLETELY +7 7 THIN COVER OF LOOSE DRY DUST OR SAND COVERING GROUND COMPLETELY +8 8 MODERATE OR THICK COVER OF LOOSE DRY DUST OR SAND COVERING GROUND COMPLETELY +9 9 EXTREMELY DRY WITH CRACKS +10 10 GROUND PREDOMINANTLY COVERED BY ICE +11 11 COMPACT OR WET SNOW (WITH OR WITHOUT ICE) COVERING LESS THAN ONE HALF OF THE GROUND +12 12 COMPACT OR WET SNOW (WITH OR WITHOUT ICE) COVERING AT LEAST ONE HALF OF THE GROUND BUT GROUND NOT COMPLETELY COVERED +13 13 EVEN LAYER OF COMPACT OR WET SNOW COVERING GROUND COMPLETELY +14 14 UNEVEN LAYER OF COMPACT OR WET SNOW COVERING GROUND COMPLETELY +15 15 LOOSE DRY SNOW COVERING LESS THAN ONE HALF OF THE GROUND +16 16 LOOSE DRY SNOW COVERING AT LEAST ONE HALF OF THE GROUND BUT GROUND NOT COMPLETELY COVERED +17 17 EVEN LAYER OF LOOSE DRY SNOW COVERING GROUND COMPLETELY +18 18 UNEVEN LAYER OF LOOSE DRY SNOW COVERING GROUND COMPLETELY +19 19 SNOW COVERING GROUND COMPLETELY; DEEP DRIFTS +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20063.table b/definitions/bufr/tables/0/wmo/42/codetables/20063.table new file mode 100644 index 000000000..d1622860b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20063.table @@ -0,0 +1,72 @@ +0 0 RESERVED +1 1 HIGHEST WIND SPEED GUSTS GREATER THAN 11.5 M/S +2 2 HIGHEST MEAN WIND SPEED GREATER THAN 17.5 M/S +7 7 VISIBILITY GREATER THAN 100 000 M +10 10 MIRAGE - NO SPECIFICATION +11 11 MIRAGE - IMAGE OF DISTANT OBJECT RAISED (LOOMING) +12 12 MIRAGE - IMAGE OF DISTANT OBJECT RAISED CLEAR ABOVE THE HORIZON +13 13 MIRAGE - INVERTED IMAGE OF DISTANT OBJECT +14 14 MIRAGE - COMPLEX, MULTIPLE IMAGES OF DISTANT OBJECT (IMAGES NOT INVERTED) +15 15 MIRAGE - COMPLEX, MULTIPLE IMAGES OF DISTANT OBJECT (SOME IMAGES BEING INVERTED) +16 16 MIRAGE - SUN OR MOON SEEN APPRECIABLY DISTORTED +17 17 MIRAGE - SUN VISIBLE, ALTHOUGH ASTRONOMICALLY BELOW THE HORIZON +18 18 MIRAGE - MOON VISIBLE, ALTHOUGH ASTRONOMICALLY BELOW THE HORIZON +19 19 RESERVED +20 20 DAY DARKNESS, BAD, WORST IN DIRECTION SPECIFIED +21 21 DAY DARKNESS, VERY BAD, WORST IN DIRECTION SPECIFIED +22 22 DAY DARKNESS, BLACK, WORST IN DIRECTION SPECIFIED +31 31 SLIGHT COLORATION OF CLOUDS AT SUNRISE ASSOCIATED WITH A TROPICAL DISTURBANCE +32 32 DEEP-RED COLORATION OF CLOUDS AT SUNRISE ASSOCIATED WITH A TROPICAL DISTURBANCE +33 33 SLIGHT COLORATION OF CLOUDS AT SUNSET ASSOCIATED WITH A TROPICAL DISTURBANCE +34 34 DEEP-RED COLORATION OF CLOUDS AT SUNSET ASSOCIATED WITH A TROPICAL DISTURBANCE +35 35 CONVERGENCE OF CH CLOUDS AT A POINT BELOW 45 DEG FORMING OR INCREASING AND ASSOCIATED WITH A TROPICAL DISTURBANCE +36 36 CONVERGENCE OF CH CLOUDS AT A POINT ABOVE 45 DEG FORMING OR INCREASING AND ASSOCIATED WITH A TROPICAL DISTURBANCE +37 37 CONVERGENCE OF CH CLOUDS AT A POINT BELOW 45 DEG DISSOLVING OR DIMINISHING AND ASSOCIATED WITH A TROPICAL DISTURBANCE +38 38 CONVERGENCE OF CH CLOUDS AT A POINT ABOVE 45 DEG DISSOLVING OR DIMINISHING AND ASSOCIATED WITH A TROPICAL DISTURBANCE +39 39 RESERVED +40 40 HOAR FROST ON HORIZONTAL SURFACES +41 41 HOAR FROST ON HORIZONTAL AND VERTICAL SURFACES +42 42 PRECIPITATION CONTAINING SAND OR DESERT DUST +43 43 PRECIPITATION CONTAINING VOLCANIC ASH +50 50 CALM OR LIGHT WIND FOLLOWED BY A SQUALL +51 51 CALM OR LIGHT WIND FOLLOWED BY A SUCCESSION OF SQUALLS +52 52 GUSTY WEATHER FOLLOWED BY A SQUALL +53 53 GUSTY WEATHER FOLLOWED BY A SUCCESSION OF SQUALLS +54 54 SQUALL FOLLOWED BY GUSTY WEATHER +55 55 GENERAL GUSTY WEATHER WITH SQUALL AT INTERVALS +56 56 SQUALL APPROACHING STATION +57 57 LINE SQUALL +58 58 SQUALL WITH DRIFTING OR BLOWING DUST OR SAND +59 59 LINE SQUALL WITH DRIFTING OR BLOWING DUST OR SAND +60 60 TEMPERATURE STEADY +61 61 TEMPERATURE FALLING, WITHOUT GOING BELOW 0 DEG C +62 62 TEMPERATURE RISING, WITHOUT GOING ABOVE 0 DEG C +63 63 TEMPERATURE FALLING TO A VALUE BELOW 0 DEG C +64 64 TEMPERATURE RISING TO A VALUE ABOVE 0 DEG C +65 65 IRREGULAR VARIATION, OSCILLATIONS OF TEMPERATURE PASSING THROUGH 0 DEG C +66 66 IRREGULAR VARIATION, OSCILLATIONS OF TEMPERATURE NOT PASSING THROUGH 0 DEG C +67 67 VARIATION OF TEMPERATURE NOT OBSERVED +68 68 NOT ALLOCATED +69 69 VARIATION OF TEMPERATURE UNKNOWN OWING TO LACK OF THERMOGRAPH +70 70 VISIBILITY HAS NOT VARIED (SUN VISIBLE) TOWARDS DIRECTION SPECIFIED +71 71 VISIBILITY HAS NOT VARIED (SUN INVISIBLE) TOWARDS DIRECTION SPECIFIED +72 72 VISIBILITY HAS INCREASED (SUN VISIBLE) TOWARDS DIRECTION SPECIFIED +73 73 VISIBILITY HAS INCREASED (SUN INVISIBLE) TOWARDS DIRECTION SPECIFIED +74 74 VISIBILITY HAS DECREASED (SUN VISIBLE) TOWARDS DIRECTION SPECIFIED +75 75 VISIBILITY HAS DECREASED (SUN INVISIBLE) TOWARDS DIRECTION SPECIFIED +76 76 FOG COMING FROM DIRECTION SPECIFIED +77 77 FOG HAS LIFTED, WITHOUT DISSIPATING +78 78 FOG HAS DISPERSED WITHOUT REGARD TO DIRECTION +79 79 MOVING PATCHES OR BANKS OF FOG +80 80 BROCKEN SPECTRE +81 81 RAINBOW +82 82 SOLAR OR LUNAR HALO +83 83 PARHELIA OR ANTHELIA +84 84 SUN PILLAR +85 85 CORONA +86 86 TWILIGHT GLOW +87 87 TWILIGHT GLOW ON THE MOUNTAINS (ALPENGLUEHEN) +88 88 MIRAGE +89 89 ZODIACAL LIGHT +90 90 ST ELMO'S FIRE +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2007.table b/definitions/bufr/tables/0/wmo/42/codetables/2007.table new file mode 100644 index 000000000..05b4c6bd1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2007.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 SHAFT ENCODER FLOAT SYSTEM +2 2 ULTRASONIC +3 3 RADAR +4 4 PRESSURE (SINGLE TRANSDUCER) +5 5 PRESSURE (MULTIPLE TRANSDUCER) +6 6 PRESSURE (IN STILLING WELL) +7 7 BUBBLER PRESSURE +8 8 ACOUSTIC (WITH SOUNDING TUBE) +9 9 ACOUSTIC (IN OPEN AIR) +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20071.table b/definitions/bufr/tables/0/wmo/42/codetables/20071.table new file mode 100644 index 000000000..72367bf8b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20071.table @@ -0,0 +1,11 @@ +0 0 NO ASSESSMENT +1 1 LESS THAN 50 KM +2 2 BETWEEN 50 AND 200 KM +3 3 MORE THAN 200 KM +4 4 LESS THAN 50 KM +5 5 BETWEEN 50 AND 200 KM +6 6 MORE THAN 200 KM +7 7 LESS THAN 50 KM +8 8 BETWEEN 50 AND 200 KM +9 9 MORE THAN 200 KM +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20079.table b/definitions/bufr/tables/0/wmo/42/codetables/20079.table new file mode 100644 index 000000000..587408276 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20079.table @@ -0,0 +1,4 @@ +0 0 NO SNOW OR ICE +1 1 SNOW PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2008.table b/definitions/bufr/tables/0/wmo/42/codetables/2008.table new file mode 100644 index 000000000..e669727ec --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2008.table @@ -0,0 +1,7 @@ +0 0 FIXED PLATFORM +1 1 MOBILE OFFSHORE DRILL SHIP +2 2 JACK-UP RIG +3 3 SEMI-SUBMERSIBLE PLATFORM +4 4 FLOATING PRODUCTION STORAGE AND OFFLOADING (FPSO) UNIT +5 5 LIGHT VESSEL +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20085.table b/definitions/bufr/tables/0/wmo/42/codetables/20085.table new file mode 100644 index 000000000..f929e878d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20085.table @@ -0,0 +1,3 @@ +0 0 CLEARED (CLRD//) +1 1 ALL RUNWAYS CLOSED (SNOCLO) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20086.table b/definitions/bufr/tables/0/wmo/42/codetables/20086.table new file mode 100644 index 000000000..b5433303a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20086.table @@ -0,0 +1,11 @@ +0 0 CLEAR AND DRY +1 1 DAMP +2 2 WET WITH WATER PATCHES +3 3 RIME AND FROST COVERED (DEPTH NORMALLY LESS THAN 1 MM) +4 4 DRY SNOW +5 5 WET SNOW +6 6 SLUSH +7 7 ICE +8 8 COMPACTED OR ROLLED SNOW +9 9 FROZEN RUTS OR RIDGES +15 15 MISSING OR NOT REPORTED (E.G. DUE TO RUNWAY CLEARANCE IN PROGRESS) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20087.table b/definitions/bufr/tables/0/wmo/42/codetables/20087.table new file mode 100644 index 000000000..ee7971ab6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20087.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 LESS THAN 10% OF RUNWAY COVERED +2 2 11% TO 25% OF RUNWAY COVERED +5 5 26% TO 50% OF RUNWAY COVERED +9 9 51% TO 100% OF RUNWAY COVERED +15 15 MISSING OR NOT REPORTED (E.G. DUE TO RUNWAY CLEARANCE IN PROGRESS) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20089.table b/definitions/bufr/tables/0/wmo/42/codetables/20089.table new file mode 100644 index 000000000..f616c622c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20089.table @@ -0,0 +1,11 @@ +0 0 0.00 +1 1 0.01 +89 89 0.89 +90 90 0.90 +91 91 BRAKING ACTION POOR +92 92 BRAKING ACTION MEDIUM TO POOR +93 93 BRAKING ACTION MEDIUM +94 94 BRAKING ACTION MEDIUM TO GOOD +95 95 BRAKING ACTION GOOD +99 99 UNRELIABLE +127 127 MISSING, NOT REPORTED AND/OR RUNWAY NOT OPERATIONAL diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2009.table b/definitions/bufr/tables/0/wmo/42/codetables/2009.table new file mode 100644 index 000000000..8d694b308 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2009.table @@ -0,0 +1,4 @@ +0 0 LAND CORRECTED REFLECTANCES +1 1 OCEAN BEST SOLUTION +2 2 OCEAN AVERAGE SOLUTION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20090.table b/definitions/bufr/tables/0/wmo/42/codetables/20090.table new file mode 100644 index 000000000..d13502ec4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20090.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 NACREOUS CLOUDS +2 2 NOCTILUCENT CLOUDS +3 3 CLOUDS FROM WATERFALLS +4 4 CLOUDS FROM FIRES +5 5 CLOUDS FROM VOLCANIC ERUPTIONS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20101.table b/definitions/bufr/tables/0/wmo/42/codetables/20101.table new file mode 100644 index 000000000..abe89f5fe --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20101.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 SCHISTOCERCA GREGARIA +2 2 LOCUSTA MIGRATORIA +3 3 NOMADACRIS SEPTEMFASCIATA +4 4 OEDALEUS SENEGALENSIS +5 5 ANRACRIDIUM SPP +6 6 OTHER LOCUSTS +7 7 OTHER GRASSHOPPERS +8 8 OTHER CRICKETS +9 9 SPODOPTERA EXEMPTA +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20102.table b/definitions/bufr/tables/0/wmo/42/codetables/20102.table new file mode 100644 index 000000000..6a53039e9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20102.table @@ -0,0 +1,11 @@ +0 0 GREEN +1 1 GREEN OR BLACK +2 2 BLACK +3 3 YELLOW AND BLACK +4 4 STRAW/GREY +5 5 PINK +6 6 DARK RED/BROWN +7 7 MIXED RED AND YELLOW +8 8 YELLOW +9 9 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20103.table b/definitions/bufr/tables/0/wmo/42/codetables/20103.table new file mode 100644 index 000000000..9c4f68920 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20103.table @@ -0,0 +1,11 @@ +0 0 HOPPERS (NYMPHS, LARVAE), STAGE 1 +1 1 HOPPERS (NYMPHS, LARVAE), STAGE 2 OR MIXED 1, 2 INSTARS (STAGES) +2 2 HOPPERS (NYMPHS, LARVAE), STAGE 3 OR MIXED 2, 3 INSTARS +3 3 HOPPERS (NYMPHS, LARVAE), STAGE 4 OR MIXED 3, 4 INSTARS +4 4 HOPPERS (NYMPHS, LARVAE), STAGE 5 OR MIXED 4, 5 INSTARS +5 5 HOPPERS (NYMPHS, LARVAE), STAGE MIXED, ALL OR MANY INSTARS +6 6 FLEDGLINGS (WINGS TOO SOFT FOR SUSTAINED FLIGHT) +7 7 IMMATURE ADULTS +8 8 MIXED MATURITY ADULTS +9 9 MATURE ADULTS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20104.table b/definitions/bufr/tables/0/wmo/42/codetables/20104.table new file mode 100644 index 000000000..15ca8acd4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20104.table @@ -0,0 +1,11 @@ +0 0 HOPPERS ONLY, MAINLY IN BANDS OR CLUSTERS +1 1 WINGED ADULTS IN THE VICINITY MORE THAN 10 KILOMETRES FROM POINT OF OBSERVATION +2 2 LOCUSTS IN FLIGHT, A FEW SEEN AT THE STATION +3 3 LOCUSTS AT THE STATION, MOST OF THEM ON THE GROUND +4 4 LOCUSTS, SOME ON GROUND AND OTHERS IN FLIGHT AT A HEIGHT LESS THAN 10 METRES +5 5 LOCUSTS, SOME ON GROUND AND OTHERS IN FLIGHT AT A HEIGHT GREATER THAN 10 METRES +6 6 LOCUSTS, MOST IN FLIGHT AT A HEIGHT LESS THAN 10 METRES +7 7 LOCUSTS, MOST IN FLIGHT AT A HEIGHT GREATER THAN 10 METRES +8 8 LOCUSTS, ALL OVER INFLICTING SEVERE DAMAGE TO VEGETATION, NO EXTERMINATION OPERATION +9 9 LOCUSTS, ALL OVER INFLICTING SEVERE DAMAGE TO VEGETATION, EXTERMINATION OPERATION IN PROGRESS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20105.table b/definitions/bufr/tables/0/wmo/42/codetables/20105.table new file mode 100644 index 000000000..b7406c09c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20105.table @@ -0,0 +1,12 @@ +0 0 SMALL SWARM LESS THAN 1 KM2 OR ADULTS IN GROUND, TENS OR HUNDREDS OF INDIVIDUALS VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE LESS THAN 1 HOUR AGO +1 1 SMALL SWARM LESS THAN 1 KM2 OR ADULTS IN GROUND, TENS OR HUNDREDS OF INDIVIDUALS VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE 1 TO 6 HOURS AGO +2 2 SMALL SWARM LESS THAN 1 KM2 OR ADULTS IN GROUND, TENS OR HUNDREDS OF INDIVIDUALS VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE OVER 6 HOURS AGO +3 3 MEDIUM SWARM OR SCATTERED ADULTS, SEVERAL VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE LESS THAN 1 HOUR AGO +4 4 MEDIUM SWARM OR SCATTERED ADULTS, SEVERAL VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE 1 TO 6 HOURS AGO +5 5 MEDIUM SWARM OR SCATTERED ADULTS, SEVERAL VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE OVER 6 HOURS AGO +6 6 LARGE SWARM OR ISOLATED ADULTS, SEEN SINGLY, DURATION OF PASSAGE LESS THAN 1 HOUR AGO +7 7 LARGE SWARM OR ISOLATED ADULTS, SEEN SINGLY, DURATION OF PASSAGE 1 TO 6 HOURS AGO +8 8 LARGE SWARM OR ISOLATED ADULTS, SEEN SINGLY, DURATION OF PASSAGE OVER 6 HOURS AGO +9 9 MORE THAN ONE SWARM OF LOCUSTS +10 10 SIZE OF SWARM AND/OR DURATION OF PASSAGE NOT DETERMINED OWING TO DARKNESS OR SIMILAR PHENOMENA +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20106.table b/definitions/bufr/tables/0/wmo/42/codetables/20106.table new file mode 100644 index 000000000..2a8c4a098 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20106.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 THIN DENSITY SWARM (SWARM VISIBLE ONLY WHEN NEAR ENOUGH FOR INDIVIDUAL LOCUSTS TO BE DISCERNED) +2 2 MEDIUM DENSITY SWARM +3 3 DENSE SWARM (OBSCURING NEARBY FEATURES, E.G. TREES) +4 4 ISOLATED HOPPERS SEEN SINGLY +5 5 SCATTERED HOPPERS, SEVERAL VISIBLE SIMULTANEOUSLY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20107.table b/definitions/bufr/tables/0/wmo/42/codetables/20107.table new file mode 100644 index 000000000..0bea30ad5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20107.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 GENERALLY IN THE DIRECTION NE +2 2 GENERALLY IN THE DIRECTION E +3 3 GENERALLY IN THE DIRECTION SE +4 4 GENERALLY IN THE DIRECTION S +5 5 GENERALLY IN THE DIRECTION SW +6 6 GENERALLY IN THE DIRECTION W +7 7 GENERALLY IN THE DIRECTION NW +8 8 GENERALLY IN THE DIRECTION N +9 9 SPECIFIC DIRECTION INDETERMINABLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20108.table b/definitions/bufr/tables/0/wmo/42/codetables/20108.table new file mode 100644 index 000000000..4404614cb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20108.table @@ -0,0 +1,9 @@ +0 0 BARE GROUND +1 1 DRY, PRESENCE OF FEW AND ISOLATED SHRUBS +2 2 SPARSE VEGETATION (SPROUTING) +3 3 DENSE VEGETATION (SPROUTING) +4 4 SPARSE VEGETATION (GROWING) +5 5 DENSE VEGETATION (GROWING) +6 6 SPARSE VEGETATION IN FLOWER +7 7 DENSE VEGETATION IN FLOWER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2011.table b/definitions/bufr/tables/0/wmo/42/codetables/2011.table new file mode 100644 index 000000000..487f57a4f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2011.table @@ -0,0 +1,100 @@ +0 0 RESERVED +1 1 NOT VACANT +2 2 NO RADIOSONDE - PASSIVE TARGET (E.G. REFLECTOR) +3 3 NO RADIOSONDE - ACTIVE TARGET (E.G. TRANSPONDER) +4 4 NO RADIOSONDE - PASSIVE TEMPERATURE-HUMIDITY PROFILER +5 5 NO RADIOSONDE - ACTIVE TEMPERATURE-HUMIDITY PROFILER +6 6 NO RADIOSONDE - RADIO-ACOUSTIC SOUNDER +7 7 NOT VACANT +8 8 NO RADIOSONDE -... (RESERVED) +9 9 NO RADIOSONDE - SYSTEM UNKNOWN OR NOT SPECIFIED +10 10 SIPPICAN LMS5 W/CHIP THERMISTOR, DUCT MOUNTED CAPACITANCE RELATIVE HUMIDITY SENSOR AND DERIVED PRESSURE FROM GPS HEIGHT +11 11 SIPPICAN LMS6 W/CHIP THERMISTOR, EXTERNAL BOOM MOUNTED CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT +12 12 JIN YANG RSG-20A WITH DERIVED PRESSURE FROM GPS HEIGHT/GL-5000P (REPUBLIC OF KOREA) +13 13 VAISALA RS92/MARWIN MW32 (FINLAND) +14 14 VAISALA RS92/DIGICORA MW41 (FINLAND) +15 15 PAZA-12M/RADIOTHEODOLITE-UL (UKRAINE) +16 16 PAZA-22/AVK-1 (UKRAINE) +17 17 GRAW DFM-09 (GERMANY) +18 18 NOT VACANT +19 19 POLUS-MRZ-N1 (RUSSIAN FEDERATION) +20 20 NOT VACANT +21 21 JIN YANG 1524LA LORAN-C/GL5000 (REPUBLIC OF KOREA) +22 22 MEISEI RS-11G GPS RADIOSONDE W/THERMISTOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT (JAPAN) +23 23 VAISALA RS41/DIGICORA MW41 (FINLAND) +24 24 VAISALA RS41/AUTOSONDE (FINLAND) +25 25 VAISALA RS41/MARWIN MW32 (FINLAND) +26 26 METEOLABOR SRS-C34/ARGUS 37 (SWITZERLAND) +27 27 NOT VACANT +28 28 AVK - AK2-02 (RUSSIAN FEDERATION) +29 29 MARL-A OR VEKTOR-M - AK2-02 (RUSSIAN FEDERATION) +30 30 MEISEI RS-06G (JAPAN) +31 31 TAIYUAN GTS1-1/GFE(L) (CHINA ) +32 32 SHANGHAI GTS1/GFE(L) (CHINA) +33 33 NANJING GTS1-2/GFE(L) (CHINA) +34 34 IMET-4 GPS RADIOSONDE (USA) +35 35 MEISEI IMS-100 GPS RADIOSONDE W/THERMISTOR SENSOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT (JAPAN) +36 36 MEISEI IMDS-17 GPS DROPSONDE W/THERMISTOR SENSOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND CAPACITANCE PRESSURE SENSOR (JAPAN) +37 37 NOT VACANT +38 38 WEATHEX WXR-301D WITH DERIVED PRESSURE FROM GPS (REPUBLIC OF KOREA) +39 39 SPRENGER E076 (GERMANY) +40 40 SPRENGER E084 (GERMANY) +41 41 VAISALA RS41 WITH PRESSURE DERIVED FROM GPS HEIGHT/DIGICORA MW41 (FINLAND) +42 42 VAISALA RS41 WITH PRESSURE DERIVED FROM GPS HEIGHT/AUTOSONDE (FINLAND) +43 43 NANJING DAQIAO XGP-3G (CHINA)* +44 44 TIANJIN HUAYUNTIANYI GTS(U)1 (CHINA)* +45 45 BEIJING CHANGFENG CF-06 (CHINA)* +46 46 SHANGHAI CHANGWANG GTS3 (CHINA)* +47 47 NOT VACANT +48 48 PAZA-22M/MARL-A +49 49 NOT VACANT +50 50 METEOLABOR SRS-C50/ARGUS (SWITZERLAND) +51 51 NOT VACANT +52 52 VAISALA RS92-NGP/INTERMET IMS-2000 (UNITED STATES) +53 53 AVK - I-2012 (RUSSIAN FEDERATION) +54 54 GRAW DFM-17 (GERMANY) +55 55 MEISEI RS-01G (JAPAN) +56 56 M2K2 (FRANCE) +57 57 MODEM M2K2-DC (FRANCE) +58 58 AVK-BAR (RUSSIAN FEDERATION) +59 59 MODEM M2K2-R 1680 MHZ RDF RADIOSONDE WITH PRESSURE SENSOR CHIP (FRANCE) +60 60 MARL-A OR VEKTOR-M - I-2012 (RUSSIAN FEDERATION) +61 61 NOT VACANT +62 62 MARL-A OR VEKTOR-M - MRZ-3MK (RUSSIAN FEDERATION) +63 63 MODEM M20 RADIOSONDE W/THERMISTOR SENSOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT (FRANCE) +64 64 MODEM PILOTSONDE GPS RADIOSONDE (FRANCE) +65 65 METEOSIS MTS-01 (TURKIYE) +66 66 VACANT +67 67 VAISALA RS80/DIGICORA III (FINLAND) +68 68 AVK-RZM-2 (RUSSIAN FEDERATION) +69 69 MARL-A OR VEKTOR-M-RZM-2 (RUSSIAN FEDERATION) +70 70 VAISALA RS92/STAR (FINLAND) +71 71 VAISALA RS90/LORAN/DIGICORA I, II OR MARWIN (FINLAND) +72 72 VAISALA RS90/PC-CORA (FINLAND) +73 73 МARL-A (RUSSIAN FEDERATION) - ASPAN-15 (KAZAKHSTAN) +74 74 VAISALA RS90/STAR (FINLAND) +75 75 AVK-MRZ-ARMA (RUSSIAN FEDERATION) +76 76 AVK-RF95-ARMA (RUSSIAN FEDERATION) +77 77 MODEM GPSONDE M10 (FRANCE) +78 78 VAISALA RS90/DIGICORA III (FINLAND) +79 79 VAISALA RS92/DIGICORA I,II OR MARWIN (FINLAND) +80 80 VAISALA RS92/DIGICORA III (FINLAND) +81 81 VAISALA RS92/AUTOSONDE (FINLAND) +82 82 LOCKHEED MARTIN LMS-6 W/CHIP THERMISTOR; EXTERNAL BOOM MOUNTED POLYMER CAPACITIVE RELATIVE HUMIDITY SENSOR; CAPACITIVE PRESSURE SENSOR AND GPS WIND +83 83 VAISALA RS92-D/INTERMET IMS 1500 W/SILICON CAPACITIVE PRESSURE SENSOR, CAPACITIVE WIRE TEMPERATURE SENSOR, TWIN THIN-FILM HEATED POLYMER CAPACITIVE RELATIVE HUMIDITY SENSOR AND RDF WIND +84 84 IMET-54/IMET-3200/3400 GPS RADIOSONDE WITH DERIVED PRESSURE FROM GPS HEIGHT (SOUTH AFRICA) +85 85 SIPPICAN MARK IIA WITH CHIP THERMISTOR, CARBON ELEMENT AND DERIVED PRESSURE FROM GPS HEIGHT +86 86 SIPPICAN MARK II WITH CHIP THERMISTOR, PRESSURE AND CARBON ELEMENT +87 87 SIPPICAN MARK IIA WITH CHIP THERMISTOR, PRESSURE AND CARBON ELEMENT +88 88 MARL-A OR VEKTOR-M-MRZ (RUSSIAN FEDERATION) +89 89 MARL-A OR VEKTOR-M-BAR (RUSSIAN FEDERATION) +90 90 RADIOSONDE NOT SPECIFIED OR UNKNOWN +91 91 PRESSURE ONLY RADIOSONDE +92 92 PRESSURE ONLY RADIOSONDE PLUS TRANSPONDER +93 93 PRESSURE ONLY RADIOSONDE PLUS RADAR REFLECTOR +94 94 NO PRESSURE RADIOSONDE PLUS TRANSPONDER +95 95 NO PRESSURE RADIOSONDE PLUS RADAR REFLECTOR +96 96 DESCENDING RADIOSONDE +97 97 IMET-2/IMET-1500 RDF RADIOSONDE WITH PRESSURE SENSOR CHIP (SOUTH AFRICA) +98 98 IMET-2/IMET-1500 GPS RADIOSONDE WITH DERIVED PRESSURE FROM GPS HEIGHT (SOUTH AFRICA) +99 99 IMET-2/IMET-3200 GPS RADIOSONDE WITH DERIVED PRESSURE FROM GPS HEIGHT (SOUTH AFRICA) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20119.table b/definitions/bufr/tables/0/wmo/42/codetables/20119.table new file mode 100644 index 000000000..4a4b40f87 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20119.table @@ -0,0 +1,4 @@ +0 0 NOT DEFINED +1 1 POSITIVE +2 2 NEGATIVE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20124.table b/definitions/bufr/tables/0/wmo/42/codetables/20124.table new file mode 100644 index 000000000..f78eacb17 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20124.table @@ -0,0 +1,4 @@ +0 0 NOT DEFINED +1 1 LIGHTNING STROKE +2 2 LIGHTNING FLASH, BY MANUAL OBSERVATION, OR IF EQUIPMENT INSENSITIVE TO STROKE RESOLUTION +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2013.table b/definitions/bufr/tables/0/wmo/42/codetables/2013.table new file mode 100644 index 000000000..91ce6501d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2013.table @@ -0,0 +1,11 @@ +0 0 NO CORRECTION +1 1 CIMO SOLAR CORRECTED AND CIMO INFRARED CORRECTED +2 2 CIMO SOLAR CORRECTED AND INFRARED CORRECTED +3 3 CIMO SOLAR CORRECTED ONLY +4 4 SOLAR AND INFRARED CORRECTED AUTOMATICALLY BY RADIOSONDE SYSTEM +5 5 SOLAR CORRECTED AUTOMATICALLY BY RADIOSONDE SYSTEM +6 6 SOLAR AND INFRARED CORRECTED AS SPECIFIED BY COUNTRY +7 7 SOLAR CORRECTED AS SPECIFIED BY COUNTRY +8 8 SOLAR AND INFRARED CORRECTED AS SPECIFIED BY GRUAN +9 9 SOLAR CORRECTED AS SPECIFIED BY GRUAN +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20136.table b/definitions/bufr/tables/0/wmo/42/codetables/20136.table new file mode 100644 index 000000000..42c012b50 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20136.table @@ -0,0 +1,44 @@ +0 0 ISOLATED CUMULUS HUMILIS AND/OR CUMULUS MEDIOCRIS OF VERTICAL DEVELOPMENT +1 1 NUMEROUS CUMULUS HUMILIS AND/OR CUMULUS MEDIOCRIS OF VERTICAL DEVELOPMENT +2 2 ISOLATED CUMULUS CONGESTUS OF VERTICAL DEVELOPMENT +3 3 NUMEROUS CUMULUS CONGESTUS OF VERTICAL DEVELOPMENT +4 4 ISOLATED CUMULONIMBUS OF VERTICAL DEVELOPMENT +5 5 NUMEROUS CUMULONIMBUS OF VERTICAL DEVELOPMENT +6 6 ISOLATED CUMULUS AND CUMULONIMBUS OF VERTICAL DEVELOPMENT +7 7 NUMEROUS CUMULUS AND CUMULONIMBUS OF VERTICAL DEVELOPMENT +10 10 RESERVED +11 11 ISOLATED OROGRAPHIC CLOUDS, PILEUS, INCUS, FORMING +12 12 ISOLATED OROGRAPHIC CLOUDS, PILEUS, INCUS, NOT CHANGING +13 13 ISOLATED OROGRAPHIC CLOUDS, PILEUS, INCUS, DISSOLVING +14 14 IRREGULAR BANKS OF OROGRAPHIC CLOUD, FOEHN BANK, ETC., FORMING +15 15 IRREGULAR BANKS OF OROGRAPHIC CLOUD, FOEHN BANK, ETC., NOT CHANGING +16 16 IRREGULAR BANKS OF OROGRAPHIC CLOUD, FOEHN BANK, ETC., DISSOLVING +17 17 COMPACT LAYER OF OROGRAPHIC CLOUD, FOEHN BANK, ETC., FORMING +18 18 COMPACT LAYER OF OROGRAPHIC CLOUD, FOEHN BANK, ETC., NOT CHANGING +19 19 COMPACT LAYER OF OROGRAPHIC CLOUD, FOEHN BANK, ETC., DISSOLVING +20 20 ALL MOUNTAINS OPEN, ONLY SMALL AMOUNTS OF CLOUD PRESENT +21 21 MOUNTAINS PARTLY COVERED WITH DETACHED CLOUDS (NOT MORE THAN HALF THE PEAKS CAN BE SEEN) +22 22 ALL MOUNTAIN SLOPES COVERED, PEAKS AND PASSES FREE +23 23 MOUNTAINS OPEN ON OBSERVER’S SIDE (ONLY SMALL AMOUNTS OF CLOUD PRESENT), BUT A CONTINUOUS WALL OF CLOUD ON THE OTHER SIDE +24 24 CLOUDS LOW ABOVE THE MOUNTAINS, BUT ALL SLOPES AND MOUNTAINS OPEN (ONLY SMALL AMOUNTS OF CLOUD ON THE SLOPES) +25 25 CLOUDS LOW ABOVE THE MOUNTAINS, PEAKS PARTLY COVERED BY PRECIPITATION TRAILS OR CLOUDS +26 26 ALL PEAKS COVERED BUT PASSES OPEN, SLOPES EITHER OPEN OR COVERED +27 27 MOUNTAINS GENERALLY COVERED BUT SOME PEAKS FREE, SLOPES WHOLLY OR PARTIALLY COVERED +28 28 ALL PEAKS, PASSES AND SLOPES COVERED +29 29 MOUNTAINS CANNOT BE SEEN OWING TO DARKNESS, FOG, SNOWSTORM, PRECIPITATION, ETC. +35 35 NON-PERSISTENT CONDENSATION TRAILS +36 36 PERSISTENT CONDENSATION TRAILS COVERING LESS THAN 1/8 OF THE SKY +37 37 PERSISTENT CONDENSATION TRAILS COVERING 1/8 OF THE SKY +38 38 PERSISTENT CONDENSATION TRAILS COVERING 2/8 OF THE SKY +39 39 PERSISTENT CONDENSATION TRAILS COVERING 3/8 OR MORE OF THE SKY +40 40 NO CLOUD OR MIST OBSERVED FROM A HIGHER LEVEL +41 41 MIST, CLEAR ABOVE OBSERVED FROM A HIGHER LEVEL +42 42 FOG PATCHES OBSERVED FROM A HIGHER LEVEL +43 43 LAYER OF SLIGHT FOG OBSERVED FROM A HIGHER LEVEL +44 44 LAYER OF THICK FOG OBSERVED FROM A HIGHER LEVEL +45 45 SOME ISOLATED CLOUDS OBSERVED FROM A HIGHER LEVEL +46 46 ISOLATED CLOUDS AND FOG BELOW OBSERVED FROM A HIGHER LEVEL +47 47 MANY ISOLATED CLOUDS OBSERVED FROM A HIGHER LEVEL +48 48 SEA OF CLOUDS OBSERVED FROM A HIGHER LEVEL +49 49 BAD VISIBILITY OBSCURING THE DOWNWARD VIEW OBSERVED FROM A HIGHER LEVEL +511 511 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20137.table b/definitions/bufr/tables/0/wmo/42/codetables/20137.table new file mode 100644 index 000000000..adda88054 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20137.table @@ -0,0 +1,11 @@ +0 0 NO CHANGE +1 1 CUMULIFICATION +2 2 SLOW ELEVATION +3 3 RAPID ELEVATION +4 4 ELEVATION AND STRATIFICATION +5 5 SLOW LOWERING +6 6 RAPID LOWERING +7 7 STRATIFICATION +8 8 STRATIFICATION AND LOWERING +9 9 RAPID CHANGE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20138.table b/definitions/bufr/tables/0/wmo/42/codetables/20138.table new file mode 100644 index 000000000..ed9b315fc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20138.table @@ -0,0 +1,9 @@ +0 0 DRY +1 1 MOIST +2 2 WET +3 3 RIME +4 4 SNOW +5 5 ICE +6 6 GLAZE +7 7 NOT DRY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20139.table b/definitions/bufr/tables/0/wmo/42/codetables/20139.table new file mode 100644 index 000000000..2e5658c3d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20139.table @@ -0,0 +1,7 @@ +0 0 CLEAR +1 1 SINGLE LAYER WATER +2 2 SINGLE LAYER ICE +3 3 2-LAYERS (WATER/ICE) +4 4 SINGLE LAYER ASH +5 5 2-LAYERS ASH +15 15 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2014.table b/definitions/bufr/tables/0/wmo/42/codetables/2014.table new file mode 100644 index 000000000..bc5c5fcb8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2014.table @@ -0,0 +1,51 @@ +0 0 NO WIND FINDING +1 1 AUTOMATIC WITH AUXILIARY OPTICAL DIRECTION FINDING +2 2 AUTOMATIC WITH AUXILIARY RADIO DIRECTION FINDING +3 3 AUTOMATIC WITH AUXILIARY RANGING +4 4 NOT USED +5 5 AUTOMATIC WITH MULTIPLE VLF-OMEGA SIGNALS +6 6 AUTOMATIC CROSS CHAIN LORAN-C +7 7 AUTOMATIC WITH AUXILIARY WIND PROFILER +8 8 AUTOMATIC SATELLITE NAVIGATION +19 19 TRACKING TECHNIQUE NOT SPECIFIED +20 20 VESSEL STOPPED +21 21 VESSEL DIVERTED FROM ORIGINAL DESTINATION +22 22 VESSEL'S ARRIVAL DELAYED +23 23 CONTAINER DAMAGED +24 24 POWER FAILURE TO CONTAINER +29 29 OTHER PROBLEMS +30 30 MAJOR POWER PROBLEMS +31 31 UPS INOPERATIVE +32 32 RECEIVER HARDWARE PROBLEMS +33 33 RECEIVER SOFTWARE PROBLEMS +34 34 PROCESSOR HARDWARE PROBLEMS +35 35 PROCESSOR SOFTWARE PROBLEMS +36 36 NAVAID SYSTEM DAMAGED +37 37 SHORTAGE OF LIFTING GAS +38 38 RESERVED +39 39 OTHER PROBLEMS +40 40 MECHANICAL DEFECT +41 41 MATERIAL DEFECT (HAND LAUNCHER) +42 42 POWER FAILURE +43 43 CONTROL FAILURE +44 44 PNEUMATIC/HYDRAULIC FAILURE +45 45 OTHER PROBLEMS +46 46 COMPRESSOR PROBLEMS +47 47 BALLOON PROBLEMS +48 48 BALLOON RELEASE PROBLEMS +49 49 LAUNCHER DAMAGED +50 50 R/S RECEIVER ANTENNA DEFECT +51 51 NAVAID ANTENNA DEFECT +52 52 R/S RECEIVER CABLING (ANTENNA) DEFECT +53 53 NAVAID ANTENNA CABLING DEFECT +59 59 OTHER PROBLEMS +60 60 ASAP COMMUNICATIONS DEFECT +61 61 COMMUNICATIONS FACILITY REJECTED DATA +62 62 NO POWER AT TRANSMITTING ANTENNA +63 63 ANTENNA CABLE BROKEN +64 64 ANTENNA CABLE DEFECT +65 65 MESSAGE TRANSMITTED POWER BELOW NORMAL +69 69 OTHER PROBLEMS +70 70 ALL SYSTEMS IN NORMAL OPERATION +99 99 STATUS OF SYSTEM AND ITS COMPONENTS NOT SPECIFIED +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/20143.table b/definitions/bufr/tables/0/wmo/42/codetables/20143.table new file mode 100644 index 000000000..849964a75 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/20143.table @@ -0,0 +1,4 @@ +0 0 NO LIQUID CLOUD +1 1 LIQUID CLOUD PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2015.table b/definitions/bufr/tables/0/wmo/42/codetables/2015.table new file mode 100644 index 000000000..7b0ccaf86 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2015.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 PRESSURE ONLY RADIOSONDE +2 2 PRESSURE ONLY RADIOSONDE PLUS TRANSPONDER +3 3 PRESSURE ONLY RADIOSONDE PLUS RADAR REFLECTOR +4 4 NO-PRESSURE RADIOSONDE PLUS TRANSPONDER +5 5 NO-PRESSURE RADIOSONDE PLUS RADAR REFLECTOR +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2016.table b/definitions/bufr/tables/0/wmo/42/codetables/2016.table new file mode 100644 index 000000000..4a3022611 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2016.table @@ -0,0 +1,4 @@ +1 1 TRAIN REGULATOR +2 2 LIGHT UNIT +3 3 PARACHUTE +4 4 ROOFTOP RELEASE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2017.table b/definitions/bufr/tables/0/wmo/42/codetables/2017.table new file mode 100644 index 000000000..7fac2e10f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2017.table @@ -0,0 +1,6 @@ +0 0 NO CORRECTIONS +1 1 TIME LAG CORRECTION PROVIDED BY THE MANUFACTURER +2 2 SOLAR RADIATION CORRECTION PROVIDED BY THE MANUFACTURER +3 3 SOLAR RADIATION AND TIME LAG CORRECTION PROVIDED BY THE MANUFACTURER +7 7 GRUAN SOLAR RADIATION AND TIME LAG CORRECTION +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2019.table b/definitions/bufr/tables/0/wmo/42/codetables/2019.table new file mode 100644 index 000000000..2867bee97 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2019.table @@ -0,0 +1,414 @@ +7 7 SSH +8 8 SSM/T +9 9 SSM/T2 +10 10 AATSR +11 11 ATSR +12 12 ATSR-2 +13 13 MWR +14 14 PMR +15 15 SCR +30 30 ARGOS +40 40 LASER REFLECTORS +41 41 DORIS +42 42 DORIS-NG +47 47 POSEIDON-1 (SSALT1) +48 48 POSEIDON-2 (SSALT2) +49 49 POSEIDON-3 (SSALT3) +50 50 ATSR/M +51 51 HRG +52 52 HRV +53 53 HRVIR +54 54 SCARAB/MV2 +55 55 POLDER +56 56 IIR +57 57 POSEIDON-4 +60 60 VEGETATION +61 61 WINDII +62 62 ALTIKA +63 63 SWIM +80 80 RADARSAT DTT +81 81 RADARSAT TTC +85 85 SAR (CSA) +90 90 MOPITT +91 91 OSIRIS +92 92 ACE-FTS +97 97 PANCHROMATIC IMAGER +98 98 GPS RECEIVER +102 102 CHAMP GPS SOUNDER +103 103 IGOR +104 104 TRI-G +116 116 CHAMP GRAVITY PACKAGE (ACCELEROMETER+GPS) +117 117 CHAMP MAGNETOMETRY PACKAGE (1 SCALAR+2 VECTOR MAGNETOMETER) +120 120 ENVISAT COMMS +121 121 ERS COMMS +130 130 ALADIN +131 131 ATLID +140 140 AMI/SAR/IMAGE +141 141 AMI/SAR/WAVE +142 142 AMI/SCATTEROMETER +143 143 ASAR +144 144 ASAR +145 145 ASAR +146 146 CPR +147 147 RA-2/MWR +148 148 RA/MWR +150 150 SCATTEROMETER +151 151 SAR-C +152 152 SW +161 161 MIPAS +162 162 MWR-2 +163 163 SOPRANO +170 170 GOME +172 172 GOMOS +173 173 ALTIUS +174 174 MERIS +175 175 SCIAMACHY +176 176 MIRAS +177 177 SIRAL +178 178 SRAL +179 179 OLCI +180 180 SLSTR +181 181 METEOSAT COMMS +182 182 MSG COMMS +190 190 ASCAT +200 200 GERB +202 202 GRAS +203 203 MHS +205 205 MVIRI +207 207 SEVIRI +208 208 VIRI +209 209 MWR +210 210 FCI +211 211 LI +212 212 IRS +213 213 S4 +220 220 GOME-2 +221 221 IASI +230 230 3MI +231 231 IASI-NG +232 232 METIMAGE +233 233 MWS +234 234 RO +235 235 S5/UVNS +236 236 ICI +237 237 MWI +238 238 SCA +240 240 DCP +245 245 CCD +246 246 HSB +248 248 OBA +250 250 WFI +255 255 IRMSS +260 260 BSS & FSS TRANSPONDERS +261 261 DRT-S&R +262 262 INSAT COMMS +268 268 HR-PAN +269 269 MSMR +270 270 VHRR +271 271 WIFS +275 275 AWIFS +276 276 LISS-I +277 277 LISS-II +278 278 LISS-III +279 279 LISS-IV +284 284 PAN +285 285 MOS +286 286 OCM +287 287 ROSA +288 288 SCAT +289 289 IMG +290 290 MTSAT COMMS +291 291 HIMAWARI COMMS +294 294 JAMI +295 295 IMAGER/MTSAT-2 +296 296 VISSR +297 297 AHI +300 300 GLAS +301 301 LRA +302 302 MBLA +303 303 CALIOP +309 309 CPR (CLOUDSAT) +312 312 NSCAT +313 313 SEAWINDS +314 314 RAPIDSCAT +330 330 ACRIM +334 334 BUV +336 336 ALI +347 347 ASTER +348 348 CERES-2 +351 351 GPSDR +353 353 HIRDLS +354 354 HRDI +356 356 LIS +358 358 PEM +359 359 SEAWIFS +360 360 SUSIM (UARS) +363 363 SBUV/1 +365 365 TMI +366 366 JMR +367 367 AMR +368 368 MW RADIOMETER +369 369 LIMS +370 370 LRIR +371 371 EPIC +372 372 NISTAR +373 373 PLASMA-MAG +374 374 XPS +375 375 VIRS +376 376 POLDER II +377 377 TIM +379 379 WFC +382 382 CLAES +383 383 HALOE +384 384 ISAMS +385 385 MISR +386 386 MLS +387 387 MLS (EOS-AURA) +389 389 MODIS +393 393 HAIRS +394 394 OMI +395 395 ATMOSPHERIC CORRECTOR +396 396 HYPERION +397 397 HRIR +398 398 MRIR +399 399 SAGE I +400 400 SAGE II +401 401 SAGE III +402 402 SAMS +403 403 SAM-II +404 404 IRIS +405 405 GIFTS +420 420 AIRS +421 421 SIRS-A +422 422 SIRS-B +426 426 SOLSTICE +430 430 TES +431 431 TOMS +432 432 OCO +433 433 TMS +434 434 SMAP +435 435 TEMPO +450 450 ADEOS COMMS +451 451 DCS (JAXA) +453 453 GMS COMMS +454 454 JERS-1 COMMS +460 460 RIS +461 461 PR +462 462 SAR +470 470 PALSAR +478 478 AMSR2 +479 479 AMSR-E +480 480 PRISM (ALOS) +481 481 AMSR +482 482 AVNIR +483 483 AVNIR-2 +484 484 GLI +485 485 MESSR +486 486 MSR +487 487 OCTS +488 488 OPS +489 489 VISSR (GMS-5) +490 490 VTIR +510 510 ILAS-I +511 511 ILAS-II +512 512 IMG +514 514 SEM +515 515 SOFIS +516 516 TANSO-FTS +517 517 TANSO-CAI +518 518 DPR +519 519 GMI +520 520 SMMR +521 521 TANSO-FTS2 +526 526 CION-A +527 527 CION-B +528 528 CION-C +529 529 CION-D +530 530 SGNOS-A +531 531 SGNOS-B +532 532 SGNOS-C +533 533 SGNOS-D +534 534 PYXIS-A +535 535 PYXIS-B +540 540 DCS (NOAA) +541 541 GOES COMMS +542 542 LANDSAT COMMS +543 543 NOAA COMMS +544 544 S&R (GOES) +545 545 S&R (NOAA) +546 546 WEFAX +547 547 SEM (GOES) +550 550 SSM +551 551 SSJ/4 +552 552 SSIES-2 +553 553 SSB/X-2 +570 570 AMSU-A +574 574 AMSU-B +580 580 ATOVS (HIRS/3 + AMSU + AVHRR/3) +590 590 AVHRR/2 +591 591 AVHRR/3 +592 592 AVHRR/4 +600 600 ERBE +601 601 ETM+ +604 604 HIRS/1 +605 605 HIRS/2 +606 606 HIRS/3 +607 607 HIRS/4 +615 615 IMAGER +616 616 VIIRS +617 617 ABI +618 618 GLM +620 620 CRIRS/NP +621 621 ATMS +622 622 MSS +623 623 MSU +624 624 SBUV/2 +625 625 SBUV/3 +626 626 SOUNDER +627 627 SSU +628 628 TM +629 629 TOVS (HIRS/2 + MSU + SSU) +630 630 VAS +631 631 SSZ +645 645 SEM +650 650 MVIRSR (10 CHANNEL) +651 651 MVIRSR (3 CHANNEL) +652 652 MVIRSR (5 CHANNEL) +670 670 RLSBO +680 680 MSU-EU +681 681 MSU-UM +682 682 RM-08 +683 683 SU-UMS +684 684 SU-VR +685 685 TRASSER +686 686 SCAT +687 687 ALT +688 688 MWI +689 689 GEMS +700 700 KONDOR-2 +701 701 BRK +710 710 ALISSA +712 712 BALKAN-2 LIDAR +715 715 MK-4 +716 716 MK-4M +730 730 GREBEN +731 731 SAR-10 +732 732 SAR-3 +733 733 SAR-70 +740 740 SLR-3 +745 745 TRAVERS SAR +750 750 174-K +751 751 BTVK +752 752 CHAIKA +753 753 DELTA-2 +755 755 IKAR-D +756 756 IKAR-N +757 757 IKAR-P +760 760 ISP +761 761 KFA-1000 +762 762 KFA-200 +763 763 KFA-3000 +770 770 KLIMAT +771 771 KLIMAT-2 +775 775 MIRAS +776 776 MIVZA +777 777 MIVZA-M +780 780 MR-2000 +781 781 MR-2000M +785 785 MR-900 +786 786 MR-900B +790 790 MSU-E +791 791 MSU-E1 +792 792 MSU-E2 +793 793 MSU-M +794 794 MSU-S +795 795 MSU-SK +796 796 MSU-V +810 810 MTZA +815 815 MZOAS +820 820 R-225 +821 821 R-400 +822 822 R-600 +830 830 RMS +835 835 TV CAMERA +836 836 SILVA +840 840 SROSMO +850 850 BUFS-2 +851 851 BUFS-4 +855 855 ISTOK-1 +856 856 SFM-2 +857 857 DOPI +858 858 KGI-4 +859 859 OZON-M +860 860 RMK-2 +861 861 MTVZA-GY +862 862 IKFS-2 +900 900 MAXIE +901 901 OLS +905 905 SSM/I +906 906 SSM/T-1 +907 907 SSM/T-2 +908 908 SSMIS +909 909 VTPR +910 910 SXI +930 930 EHIC +931 931 X-RAY ASTRONOMY PAYLOAD +932 932 IVISSR (FY-2) +933 933 IRAS +934 934 MWAS +935 935 IMWAS +936 936 MWHS +937 937 MVIRS +938 938 MWRI +940 940 MTVZA-OK +941 941 SAPHIR +942 942 MADRAS +943 943 SCAT (ON CFOSAT) +944 944 ALT +945 945 TSIS +946 946 CMIS +947 947 OMPS-NADIR +948 948 GPSOS +949 949 SESS +950 950 VIRR +951 951 TOM +952 952 OP +953 953 MWHS-2 +954 954 MWTS-2 +955 955 HIRAS +956 956 SBUS +957 957 TOU +958 958 GNOS +959 959 SMR +960 960 OMPS-LIMB +961 961 AGRI-1 +962 962 GIIRS-1 +963 963 LMI +964 964 SEP +965 965 GNOS-2 +966 966 MWTS-3 +967 967 GIIRS-2 +968 968 GIIRS-3 +969 969 GIIRS-4 +970 970 GIIRS-5 +971 971 GIIRS-6 +972 972 AGRI-2 +973 973 AGRI-3 +974 974 AGRI-4 +975 975 AGRI-5 +976 976 AGRI-6 +977 977 GHI +980 980 AMI +981 981 MI +982 982 KSEM +983 983 HIRAS-2 +984 984 HIRAS-3 +985 985 MWRI-1 +986 986 MWRI-2 +987 987 MWRI-RM +990 990 SMMR +991 991 THIR +992 992 NEMS +993 993 SCAMS +994 994 ESMR +2047 2047 diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2020.table b/definitions/bufr/tables/0/wmo/42/codetables/2020.table new file mode 100644 index 000000000..fd3c93626 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2020.table @@ -0,0 +1,37 @@ +0 0 NIMBUS +1 1 VTPR +2 2 TIROS 1 (TIROS, NOAA-6 TO NOAA-13) +3 3 TIROS 2 (NOAA-14 ONWARDS) +10 10 EOS +20 20 GPM-CORE +31 31 DMSP +61 61 EUMETSAT POLAR SYSTEM (EPS) +62 62 EUMETSAT POLAR SYSTEM (EPS-SG) +91 91 ERS +92 92 SENTINEL-3 +121 121 ADEOS +122 122 GCOM +241 241 GOES +251 251 TROPICS +261 261 JASON +271 271 GMS +272 272 MTSAT +273 273 HIMAWARI +281 281 COMS +301 301 INSAT +331 331 METEOSAT OPERATIONAL PROGRAMME (MOP) +332 332 METEOSAT TRANSITIONAL PROGRAMME (MTP) +333 333 METEOSAT SECOND GENERATION PROGRAMME (MSG) +334 334 METEOSAT THIRD GENERATION PROGRAMME (MTG) +351 351 GOMS +352 352 METEOR-M N2 +380 380 FY-1 +381 381 FY-2 +382 382 FY-3 +383 383 FY-4 +401 401 GPS +402 402 GLONASS +403 403 GALILEO +404 404 BDS (BEIDOU NAVIGATION SATELLITE SYSTEM) +405 405 QUASI-ZENITH SATELLITE SYSTEM (QZSS) +511 511 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2021.table b/definitions/bufr/tables/0/wmo/42/codetables/2021.table new file mode 100644 index 000000000..b95fdc989 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2021.table @@ -0,0 +1,8 @@ +1 1 HIGH-RESOLUTION INFRARED SOUNDER (HIRS) +2 2 MICROWAVE SOUNDING UNIT (MSU) +3 3 STRATOSPHERIC SOUNDING UNIT (SSU) +4 4 AMI (ADVANCED MICROWAVE INSTRUMENT) WIND MODE +5 5 AMI (ADVANCED MICROWAVE INSTRUMENT) WAVE MODE +6 6 AMI (ADVANCED MICROWAVE INSTRUMENT) IMAGE MODE +7 7 RADAR ALTIMETER +8 8 ATSR (ALONG-TRACK SCANNING RADIOMETER) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2022.table b/definitions/bufr/tables/0/wmo/42/codetables/2022.table new file mode 100644 index 000000000..5068e7fd7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2022.table @@ -0,0 +1,5 @@ +1 1 PROCESSING TECHNIQUE NOT DEFINED +2 2 AUTOMATED STATISTICAL REGRESSION +3 3 CLEAR PATH +4 4 PARTLY CLOUDY PATH +5 5 CLOUDY PATH diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2023.table b/definitions/bufr/tables/0/wmo/42/codetables/2023.table new file mode 100644 index 000000000..be7eb84e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2023.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 WIND DERIVED FROM CLOUD MOTION OBSERVED IN THE INFRARED CHANNEL +2 2 WIND DERIVED FROM CLOUD MOTION OBSERVED IN THE VISIBLE CHANNEL +3 3 WIND DERIVED FROM CLOUD MOTION OBSERVED IN THE WATER VAPOUR CHANNEL +4 4 WIND DERIVED FROM MOTION OBSERVED IN A COMBINATION OF SPECTRAL CHANNELS +5 5 WIND DERIVED FROM MOTION OBSERVED IN THE WATER VAPOUR CHANNEL IN CLEAR AIR +6 6 WIND DERIVED FROM MOTION OBSERVED IN THE OZONE CHANNEL +7 7 WIND DERIVED FROM MOTION OBSERVED IN WATER VAPOUR CHANNEL (CLOUD OR CLEAR AIR NOT SPECIFIED) +13 13 ROOT-MEAN-SQUARE +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2024.table b/definitions/bufr/tables/0/wmo/42/codetables/2024.table new file mode 100644 index 000000000..00ec80ef6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2024.table @@ -0,0 +1,4 @@ +0 0 RESERVED +1 1 TABLE WITH FULL RANGE OF HUMIDITY VARIATION IN LAYER +2 2 REGRESSION TECHNIQUE ON 2 HUMIDITY VALUES IN LAYER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2025.table b/definitions/bufr/tables/0/wmo/42/codetables/2025.table new file mode 100644 index 000000000..045416aac --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2025.table @@ -0,0 +1,16 @@ +1 1 RESERVED +2 2 HIRS +3 3 MSU +6 6 HIRS +7 7 MSU +10 10 HIRS (1, 2, 3, 8, 9, 16, 17) +11 11 HIRS (1, 2, 3, 9, 17) +12 12 MSU +15 15 HIRS +16 16 HIRS* +17 17 MSU +18 18 SKINTK (OCEAN ONLY) +21 21 HIRS +22 22 SSU +23 23 MSU (3, 4) +24 24 RESERVED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2030.table b/definitions/bufr/tables/0/wmo/42/codetables/2030.table new file mode 100644 index 000000000..2777bbcd3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2030.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 ADCP (ACOUSTIC DOPPLER CURRENT PROFILER) +2 2 GEK (GEOMAGNETIC ELECTROKINETOGRAPH) +3 3 SHIP'S SET AND DRIFT DETERMINED BY FIXES 3-6 HOURS APART +4 4 SHIP'S SET AND DRIFT DETERMINED BY FIXES MORE THAN 6 HOURS BUT LESS THAN 12 HOURS APART +5 5 DRIFT OF BUOY +6 6 ADCP (ACOUSTIC DOPPLER CURRENT PROFILER) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2031.table b/definitions/bufr/tables/0/wmo/42/codetables/2031.table new file mode 100644 index 000000000..c096d370c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2031.table @@ -0,0 +1,21 @@ +0 0 RESERVED +1 1 INSTANTANEOUS +2 2 AVERAGED OVER 3 MIN OR LESS +3 3 AVERAGED OVER MORE THAN 3 MIN, BUT 6 MIN AT THE MOST +4 4 AVERAGED OVER MORE THAN 6 MIN, BUT 12 MIN AT THE MOST +5 5 INSTANTANEOUS +6 6 AVERAGED OVER 3 MIN OR LESS +7 7 AVERAGED OVER MORE THAN 3 MIN, BUT 6 MIN AT THE MOST +8 8 AVERAGED OVER MORE THAN 6 MIN, BUT 12 MIN AT THE MOST +9 9 VECTOR OR DOPPLER CURRENT PROFILING METHOD NOT USED +10 10 RESERVED +11 11 1 HOUR OR LESS +12 12 MORE THAN 1 HOUR BUT 2 HOURS AT THE MOST +13 13 MORE THAN 2 HOURS BUT 4 HOURS AT THE MOST +14 14 MORE THAN 4 HOURS BUT 8 HOURS AT THE MOST +15 15 MORE THAN 8 HOURS BUT 12 HOURS AT THE MOST +16 16 MORE THAN 12 HOURS BUT 18 HOURS AT THE MOST +17 17 MORE THAN 18 HOURS BUT 24 HOURS AT THE MOST +18 18 RESERVED +19 19 DRIFT METHOD NOT USED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2032.table b/definitions/bufr/tables/0/wmo/42/codetables/2032.table new file mode 100644 index 000000000..7e9310db0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2032.table @@ -0,0 +1,4 @@ +0 0 VALUES AT SELECTED DEPTHS (DATA POINTS FIXED BY THE INSTRUMENT OR SELECTED BY ANY OTHER METHOD) +1 1 VALUES AT SELECTED DEPTHS (DATA POINTS TAKEN FROM TRACES AT SIGNIFICANT DEPTHS) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2033.table b/definitions/bufr/tables/0/wmo/42/codetables/2033.table new file mode 100644 index 000000000..d590a8454 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2033.table @@ -0,0 +1,5 @@ +0 0 NO SALINITY MEASURED +1 1 IN SITU SENSOR, ACCURACY BETTER THAN 0.02 0/00 +2 2 IN SITU SENSOR, ACCURACY LESS THAN 0.02 0/00 +3 3 SAMPLE ANALYSIS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2034.table b/definitions/bufr/tables/0/wmo/42/codetables/2034.table new file mode 100644 index 000000000..06cdd52d2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2034.table @@ -0,0 +1,7 @@ +0 0 UNSPECIFIED DROGUE +1 1 HOLEY SOCK +2 2 TRISTAR +3 3 WINDOW SHADE +4 4 PARACHUTE +5 5 NON-LAGRANGIAN SEA ANCHOR +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2036.table b/definitions/bufr/tables/0/wmo/42/codetables/2036.table new file mode 100644 index 000000000..7782d302a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2036.table @@ -0,0 +1,4 @@ +0 0 DRIFTING BUOY +1 1 FIXED BUOY +2 2 SUBSURFACE FLOAT (MOVING) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2037.table b/definitions/bufr/tables/0/wmo/42/codetables/2037.table new file mode 100644 index 000000000..729c40e63 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2037.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 MANUAL READING FROM VERTICAL TIDE STAFF +2 2 MANUAL READING FROM SINGLE AUTOMATIC RECORDER AT STATION +3 3 MANUAL READING FROM MULTIPLE AUTOMATIC RECORDERS AT STATION +4 4 AUTOMATIC READING FROM SINGLE AUTOMATIC RECORDER AT STATION WITHOUT LEVEL REFERENCE CHECK +5 5 AUTOMATIC READING FROM SINGLE AUTOMATIC RECORDER AT STATION WITH LEVEL REFERENCE CHECK, OR FROM MULTIPLE AUTOMATIC RECORDERS +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2038.table b/definitions/bufr/tables/0/wmo/42/codetables/2038.table new file mode 100644 index 000000000..458f14169 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2038.table @@ -0,0 +1,16 @@ +0 0 SHIP INTAKE +1 1 BUCKET +2 2 HULL CONTACT SENSOR +3 3 REVERSING THERMOMETER +4 4 STD/CTD SENSOR +5 5 MECHANICAL BT +6 6 EXPENDABLE BT +7 7 DIGITAL BT +8 8 THERMISTOR CHAIN +9 9 INFRARED SCANNER +10 10 MICROWAVE SCANNER +11 11 INFRARED RADIOMETER +12 12 IN-LINE THERMOSALINOGRAPH +13 13 TOWED BODY +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2039.table b/definitions/bufr/tables/0/wmo/42/codetables/2039.table new file mode 100644 index 000000000..0a94982b5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2039.table @@ -0,0 +1,5 @@ +0 0 MEASURED WET-BULB TEMPERATURE +1 1 ICED BULB MEASURED WET-BULB TEMPERATURE +2 2 COMPUTED WET-BULB TEMPERATURE +3 3 ICED BULB COMPUTED WET-BULB TEMPERATURE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2040.table b/definitions/bufr/tables/0/wmo/42/codetables/2040.table new file mode 100644 index 000000000..78b291706 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2040.table @@ -0,0 +1,8 @@ +0 0 SHIP'S MOTION REMOVED BY AVERAGING +1 1 SHIP'S MOTION REMOVED BY MOTION COMPENSATION +2 2 SHIP'S MOTION NOT REMOVED +3 3 SHIP'S MOTION REMOVED BY AVERAGING +4 4 SHIP'S MOTION REMOVED BY MOTION COMPENSATION +5 5 SHIP'S MOTION NOT REMOVED +6 6 DOPPLER CURRENT PROFILING METHOD NOT USED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2041.table b/definitions/bufr/tables/0/wmo/42/codetables/2041.table new file mode 100644 index 000000000..ef5bf86b3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2041.table @@ -0,0 +1,6 @@ +0 0 INFORMATION BASED ON MANUAL ANALYSIS +1 1 INFORMATION BASED ON COMPUTER ANALYSIS +2 2 INFORMATION BASED ON DATA ASSIMILATION +3 3 INFORMATION BASED ON COMPUTER ANALYSIS OR DATA ASSIMILATION MANUALLY MODIFIED +10 10 INFORMATION BASED ON THE NUMERICAL WEATHER PREDICTION +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2042.table b/definitions/bufr/tables/0/wmo/42/codetables/2042.table new file mode 100644 index 000000000..eb2445b83 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2042.table @@ -0,0 +1,4 @@ +0 0 VALUE ORIGINALLY REPORTED IN M/S +1 1 VALUE ORIGINALLY REPORTED IN KNOTS +2 2 NO SEA CURRENT DATA AVAILABLE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2044.table b/definitions/bufr/tables/0/wmo/42/codetables/2044.table new file mode 100644 index 000000000..0e10ed8e1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2044.table @@ -0,0 +1,6 @@ +0 0 RESERVED FOR FUTURE USE +1 1 LONGUET-HIGGINS (1964) +2 2 LONGUET-HIGGINS (F3 METHOD) +3 3 MAXIMUM LIKELIHOOD METHOD +4 4 MAXIMUM ENTROPY METHOD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2045.table b/definitions/bufr/tables/0/wmo/42/codetables/2045.table new file mode 100644 index 000000000..374e4f27e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2045.table @@ -0,0 +1,5 @@ +0 0 SEA STATION +1 1 AUTOMATIC DATA BUOY +2 2 AIRCRAFT +3 3 SATELLITE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2046.table b/definitions/bufr/tables/0/wmo/42/codetables/2046.table new file mode 100644 index 000000000..57fb9d6be --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2046.table @@ -0,0 +1,4 @@ +0 0 RESERVED FOR FUTURE USE +1 1 HEAVE SENSOR +2 2 SLOPE SENSOR +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2047.table b/definitions/bufr/tables/0/wmo/42/codetables/2047.table new file mode 100644 index 000000000..821393179 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2047.table @@ -0,0 +1,9 @@ +0 0 RESERVED +1 1 DART II (PMEL) +2 2 DART ETD +3 3 SAIC TSUNAMI BUOY (STB) +4 4 GFZ - POTSDAM +5 5 INCOIS (INDIA) +6 6 INABUOY (INDONESIA) +7 7 ENVIRTECH +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2048.table b/definitions/bufr/tables/0/wmo/42/codetables/2048.table new file mode 100644 index 000000000..e4325f83b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2048.table @@ -0,0 +1,16 @@ +0 0 HIRS +1 1 MSU +2 2 SSU +3 3 AMSU-A +4 4 AMSU-B +5 5 AVHRR +6 6 SSMI +7 7 NSCAT +8 8 SEAWINDS +9 9 POSEIDON ALTIMETER +10 10 JMR (JASON MICROWAVE RADIOMETER) +11 11 MHS +12 12 ASCAT +13 13 OSCAT2 +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2049.table b/definitions/bufr/tables/0/wmo/42/codetables/2049.table new file mode 100644 index 000000000..ade5cac86 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2049.table @@ -0,0 +1,4 @@ +1 1 PROCESSING TECHNIQUE NOT DEFINED +2 2 SIMULTANEOUS PHYSICAL RETRIEVAL +3 3 CLEAR SOUNDING +4 4 CLOUDY SOUNDING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2050.table b/definitions/bufr/tables/0/wmo/42/codetables/2050.table new file mode 100644 index 000000000..fbcce617d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2050.table @@ -0,0 +1,19 @@ +1 1 1 +2 2 2 +3 3 3 +4 4 4 +5 5 5 +6 6 6 +7 7 7 +8 8 8 +9 9 9 +10 10 10 +11 11 11 +12 12 12 +13 13 13 +14 14 14 +15 15 15 +16 16 16 +17 17 17 +18 18 18 +19 19 19 diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2051.table b/definitions/bufr/tables/0/wmo/42/codetables/2051.table new file mode 100644 index 000000000..3524ae72d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2051.table @@ -0,0 +1,5 @@ +0 0 RESERVED +1 1 MAXIMUM/MINIMUM THERMOMETERS +2 2 AUTOMATED INSTRUMENTS +3 3 THERMOGRAPH +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2052.table b/definitions/bufr/tables/0/wmo/42/codetables/2052.table new file mode 100644 index 000000000..8b6262caa --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2052.table @@ -0,0 +1,5 @@ +1 1 1 +2 2 2 +3 3 3 +4 4 4 +5 5 5 diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2053.table b/definitions/bufr/tables/0/wmo/42/codetables/2053.table new file mode 100644 index 000000000..03e5e295e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2053.table @@ -0,0 +1,5 @@ +0 0 OBSERVED BRIGHTNESS TEMPERATURE +1 1 BRIGHTNESS TEMPERATURE WITH BIAS CORRECTION APPLIED +2 2 BRIGHTNESS TEMPERATURE CALCULATED FROM FIRST GUESS +3 3 BRIGHTNESS TEMPERATURE CALCULATED FROM SOUNDING +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2054.table b/definitions/bufr/tables/0/wmo/42/codetables/2054.table new file mode 100644 index 000000000..0995688ba --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2054.table @@ -0,0 +1,6 @@ +0 0 PARAMETER DERIVED USING OBSERVED SOUNDER BRIGHTNESS TEMPERATURES +1 1 PARAMETER DERIVED USING OBSERVED IMAGER BRIGHTNESS TEMPERATURES +2 2 PARAMETER DERIVED USING FIRST GUESS INFORMATION +3 3 PARAMETER DERIVED USING NMC ANALYSIS INFORMATION +4 4 PARAMETER DERIVED USING RADIOSONDE INFORMATION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2055.table b/definitions/bufr/tables/0/wmo/42/codetables/2055.table new file mode 100644 index 000000000..ce06f0089 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2055.table @@ -0,0 +1,10 @@ +0 0 STATISTICS GENERATED COMPARING RETRIEVAL VERSUS RADIOSONDE +1 1 STATISTICS GENERATED COMPARING RETRIEVAL VERSUS FIRST GUESS +2 2 STATISTICS GENERATED COMPARING RADIOSONDE VERSUS FIRST GUESS +3 3 STATISTICS GENERATED COMPARING OBSERVED VERSUS RETRIEVAL +4 4 STATISTICS GENERATED COMPARING OBSERVED VERSUS FIRST GUESS +5 5 STATISTICS GENERATED COMPARING RADIOSONDE VERSUS IMAGER +6 6 STATISTICS GENERATED COMPARING RADIOSONDE VERSUS SOUNDER +7 7 STATISTICS GENERATED FOR RADIOSONDE +8 8 STATISTICS GENERATED FOR FIRST GUESS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2056.table b/definitions/bufr/tables/0/wmo/42/codetables/2056.table new file mode 100644 index 000000000..86eb98302 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2056.table @@ -0,0 +1,6 @@ +0 0 SUMS OF DIFFERENCES +1 1 SUMS OF SQUARED DIFFERENCES +2 2 SAMPLE SIZE +3 3 MINIMUM DIFFERENCE +4 4 MAXIMUM DIFFERENCE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2057.table b/definitions/bufr/tables/0/wmo/42/codetables/2057.table new file mode 100644 index 000000000..681e6bd08 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2057.table @@ -0,0 +1,7 @@ +0 0 NESTED GRID MODEL (NGM) +1 1 AVIATION MODEL (AVN) +2 2 MEDIUM RANGE FORECAST (MRF) MODEL +3 3 GLOBAL DATA ASSIMILATION SYSTEM (GDAS) FORECAST MODEL +4 4 PRIOR SOUNDINGS (WITHIN 3 HOURS OF CURRENT TIME) +5 5 CLIMATOLOGY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2058.table b/definitions/bufr/tables/0/wmo/42/codetables/2058.table new file mode 100644 index 000000000..6c45eda11 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2058.table @@ -0,0 +1,5 @@ +0 0 12 HOUR AND 18 HOUR +1 1 18 HOUR AND 24 HOUR +2 2 6 HOUR AND 12 HOUR +3 3 GREATER THAN 24 HOURS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2059.table b/definitions/bufr/tables/0/wmo/42/codetables/2059.table new file mode 100644 index 000000000..8f089d3c4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2059.table @@ -0,0 +1,5 @@ +0 0 NCEP NESTED GRID MODEL (NGM) ANALYSIS +1 1 NCEP AVIATION MODEL (AVN) ANALYSIS +2 2 NCEP MEDIUM RANGE FORECAST (MRF) MODEL ANALYSIS +3 3 NCEP GLOBAL DATA ASSIMILATION SYSTEM (GDAS) FORECAST MODEL ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2060.table b/definitions/bufr/tables/0/wmo/42/codetables/2060.table new file mode 100644 index 000000000..6f846987b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2060.table @@ -0,0 +1,7 @@ +0 0 CURRENT SURFACE HOURLY REPORTS +1 1 CURRENT SHIP REPORTS +2 2 CURRENT BUOY REPORTS +3 3 ONE HOUR OLD SURFACE HOURLY REPORTS +4 4 ONE HOUR OLD SHIP REPORTS +5 5 ONE HOUR OLD BUOY REPORTS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2061.table b/definitions/bufr/tables/0/wmo/42/codetables/2061.table new file mode 100644 index 000000000..592d51eb4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2061.table @@ -0,0 +1,3 @@ +0 0 INERTIAL NAVIGATION SYSTEM +1 1 OMEGA +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2062.table b/definitions/bufr/tables/0/wmo/42/codetables/2062.table new file mode 100644 index 000000000..2d0f4e202 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2062.table @@ -0,0 +1,7 @@ +0 0 ASDAR +1 1 ASDAR (ACARS ALSO AVAILABLE BUT NOT OPERATIVE) +2 2 ASDAR (ACARS ALSO AVAILABLE AND OPERATIVE) +3 3 ACARS +4 4 ACARS (ASDAR ALSO AVAILABLE BUT NOT OPERATIVE) +5 5 ACARS (ASDAR ALSO AVAILABLE AND OPERATIVE) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2064.table b/definitions/bufr/tables/0/wmo/42/codetables/2064.table new file mode 100644 index 000000000..741430292 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2064.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 BAD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2066.table b/definitions/bufr/tables/0/wmo/42/codetables/2066.table new file mode 100644 index 000000000..a3865dc68 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2066.table @@ -0,0 +1,9 @@ +0 0 INTERMET IMS 2000 +1 1 INTERMET IMS 1500C +2 2 SHANGHAI GTC1 +3 3 NANJING GTC2 +4 4 NANJING GFE(L)1 +5 5 MARL-A RADAR +6 6 VEKTOR-M RADAR +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2070.table b/definitions/bufr/tables/0/wmo/42/codetables/2070.table new file mode 100644 index 000000000..5a098ea26 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2070.table @@ -0,0 +1,13 @@ +0 0 ACTUAL LOCATION IN SECONDS +1 1 ACTUAL LOCATION IN MINUTES +2 2 ACTUAL LOCATION IN DEGREES +3 3 ACTUAL LOCATION IN DECIDEGREES +4 4 ACTUAL LOCATION IN CENTIDEGREES +5 5 REFERENCED TO CHECKPOINT IN SECONDS +6 6 REFERENCED TO CHECKPOINT IN MINUTES +7 7 REFERENCED TO CHECKPOINT IN DEGREES +8 8 REFERENCED TO CHECKPOINT IN DECIDEGREES +9 9 REFERENCED TO CHECKPOINT IN CENTIDEGREES +10 10 ACTUAL LOCATION IN TENTHS OF A MINUTE +11 11 REFERENCED TO CHECKPOINT IN TENTHS OF A MINUTE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2080.table b/definitions/bufr/tables/0/wmo/42/codetables/2080.table new file mode 100644 index 000000000..c68a39dd6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2080.table @@ -0,0 +1,7 @@ +0 0 KAYSAM +1 1 TOTEX +2 2 KKS +3 3 GUANGZHOU SHUANGYI (CHINA) +4 4 CHEMCHINA ZHUZHOU (CHINA) +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2081.table b/definitions/bufr/tables/0/wmo/42/codetables/2081.table new file mode 100644 index 000000000..dfe9551a9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2081.table @@ -0,0 +1,11 @@ +0 0 GP26 +1 1 GP28 +2 2 GP30 +3 3 HM26 +4 4 HM28 +5 5 HM30 +6 6 SV16 +7 7 TOTEX TA TYPE BALLOONS +8 8 TOTEX TX TYPE BALLOONS +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2083.table b/definitions/bufr/tables/0/wmo/42/codetables/2083.table new file mode 100644 index 000000000..611c5bf64 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2083.table @@ -0,0 +1,7 @@ +0 0 HIGH BAY +1 1 LOW BAY +2 2 BALLOON-INFLATED LAUNCH SYSTEM (BILS) +3 3 ROOF-TOP BILS +4 4 AUTOMATED UNMANNED SOUNDING SYSTEM +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2084.table b/definitions/bufr/tables/0/wmo/42/codetables/2084.table new file mode 100644 index 000000000..be6430ae6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2084.table @@ -0,0 +1,5 @@ +0 0 HYDROGEN +1 1 HELIUM +2 2 NATURAL GAS +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2092.table b/definitions/bufr/tables/0/wmo/42/codetables/2092.table new file mode 100644 index 000000000..b171b55c8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2092.table @@ -0,0 +1,4 @@ +0 0 UV CHANNEL BASED RETRIEVAL +1 1 VISIBLE CHANNEL BASED RETRIEVAL +2 2 COMBINED UV BASED RETRIEVAL AND VISIBLE BASED RETRIEVAL +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2095.table b/definitions/bufr/tables/0/wmo/42/codetables/2095.table new file mode 100644 index 000000000..580fe930c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2095.table @@ -0,0 +1,7 @@ +0 0 CAPACITANCE ANEROID +1 1 DERIVED FROM GPS +2 2 RESISTIVE STRAIN GAUGE +3 3 SILICON CAPACITOR +4 4 DERIVED FROM RADAR HEIGHT +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2096.table b/definitions/bufr/tables/0/wmo/42/codetables/2096.table new file mode 100644 index 000000000..9f1b1027c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2096.table @@ -0,0 +1,9 @@ +0 0 ROD THERMISTOR +1 1 BEAD THERMISTOR +2 2 CAPACITANCE BEAD +3 3 CAPACITANCE WIRE +4 4 RESISTIVE SENSOR +5 5 CHIP THERMISTOR +6 6 MERCURY +7 7 ALCOHOL/GLYCOL +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2097.table b/definitions/bufr/tables/0/wmo/42/codetables/2097.table new file mode 100644 index 000000000..309ef642a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2097.table @@ -0,0 +1,26 @@ +0 0 VIZ MARK II CARBON HYGRISTOR +1 1 VIZ B2 HYGRISTOR +2 2 VAISALA A-HUMICAP +3 3 VAISALA H-HUMICAP +4 4 CAPACITANCE SENSOR +5 5 VAISALA RS90 +6 6 SIPPICAN MARK IIA CARBON HYGRISTOR +7 7 TWIN ALTERNATIVELY HEATED HUMICAP CAPACITANCE SENSOR +8 8 HUMICAP CAPACITANCE SENSOR WITH ACTIVE DE-ICING METHOD +9 9 CARBON HYGRISTOR +10 10 PSYCHROMETER +11 11 CAPACITIVE (POLYMER) +12 12 CAPACITIVE (CERAMIC, INCLUDING METAL OXIDE) +13 13 RESISTIVE (GENERIC) +14 14 RESISTIVE (SALT POLYMER) +15 15 RESISTIVE (CONDUCTIVE POLYMER) +16 16 THERMAL CONDUCTIVITY +17 17 GRAVIMETRIC +18 18 PAPER-METAL COIL +19 19 ORDINARY HUMAN HAIR +20 20 ROLLED HAIR (TORSION) +21 21 GOLDBEATER'S SKIN +22 22 CHILLED MIRROR HYGROMETER +23 23 DEW CELL +24 24 OPTICAL ABSORPTION SENSOR +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2099.table b/definitions/bufr/tables/0/wmo/42/codetables/2099.table new file mode 100644 index 000000000..74cb817c9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2099.table @@ -0,0 +1,5 @@ +0 0 HH POLARIZATION +1 1 VV POLARIZATION +2 2 HV POLARIZATION REAL VALUED COMPONENT +3 3 HV POLARIZATION IMAGINARY VALUED COMPONENT +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2101.table b/definitions/bufr/tables/0/wmo/42/codetables/2101.table new file mode 100644 index 000000000..efdb3ec56 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2101.table @@ -0,0 +1,10 @@ +0 0 CENTRE FRONT-FED PARABOLOID +1 1 OFFSET FRONT-FED PARABOLOID +2 2 CENTRE CASSEGRAIN PARABOLOID +3 3 OFFSET CASSEGRAIN PARABOLOID +4 4 PLANAR ARRAY +5 5 COAXIAL-COLLINEAR ARRAY +6 6 YAGI ELEMENTS ARRAY +7 7 MICROSTRIP +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21026.table b/definitions/bufr/tables/0/wmo/42/codetables/21026.table new file mode 100644 index 000000000..819a6ebfd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21026.table @@ -0,0 +1,4 @@ +0 0 NOMINAL +1 1 CLOSE TO NOMINAL +2 2 FAR FROM NOMINAL +7 7 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2103.table b/definitions/bufr/tables/0/wmo/42/codetables/2103.table new file mode 100644 index 000000000..417d2c9a4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2103.table @@ -0,0 +1 @@ +1 1 RADAR ANTENNA IS PROTECTED BY A RADOME diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2104.table b/definitions/bufr/tables/0/wmo/42/codetables/2104.table new file mode 100644 index 000000000..e39a15365 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2104.table @@ -0,0 +1,9 @@ +0 0 HORIZONTAL POLARIZATION +1 1 VERTICAL POLARIZATION +2 2 RIGHT CIRCULAR POLARIZATION +3 3 LEFT CIRCULAR POLARIZATION +4 4 HORIZONTAL AND VERTICAL POLARIZATION +5 5 RIGHT AND LEFT CIRCULAR POLARIZATION +6 6 QUASI-HORIZONTAL POLARIZATION +7 7 QUASI-VERTICAL POLARIZATION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21066.table b/definitions/bufr/tables/0/wmo/42/codetables/21066.table new file mode 100644 index 000000000..9bcafea2a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21066.table @@ -0,0 +1,11 @@ +1 1 PROCESSING EQUIPMENT NOT WORKING +2 2 EQUIPMENT FAILED +3 3 PRF CODE CHANGED DURING IMAGE GENERATION +4 4 SAMPLING WINDOW CHANGED DURING IMAGE GENERATION +5 5 GAIN CHANGED DURING IMAGE GENERATION +6 6 CHIRP REPLICA EXCEEDS SPECIFIED VALUE +7 7 INPUT DATA MEAN AND STANDARD DEVIATION OF IN-PHASE AND QUADRATURE OUT OF RANGE +8 8 DOPPLER CENTROID CONFIDENCE > MMCC VALUE +9 9 DOPPLER CENTROID ABSOLUTE VALUE > PRF/2 +10 10 DOPPLER AMBIGUITY CONFIDENCE < MMCC VALUE +11 11 OUTPUT DATA MEAN AND STANDARD DEVIATION =< MMCC VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21067.table b/definitions/bufr/tables/0/wmo/42/codetables/21067.table new file mode 100644 index 000000000..a0ed399e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21067.table @@ -0,0 +1,12 @@ +1 1 NO FOREBEAM CALCULATION +2 2 NO MIDBEAM CALCULATION +3 3 NO AFTBEAM CALCULATION +4 4 FOREBEAM ARCING DETECTED +5 5 MIDBEAM ARCING DETECTED +6 6 AFTBEAM ARCING DETECTED +7 7 ANY BEAM NOISE CONTENT ABOVE OR EQUAL TO THRESHOLD +8 8 LAND (ANY LAND IN CELL FOOTPRINT) +9 9 AUTONOMOUS AMBIGUITY REMOVAL NOT USED +10 10 METEOROLOGICAL BACKGROUND NOT USED +11 11 MINIMUM RESIDUAL EXCEEDED THRESHOLD +12 12 FRAME CHECKSUM ERROR DETECTED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21068.table b/definitions/bufr/tables/0/wmo/42/codetables/21068.table new file mode 100644 index 000000000..102171f44 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21068.table @@ -0,0 +1,7 @@ +1 1 STANDARD DEVIATION OF WIND SPEED OUTSIDE MMCC LIMIT +2 2 STANDARD DEVIATION OF SIGNIFICANT WAVE HEIGHT OUTSIDE MMCC LIMIT +3 3 STANDARD DEVIATION OF ALTITUDE OUTSIDE MMCC LIMIT +4 4 MEAN PEAKINESS OUTSIDE MMCC LIMIT +5 5 FRAME CHECKSUM ERROR DETECTED +6 6 HEIGHT-TIME LOOP TIME CONSTANT CORRECTION NOT PERFORMED +7 7 NOT ENOUGH MEASUREMENTS (N < 10) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21069.table b/definitions/bufr/tables/0/wmo/42/codetables/21069.table new file mode 100644 index 000000000..b258fae22 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21069.table @@ -0,0 +1,9 @@ +1 1 12.0 MICRON CHANNEL PRESENT IN SOURCE DATA +2 2 11.0 MICRON CHANNEL PRESENT IN SOURCE DATA +3 3 3.7 MICRON CHANNEL PRESENT IN SOURCE DATA +4 4 1.6 MICRON CHANNEL PRESENT IN SOURCE DATA +5 5 CLOUD IDENTIFICATION USED 1.6 MICRON HISTOGRAM REFLECTANCE CLOUD TEST +6 6 1.6 MICRON HISTOGRAM REFLECTANCE CLOUD TEST USED DYNAMIC THRESHOLD +7 7 SUN GLINT DETECTED BY 1.6 MICRON REFLECTANCE CLOUD TEST +8 8 3.7 MICRON CHANNEL USED IN SEA-SURFACE TEMPERATURE RETRIEVAL +9 9 SEA-SURFACE TEMPERATURE DERIVATION USED DAYTIME DATA (NIGHT-TIME IF ZERO) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21070.table b/definitions/bufr/tables/0/wmo/42/codetables/21070.table new file mode 100644 index 000000000..669655f00 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21070.table @@ -0,0 +1,22 @@ +1 1 CELL 1: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +2 2 CELL 2: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +3 3 CELL 3: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +4 4 CELL 4: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +5 5 CELL 5: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +6 6 CELL 6: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +7 7 CELL 7: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +8 8 CELL 8: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +9 9 CELL 9: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +10 10 CELL 1: DUAL VIEW SST USED 3.7 MICRON CHANNEL +11 11 CELL 2: DUAL VIEW SST USED 3.7 MICRON CHANNEL +12 12 CELL 3: DUAL VIEW SST USED 3.7 MICRON CHANNEL +13 13 CELL 4: DUAL VIEW SST USED 3.7 MICRON CHANNEL +14 14 CELL 5: DUAL VIEW SST USED 3.7 MICRON CHANNEL +15 15 CELL 6: DUAL VIEW SST USED 3.7 MICRON CHANNEL +16 16 CELL 7: DUAL VIEW SST USED 3.7 MICRON CHANNEL +17 17 CELL 8: DUAL VIEW SST USED 3.7 MICRON CHANNEL +18 18 CELL 9: DUAL VIEW SST USED 3.7 MICRON CHANNEL +19 19 NADIR VIEW CONTAINS DAY-TIME DATA (NIGHT IF ZERO) +20 20 FORWARD VIEW CONTAINS DAY-TIME DATA (NIGHT IF ZERO) +21 21 RECORD CONTAINS CONTRIBUTIONS FROM INSTRUMENT SCANS ACQUIRED WHEN ERS PLATFORM NOT IN YAW-STEERING MODE +22 22 RECORD CONTAINS CONTRIBUTIONS FROM INSTRUMENT SCANS FOR WHICH PRODUCT CONFIDENCE DATA SHOW QUALITY IS POOR OR UNKNOWN diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21072.table b/definitions/bufr/tables/0/wmo/42/codetables/21072.table new file mode 100644 index 000000000..99e4b1c29 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21072.table @@ -0,0 +1,3 @@ +1 1 HEIGHT ERROR CORRECTION APPLIED INSTEAD OF OPEN LOOP CALIBRATION +2 2 MICROWAVE SOUNDER USED FOR TROPOSPHERE CORRECTION +3 3 AGC OUTPUT CORRECTION APPLIED INSTEAD OF OPEN LOOP CALIBRATION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21073.table b/definitions/bufr/tables/0/wmo/42/codetables/21073.table new file mode 100644 index 000000000..9538fa553 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21073.table @@ -0,0 +1,8 @@ +1 1 BLANK DATA RECORD +2 2 TEST +3 3 CALIBRATION (CLOSED LOOP) +4 4 BITE +5 5 ACQUISITION ON ICE +6 6 ACQUISITION ON OCEAN +7 7 TRACKING ON ICE +8 8 TRACKING ON OCEAN diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21076.table b/definitions/bufr/tables/0/wmo/42/codetables/21076.table new file mode 100644 index 000000000..bc52ac558 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21076.table @@ -0,0 +1,4 @@ +0 0 LINEAR +1 1 LOGARITHMIC (BASE E) +2 2 LOGARITHMIC (BASE 10) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21109.table b/definitions/bufr/tables/0/wmo/42/codetables/21109.table new file mode 100644 index 000000000..deb577aa0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21109.table @@ -0,0 +1,7 @@ +1 1 NOT ENOUGH GOOD SIGMA-0 AVAILABLE FOR WIND RETRIEVAL +2 2 POOR AZIMUTH DIVERSITY AMONG SIGMA-0 FOR WIND RETRIEVAL +8 8 SOME PORTION OF WIND VECTOR CELL IS OVER LAND +9 9 SOME PORTION OF WIND VECTOR CELL IS OVER ICE +10 10 WIND RETRIEVAL NOT PERFORMED FOR WIND VECTOR CELL +11 11 REPORTED WIND SPEED IS GREATER THAN 30 M S-1 +12 12 REPORTED WIND SPEED IS LESS THAN OR EQUAL TO 3 M S-1 diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21115.table b/definitions/bufr/tables/0/wmo/42/codetables/21115.table new file mode 100644 index 000000000..9e90133cd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21115.table @@ -0,0 +1,10 @@ +1 1 SIGMA-0 MEASUREMENT IS NOT USABLE +2 2 SIGNAL TO NOISE RATIO IS LOW +3 3 SIGMA-0 IS NEGATIVE +4 4 SIGMA-0 IS OUTSIDE OF ACCEPTABLE RANGE +5 5 SCATTEROMETER PULSE QUALITY IS NOT ACCEPTABLE +6 6 SIGMA-0 CELL LOCATION ALGORITHM DOES NOT CONVERGE +7 7 FREQUENCY SHIFT LIES BEYOND THE RANGE OF THE X FACTOR TABLE +8 8 SPACECRAFT TEMPERATURE IS BEYOND CALIBRATION COEFFICIENT RANGE +9 9 NO APPLICABLE ALTITUDE RECORDS WERE FOUND FOR THIS SIGMA-0 +10 10 INTERPOLATED EPHEMERIS DATA ARE NOT ACCEPTABLE FOR THIS SIGMA-0 diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21116.table b/definitions/bufr/tables/0/wmo/42/codetables/21116.table new file mode 100644 index 000000000..08d5412e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21116.table @@ -0,0 +1,16 @@ +1 1 CALIBRATION/MEASUREMENT PULSE FLAG (1) +2 2 CALIBRATION/MEASUREMENT PULSE FLAG (2) +3 3 OUTER ANTENNA BEAM +4 4 SIGMA-0 CELL IS AFT OF SPACECRAFT +5 5 CURRENT MODE (1) +6 6 CURRENT MODE (2) +7 7 EFFECTIVE GATE WIDTH - SLICE RESOLUTION (1) +8 8 EFFECTIVE GATE WIDTH - SLICE RESOLUTION (2) +9 9 EFFECTIVE GATE WIDTH - SLICE RESOLUTION (3) +10 10 LOW-RESOLUTION MODE - WHOLE PULSE DATA +11 11 SCATTEROMETER ELECTRONIC SUBSYSTEM B +12 12 ALTERNATE SPIN RATE - 19.8 RPM +13 13 RECEIVER PROTECTION ON +14 14 SLICES PER COMPOSITE FLAG (1) +15 15 SLICES PER COMPOSITE FLAG (2) +16 16 SLICES PER COMPOSITE FLAG (3) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21119.table b/definitions/bufr/tables/0/wmo/42/codetables/21119.table new file mode 100644 index 000000000..e17e3c04a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21119.table @@ -0,0 +1,14 @@ +0 0 RESERVED +1 1 SASS +2 2 SASS2 +3 3 NSCAT0 +4 4 NSCAT1 +5 5 NSCAT2 +6 6 QSCAT0 +7 7 QSCAT1 +31 31 CMOD1 +32 32 CMOD2 +33 33 CMOD3 +34 34 CMOD4 +35 35 CMOD5 +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21144.table b/definitions/bufr/tables/0/wmo/42/codetables/21144.table new file mode 100644 index 000000000..1f082e6d9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21144.table @@ -0,0 +1 @@ +1 1 RAIN diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21148.table b/definitions/bufr/tables/0/wmo/42/codetables/21148.table new file mode 100644 index 000000000..11413ed72 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21148.table @@ -0,0 +1,2 @@ +1 1 NON SHORT SCALE VARIATION +2 2 SHORT SCALE VARIATION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2115.table b/definitions/bufr/tables/0/wmo/42/codetables/2115.table new file mode 100644 index 000000000..c7e866c7a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2115.table @@ -0,0 +1,7 @@ +0 0 PDB +1 1 RSOIS +2 2 ASOS +3 3 PSYCHROMETER +4 4 F420 +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21150.table b/definitions/bufr/tables/0/wmo/42/codetables/21150.table new file mode 100644 index 000000000..851004635 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21150.table @@ -0,0 +1,4 @@ +0 0 DATA FROM SINGLE GROUND STATION (NO CO-LOCATION) +1 1 DATA FROM MULTIPLE GROUND STATION (CO-LOCATED DATA) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21155.table b/definitions/bufr/tables/0/wmo/42/codetables/21155.table new file mode 100644 index 000000000..a7837cfa7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21155.table @@ -0,0 +1,16 @@ +1 1 NOT ENOUGH GOOD SIGMA-0 AVAILABLE FOR WIND RETRIEVAL +2 2 POOR AZIMUTH DIVERSITY AMONG SIGMA-0 FOR WIND RETRIEVAL +3 3 ANY BEAM NOISE CONTENT ABOVE THRESHOLD +4 4 PRODUCT MONITORING NOT USED +5 5 PRODUCT MONITORING FLAG +6 6 KNMI QUALITY CONTROL FAILS +7 7 VARIATIONAL QUALITY CONTROL FAILS +8 8 SOME PORTION OF WIND VECTOR CELL IS OVER LAND +9 9 SOME PORTION OF WIND VECTOR CELL IS OVER ICE +10 10 WIND RETRIEVAL NOT PERFORMED FOR WIND VECTOR CELL +11 11 REPORTED WIND SPEED IS GREATER THAN 30 M/S +12 12 REPORTED WIND SPEED IS LESS THAN OR EQUAL TO 3 M/S +13 13 RAIN FLAG FOR THE WIND VECTOR CELL IS NOT USABLE +14 14 RAIN FLAG ALGORITHM DETECTS RAIN +15 15 NO METEOROLOGICAL BACKGROUND USED +16 16 DATA ARE REDUNDANT diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21158.table b/definitions/bufr/tables/0/wmo/42/codetables/21158.table new file mode 100644 index 000000000..dd53c5159 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21158.table @@ -0,0 +1,4 @@ +0 0 ACCEPTABLE +1 1 NOT ACCEPTABLE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21159.table b/definitions/bufr/tables/0/wmo/42/codetables/21159.table new file mode 100644 index 000000000..1703f9b8e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21159.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 USABLE +2 2 BAD +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/21169.table b/definitions/bufr/tables/0/wmo/42/codetables/21169.table new file mode 100644 index 000000000..9b93444ce --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/21169.table @@ -0,0 +1,4 @@ +0 0 NO ICE PRESENT +1 1 ICE PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2119.table b/definitions/bufr/tables/0/wmo/42/codetables/2119.table new file mode 100644 index 000000000..0640af68b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2119.table @@ -0,0 +1,8 @@ +0 0 INTERMEDIATE FREQUENCY CALIBRATION MODE (IF CAL) +1 1 BUILT-IN TEST EQUIPMENT DIGITAL (BITE DGT) +2 2 BUILT-IN TEST EQUIPMENT RADIO FREQUENCY (BITE RF) +3 3 PRESET TRACKING (PSET TRK) +4 4 PRESET LOOP OUT +5 5 ACQUISITION +6 6 TRACKING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2131.table b/definitions/bufr/tables/0/wmo/42/codetables/2131.table new file mode 100644 index 000000000..f4336ef79 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2131.table @@ -0,0 +1 @@ +1 1 STC OPERATIONAL diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2137.table b/definitions/bufr/tables/0/wmo/42/codetables/2137.table new file mode 100644 index 000000000..40d33fdd3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2137.table @@ -0,0 +1,4 @@ +1 1 3:2 +2 2 4:3 +3 3 5:4 +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2138.table b/definitions/bufr/tables/0/wmo/42/codetables/2138.table new file mode 100644 index 000000000..a574506ad --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2138.table @@ -0,0 +1,3 @@ +1 1 CLOCKWISE ROTATION +2 2 COUNTERCLOCKWISE ROTATION +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2139.table b/definitions/bufr/tables/0/wmo/42/codetables/2139.table new file mode 100644 index 000000000..f6cf80294 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2139.table @@ -0,0 +1,3 @@ +0 0 SIRAL NOMINAL +1 1 SIRAL REDUNDANT +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2143.table b/definitions/bufr/tables/0/wmo/42/codetables/2143.table new file mode 100644 index 000000000..975d068be --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2143.table @@ -0,0 +1,21 @@ +0 0 RESERVED +1 1 BREWER SPECTROPHOTOMETER +2 2 CAVER TEICHERT +3 3 DOBSON +4 4 DOBSON (JAPAN) +5 5 EHMET +6 6 FECKER TELESCOPE +7 7 HOELPER +8 8 JODMETER +9 9 FILTER OZONOMETER M-83 +10 10 MAST +11 11 OXFORD +12 12 PAETZOLD +13 13 REGENER +14 14 RESERVED FOR FUTURE USE +15 15 VASSY FILTER OZONOMETER +16 16 CARBON IODIDE +17 17 SURFACE OZONE BUBBLER +18 18 FILTER OZONOMETER M-124 +19 19 ECC SONDE +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2144.table b/definitions/bufr/tables/0/wmo/42/codetables/2144.table new file mode 100644 index 000000000..5b0f37b34 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2144.table @@ -0,0 +1,8 @@ +0 0 DIRECT SUN +1 1 DIRECT SUN, ATTENUATOR #1 +2 2 DIRECT SUN, ATTENUATOR #2 +3 3 FOCUSED MOON +4 4 FOCUSED SUN +5 5 FOCUSED SUN CORRECTED WITH ADJACENT SKY MEASUREMENTS +6 6 ZENITH SKY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2145.table b/definitions/bufr/tables/0/wmo/42/codetables/2145.table new file mode 100644 index 000000000..1944e69fc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2145.table @@ -0,0 +1,9 @@ +0 0 WAVELENGTHS AD ORDINARY SETTING +1 1 WAVELENGTHS BD ORDINARY SETTING +2 2 WAVELENGTHS CD ORDINARY SETTING +3 3 WAVELENGTHS CC' ORDINARY SETTING +4 4 WAVELENGTHS AD FOCUSED IMAGE +5 5 WAVELENGTHS BD FOCUSED IMAGE +6 6 WAVELENGTHS CD FOCUSED IMAGE +7 7 WAVELENGTHS CC' FOCUSED IMAGE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2146.table b/definitions/bufr/tables/0/wmo/42/codetables/2146.table new file mode 100644 index 000000000..871b35709 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2146.table @@ -0,0 +1,11 @@ +0 0 ON DIRECT SUN +1 1 ON DIRECT MOON +2 2 ON BLUE ZENITH SKY +3 3 ON ZENITH CLOUD (UNIFORM STRATIFIED LAYER OF SMALL OPACITY) +4 4 ON ZENITH CLOUD (UNIFORM OR MODERATELY VARIABLE LAYER OF MEDIUM OPACITY) +5 5 ON ZENITH CLOUD (UNIFORM OR MODERATELY VARIABLE LAYER OF LARGE OPACITY) +6 6 ON ZENITH CLOUD (HIGHLY VARIABLE OPACITY, WITH OR WITHOUT PRECIPITATION) +7 7 ON ZENITH CLOUD (FOG) +8 8 ON ZENITH HAZE +9 9 ON DIRECT SUN THROUGH THIN CLOUD, FOG OR HAZE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2147.table b/definitions/bufr/tables/0/wmo/42/codetables/2147.table new file mode 100644 index 000000000..5ef81f4a8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2147.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 DIRECT LEASED CIRCUIT +2 2 DIALLED UP CONNECTION +3 3 INTERNET ISP +4 4 DCP VIA SATELLITE (MTSAT, METEOSAT, ETC.) +5 5 VSAT +6 6 GAN, BGAN +7 7 THISS TERMINAL +8 8 IRIDIUM SATELLITES +9 9 MOBILE TELEPHONY +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2148.table b/definitions/bufr/tables/0/wmo/42/codetables/2148.table new file mode 100644 index 000000000..7d8ca51e3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2148.table @@ -0,0 +1,12 @@ +0 0 RESERVED +1 1 ARGOS +2 2 GPS +3 3 GOES DCP +4 4 METEOSAT DCP +5 5 ORBCOMM +6 6 INMARSAT +7 7 IRIDIUM +8 8 IRIDIUM AND GPS +9 9 ARGOS-3 +10 10 ARGOS-4 +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2149.table b/definitions/bufr/tables/0/wmo/42/codetables/2149.table new file mode 100644 index 000000000..04638d229 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2149.table @@ -0,0 +1,38 @@ +0 0 UNSPECIFIED DRIFTING BUOY +1 1 STANDARD LAGRANGIAN DRIFTER (GLOBAL DRIFTER PROGRAMME) +2 2 STANDARD FGGE TYPE DRIFTING BUOY (NON-LAGRANGIAN METEOROLOGICAL DRIFTING BUOY) +3 3 WIND MEASURING FGGE TYPE DRIFTING BUOY (NON-LAGRANGIAN METEOROLOGICAL DRIFTING BUOY) +4 4 ICE DRIFTER +5 5 SVPG STANDARD LAGRANGIAN DRIFTER WITH GPS +6 6 SVP-HR DRIFTER WITH HIGH-RESOLUTION TEMPERATURE OR THERMISTOR STRING +7 7 RESERVED +8 8 UNSPECIFIED SUBSURFACE FLOAT +9 9 SOFAR +10 10 ALACE +11 11 MARVOR +12 12 RAFOS +13 13 PROVOR +14 14 SOLO +15 15 APEX +16 16 UNSPECIFIED MOORED BUOY +17 17 NOMAD +18 18 3-METRE DISCUS +19 19 10-12-METRE DISCUS +20 20 ODAS 30 SERIES +21 21 ATLAS (E.G. TAO AREA) +22 22 TRITON BUOY +23 23 FLEX MOORING (E.G. TIP AREA) +24 24 OMNIDIRECTIONAL WAVERIDER +25 25 DIRECTIONAL WAVERIDER +26 26 SUBSURFACE ARGO FLOAT +27 27 PALACE +28 28 NEMO +29 29 NINJA +30 30 ICE BUOY/FLOAT (POPS OR ITP) +34 34 MOORING OCEANOGRAPHIC +35 35 MOORING METEOROLOGICAL +36 36 MOORING MULTIDISCIPLINARY (OCEANSITES) +37 37 MOORING TIDE GAUGE OR TSUNAMI BUOY +38 38 ICE BEACON +39 39 ICE MASS BALANCE BUOY +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2150.table b/definitions/bufr/tables/0/wmo/42/codetables/2150.table new file mode 100644 index 000000000..8193b575a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2150.table @@ -0,0 +1,55 @@ +0 0 RESERVED +1 1 HIRS 1 +2 2 HIRS 2 +3 3 HIRS 3 +4 4 HIRS 4 +5 5 HIRS 5 +6 6 HIRS 6 +7 7 HIRS 7 +8 8 HIRS 8 +9 9 HIRS 9 +10 10 HIRS 10 +11 11 HIRS 11 +12 12 HIRS 12 +13 13 HIRS 13 +14 14 HIRS 14 +15 15 HIRS 15 +16 16 HIRS 16 +17 17 HIRS 17 +18 18 HIRS 18 +19 19 HIRS 19 +20 20 HIRS 20 +21 21 MSU 1 +22 22 MSU 2 +23 23 MSU 3 +24 24 MSU 4 +25 25 SSU 1 +26 26 SSU 2 +27 27 SSU 3 +28 28 AMSU-A 1 +29 29 AMSU-A 2 +30 30 AMSU-A 3 +31 31 AMSU-A 4 +32 32 AMSU-A 5 +33 33 AMSU-A 6 +34 34 AMSU-A 7 +35 35 AMSU-A 8 +36 36 AMSU-A 9 +37 37 AMSU-A 10 +38 38 AMSU-A 11 +39 39 AMSU-A 12 +40 40 AMSU-A 13 +41 41 AMSU-A 14 +42 42 AMSU-A 15 +43 43 AMSU-B 1 / MHS 1 +44 44 AMSU-B 2 / MHS 2 +45 45 AMSU-B 3 / MHS 3 +46 46 AMSU-B 4 / MHS 4 +47 47 AMSU-B 5 / MHS 5 +48 48 AVHRR 1 +49 49 AVHRR 2 +50 50 AVHRR 3A +51 51 AVHRR 3B +52 52 AVHRR 4 +53 53 AVHRR 5 +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2151.table b/definitions/bufr/tables/0/wmo/42/codetables/2151.table new file mode 100644 index 000000000..45c80df10 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2151.table @@ -0,0 +1,11 @@ +0 0 HIRS +1 1 MSU +2 2 SSU +3 3 AMSU-A1-1 +4 4 AMSU-A1-2 +5 5 AMSU-A2 +6 6 AMSU-B +7 7 AVHRR +8 8 RESERVED +9 9 MHS +2047 2047 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2152.table b/definitions/bufr/tables/0/wmo/42/codetables/2152.table new file mode 100644 index 000000000..880c384cf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2152.table @@ -0,0 +1,13 @@ +1 1 HIGH-RESOLUTION INFRARED SOUNDER (HIRS) +2 2 MICROWAVE SOUNDING UNIT (MSU) +3 3 STRATOSPHERIC SOUNDING UNIT (SSU) +4 4 AMI WIND MODE +5 5 AMI WAVE MODE +6 6 AMI IMAGE MODE +7 7 RADAR ALTIMETER +8 8 ATSR +9 9 GEOSTATIONARY IMAGER +10 10 GEOSTATIONARY SOUNDER +11 11 GEOSTATIONARY EARTH RADIATION (GERB) +12 12 MULTI-CHANNEL SCANNING RADIOMETER +13 13 POLAR-ORBITING IMAGER diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2158.table b/definitions/bufr/tables/0/wmo/42/codetables/2158.table new file mode 100644 index 000000000..97c4449c5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2158.table @@ -0,0 +1,8 @@ +1 1 MISMATCH IN RED VEC HPA +2 2 MISMATCH IN RED VEC RFSS +3 3 PTR CALIBRATION BAND 320 MHZ (KU) +4 4 PTR CALIBRATION BAND 80 MHZ (KU) +5 5 PTR CALIBRATION BAND 20 MHZ (KU) +6 6 PTR CALIBRATION BAND 160 MHZ (S) +7 7 KU FLIGHT CALIBRATION PARAMETERS AVAILABLE +8 8 S FLIGHT CALIBRATION PARAMETERS AVAILABLE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2159.table b/definitions/bufr/tables/0/wmo/42/codetables/2159.table new file mode 100644 index 000000000..63cb87c78 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2159.table @@ -0,0 +1,7 @@ +1 1 TEMPERATURE INCONSISTENCY +2 2 DATA IS MISSING +3 3 REDUNDANCY CHANNEL +4 4 POWER BUS PROTECTION +5 5 OVERVOLTAGE/OVERLOAD PROTECTION +6 6 RESERVED +7 7 RESERVED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2160.table b/definitions/bufr/tables/0/wmo/42/codetables/2160.table new file mode 100644 index 000000000..fd7f37274 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2160.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 10 TO LESS THAN 20 MM +2 2 RESERVED +3 3 20 TO LESS THAN 40 MM +4 4 RESERVED +5 5 40 TO LESS THAN 60 MM +6 6 RESERVED +7 7 60 TO LESS THAN 90 MM +8 8 90 TO LESS THAN 110 MM +9 9 110 MM AND GREATER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2161.table b/definitions/bufr/tables/0/wmo/42/codetables/2161.table new file mode 100644 index 000000000..55b88f4de --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2161.table @@ -0,0 +1,5 @@ +11 11 WIND HEIGHT CALCULATED FROM MEDIAN CLOUD-TOP PRESSURE OF TARGET +12 12 TARGET IS CLOUDY +13 13 LOW-LEVEL INVERSION +14 14 CROSS CORRELATION CONTRIBUTION (CCC) METHOD +15 15 NESTED TRACKING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2162.table b/definitions/bufr/tables/0/wmo/42/codetables/2162.table new file mode 100644 index 000000000..510f09aa3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2162.table @@ -0,0 +1,19 @@ +0 0 AUTO EDITOR +1 1 IRW HEIGHT ASSIGNMENT +2 2 WV HEIGHT ASSIGNMENT +3 3 H2O INTERCEPT HEIGHT ASSIGNMENT +4 4 CO2 SLICING HEIGHT ASSIGNMENT +5 5 LOW PIXEL MAX GRADIENT +6 6 HIGHER PIXEL MAX GRADIENT +7 7 PRIMARY HEIGHT ASSIGNMENT +8 8 LAYER THICKNESS ASSIGNMENT +9 9 CUMULATIVE CONTRIBUTION FUNCTION - 10 PER CENT HEIGHT +10 10 CUMULATIVE CONTRIBUTION FUNCTION - 50 PER CENT HEIGHT +11 11 CUMULATIVE CONTRIBUTION FUNCTION - 90 PER CENT HEIGHT +12 12 CUMULATIVE CONTRIBUTION FUNCTION - HEIGHT OF MAXIMUM GRADIENT +13 13 IR/TWO WV CHANNEL RATIONING METHOD +14 14 COMPOSITE HEIGHT ASSIGNMENT +15 15 OPTIMAL ESTIMATION +16 16 INVERSION CORRECTION +17 17 GEOMETRIC HEIGHT ASSIGNMENT +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2163.table b/definitions/bufr/tables/0/wmo/42/codetables/2163.table new file mode 100644 index 000000000..8cac63196 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2163.table @@ -0,0 +1,16 @@ +0 0 AUTO EDITOR +1 1 IRW HEIGHT ASSIGNMENT +2 2 WV HEIGHT ASSIGNMENT +3 3 H2O INTERCEPT HEIGHT ASSIGNMENT +4 4 CO2 SLICING HEIGHT ASSIGNMENT +5 5 LOW PIXEL MAX GRADIENT +6 6 HIGHER PIXEL MAX GRADIENT +7 7 PRIMARY HEIGHT ASSIGNMENT +8 8 LAYER THICKNESS ASSIGNMENT +9 9 CUMULATIVE CONTRIBUTION FUNCTION - 10 PER CENT HEIGHT +10 10 CUMULATIVE CONTRIBUTION FUNCTION - 50 PER CENT HEIGHT +11 11 CUMULATIVE CONTRIBUTION FUNCTION - 90 PER CENT HEIGHT +12 12 CUMULATIVE CONTRIBUTION FUNCTION - HEIGHT OF MAXIMUM GRADIENT +13 13 IR / TWO WV CHANNEL RATIOING METHOD +14 14 COMPOSITE HEIGHT ASSIGNMENT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2164.table b/definitions/bufr/tables/0/wmo/42/codetables/2164.table new file mode 100644 index 000000000..4bf9aa961 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2164.table @@ -0,0 +1,5 @@ +0 0 LP - NORMS LEAST SQUARE MINIMUM +1 1 EN - EUCLIDEAN NORM WITH RADIANCE CORRELATION +2 2 CC - CROSS CORRELATION +3 3 STEREO MATCHING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2165.table b/definitions/bufr/tables/0/wmo/42/codetables/2165.table new file mode 100644 index 000000000..628be0e75 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2165.table @@ -0,0 +1,7 @@ +1 1 CLEAR PATH +2 2 PARTLY CLOUDY PATH +3 3 CLOUDY PATH +4 4 APODIZED +5 5 UNAPODIZED +6 6 RECONSTRUCTED +7 7 CLOUD CLEARED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2166.table b/definitions/bufr/tables/0/wmo/42/codetables/2166.table new file mode 100644 index 000000000..efac38f8d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2166.table @@ -0,0 +1,6 @@ +0 0 TYPE NOT DEFINED +1 1 AUTOMATED STATISTICAL REGRESSION +2 2 CLEAR PATH +3 3 PARTLY CLOUDY PATH +4 4 CLOUDY PATH +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2167.table b/definitions/bufr/tables/0/wmo/42/codetables/2167.table new file mode 100644 index 000000000..acb2f9d9c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2167.table @@ -0,0 +1,4 @@ +0 0 METHOD NOT DEFINED +1 1 1B RAW RADIANCE +2 2 PROCESSED RADIANCE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2169.table b/definitions/bufr/tables/0/wmo/42/codetables/2169.table new file mode 100644 index 000000000..bd31667d0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2169.table @@ -0,0 +1,5 @@ +0 0 CUP ROTOR +1 1 PROPELLER ROTOR +2 2 WIND OBSERVATION THROUGH AMBIENT NOISE (WOTAN) +3 3 SONIC +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2170.table b/definitions/bufr/tables/0/wmo/42/codetables/2170.table new file mode 100644 index 000000000..05bab00d7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2170.table @@ -0,0 +1,5 @@ +0 0 SPECTRASENSORS WVSS-II, VERSION 1 +1 1 SPECTRASENSORS WVSS-II, VERSION 2 +2 2 SPECTRASENSORS WVSS-II, VERSION 3 +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2172.table b/definitions/bufr/tables/0/wmo/42/codetables/2172.table new file mode 100644 index 000000000..e10ef52b8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2172.table @@ -0,0 +1,5 @@ +0 0 RESERVED +1 1 RETRIEVAL FROM A NADIR SOUNDING +2 2 RETRIEVAL FROM A LIMB SOUNDING +3 3 RETRIEVAL FROM AN OCCULTATION SOUNDING +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2175.table b/definitions/bufr/tables/0/wmo/42/codetables/2175.table new file mode 100644 index 000000000..2cf2a3d55 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2175.table @@ -0,0 +1,9 @@ +0 0 MANUAL MEASUREMENT +1 1 TIPPING BUCKET METHOD +2 2 WEIGHING METHOD +3 3 OPTICAL METHOD +4 4 PRESSURE METHOD +5 5 FLOAT METHOD +6 6 DROP COUNTER METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2176.table b/definitions/bufr/tables/0/wmo/42/codetables/2176.table new file mode 100644 index 000000000..2c27a6f91 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2176.table @@ -0,0 +1,6 @@ +0 0 MANUAL OBSERVATION +1 1 VIDEO CAMERA METHOD +2 2 INFRARED METHOD +3 3 LASER METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2177.table b/definitions/bufr/tables/0/wmo/42/codetables/2177.table new file mode 100644 index 000000000..e7bb67a7d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2177.table @@ -0,0 +1,6 @@ +0 0 MANUAL OBSERVATION +1 1 ULTRASONIC METHOD +2 2 VIDEO CAMERA METHOD +3 3 LASER METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2178.table b/definitions/bufr/tables/0/wmo/42/codetables/2178.table new file mode 100644 index 000000000..f4f8b592c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2178.table @@ -0,0 +1,5 @@ +0 0 MANUAL OBSERVATION +1 1 OPTICAL METHOD +2 2 CAPACITIVE METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2179.table b/definitions/bufr/tables/0/wmo/42/codetables/2179.table new file mode 100644 index 000000000..9e9ba189a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2179.table @@ -0,0 +1,6 @@ +0 0 MANUAL OBSERVATION +1 1 VAISALA ALGORITHM +2 2 ASOS (FAA) ALGORITHM +3 3 AWOS (CANADA) ALGORITHM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2180.table b/definitions/bufr/tables/0/wmo/42/codetables/2180.table new file mode 100644 index 000000000..0b21b2c26 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2180.table @@ -0,0 +1,8 @@ +0 0 MANUAL OBSERVATION +1 1 OPTICAL SCATTER SYSTEM COMBINED WITH PRECIPITATION OCCURRENCE SENSING SYSTEM +2 2 FORWARD AND/OR BACKSCATTER SYSTEM OF VISIBLE LIGHT +3 3 FORWARD AND/OR BACKSCATTER SYSTEM OF INFRARED LIGHT +4 4 INFRARED LIGHT EMITTING DIODE (IRED) SYSTEM +5 5 DOPPLER RADAR SYSTEM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2181.table b/definitions/bufr/tables/0/wmo/42/codetables/2181.table new file mode 100644 index 000000000..5096dc48a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2181.table @@ -0,0 +1,5 @@ +1 1 RAIN DETECTOR +2 2 FREEZING RAIN SENSOR +3 3 ICE DETECTION SENSOR +4 4 HAIL AND ICE PELLET SENSOR +20 20 OTHERS diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2182.table b/definitions/bufr/tables/0/wmo/42/codetables/2182.table new file mode 100644 index 000000000..4ffab2652 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2182.table @@ -0,0 +1,7 @@ +0 0 MANUAL MEASUREMENT +1 1 TRANSMISSOMETER SYSTEM (BASE > 25 M) +2 2 TRANSMISSOMETER SYSTEM (BASE < 25 M) +3 3 FORWARD SCATTER SYSTEM +4 4 BACKSCATTER SYSTEM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2183.table b/definitions/bufr/tables/0/wmo/42/codetables/2183.table new file mode 100644 index 000000000..a804ea1e1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2183.table @@ -0,0 +1,9 @@ +0 0 MANUAL OBSERVATION +1 1 CEILOMETER SYSTEM +2 2 INFRARED CAMERA SYSTEM +3 3 MICROWAVE VISUAL CAMERA SYSTEM +4 4 SKY IMAGER SYSTEM +5 5 VIDEO TIME-LAPSED CAMERA SYSTEM +6 6 MICROPULSE LIDAR (MPL) SYSTEM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2184.table b/definitions/bufr/tables/0/wmo/42/codetables/2184.table new file mode 100644 index 000000000..cf5ee84ac --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2184.table @@ -0,0 +1,9 @@ +0 0 MANUAL OBSERVATION +1 1 LIGHTNING IMAGING SENSOR +2 2 ELECTRICAL STORM IDENTIFICATION SENSOR +3 3 MAGNETIC FINDER SENSOR +4 4 LIGHTNING STRIKE SENSOR +5 5 FLASH COUNTER +6 6 ATDNET VLF WAVEFORM CORRELATED SENSOR +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2185.table b/definitions/bufr/tables/0/wmo/42/codetables/2185.table new file mode 100644 index 000000000..45b081051 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2185.table @@ -0,0 +1,7 @@ +0 0 MANUAL MEASUREMENT +1 1 BALANCED FLOATING METHOD +2 2 PRESSURE METHOD +3 3 ULTRASONIC METHOD +4 4 HYDRAULIC METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2186.table b/definitions/bufr/tables/0/wmo/42/codetables/2186.table new file mode 100644 index 000000000..2a9e71004 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2186.table @@ -0,0 +1,24 @@ +1 1 PRECIPITATION-UNKNOWN TYPE +2 2 LIQUID PRECIPITATION NOT FREEZING +3 3 LIQUID FREEZING PRECIPITATION +4 4 DRIZZLE +5 5 RAIN +6 6 SOLID PRECIPITATION +7 7 SNOW +8 8 SNOW GRAINS +9 9 SNOW PELLETS +10 10 ICE PELLETS +11 11 ICE CRYSTALS +12 12 DIAMOND DUST +13 13 SMALL HAIL +14 14 HAIL +15 15 GLAZE +16 16 RIME +17 17 SOFT RIME +18 18 HARD RIME +19 19 CLEAR ICE +20 20 WET SNOW +21 21 HOAR FROST +22 22 DEW +23 23 WHITE DEW +24 24 CONVECTIVE PRECIPITATION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2187.table b/definitions/bufr/tables/0/wmo/42/codetables/2187.table new file mode 100644 index 000000000..def3d2feb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2187.table @@ -0,0 +1,11 @@ +1 1 DUST/SAND WHIRL +2 2 SQUALLS +3 3 SAND STORM +4 4 DUST STORM +5 5 LIGHTNING - CLOUD TO SURFACE +6 6 LIGHTNING - CLOUD TO CLOUD +7 7 LIGHTNING - DISTANT +8 8 THUNDERSTORM +9 9 FUNNEL CLOUD NOT TOUCHING SURFACE +10 10 FUNNEL CLOUD TOUCHING SURFACE +11 11 SPRAY diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2188.table b/definitions/bufr/tables/0/wmo/42/codetables/2188.table new file mode 100644 index 000000000..bb8114ca8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2188.table @@ -0,0 +1,10 @@ +1 1 FOG +2 2 ICE FOG +3 3 STEAM FOG +7 7 MIST +8 8 HAZE +9 9 SMOKE +10 10 VOLCANIC ASH +11 11 DUST +12 12 SAND +13 13 SNOW diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2189.table b/definitions/bufr/tables/0/wmo/42/codetables/2189.table new file mode 100644 index 000000000..61ac9e322 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2189.table @@ -0,0 +1,4 @@ +1 1 MANUAL OBSERVATION +2 2 ALL LIGHTNING STRIKES WITHOUT DISCRIMINATION +3 3 LIGHTNING STRIKES CLOUD TO GROUND ONLY +4 4 ALL LIGHTNING STRIKES WITH DISCRIMINATION BETWEEN CLOUD TO GROUND AND CLOUD TO CLOUD diff --git a/definitions/bufr/tables/0/wmo/42/codetables/2191.table b/definitions/bufr/tables/0/wmo/42/codetables/2191.table new file mode 100644 index 000000000..2e96256c7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/2191.table @@ -0,0 +1,4 @@ +0 0 GEOPOTENTIAL HEIGHT CALCULATED FROM PRESSURE +1 1 GEOPOTENTIAL HEIGHT CALCULATED FROM GPS HEIGHT +2 2 GEOPOTENTIAL HEIGHT CALCULATED FROM RADAR HEIGHT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/22056.table b/definitions/bufr/tables/0/wmo/42/codetables/22056.table new file mode 100644 index 000000000..28ddbf4e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/22056.table @@ -0,0 +1,4 @@ +0 0 UPWARDS PROFILE +1 1 DOWNWARDS PROFILE +2 2 HORIZONTAL +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/22060.table b/definitions/bufr/tables/0/wmo/42/codetables/22060.table new file mode 100644 index 000000000..b73ad3235 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/22060.table @@ -0,0 +1,4 @@ +0 0 DROGUE IS DETACHED +1 1 DROGUE IS ATTACHED +2 2 DROGUE STATUS UNKNOWN +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/22061.table b/definitions/bufr/tables/0/wmo/42/codetables/22061.table new file mode 100644 index 000000000..aa8c62bae --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/22061.table @@ -0,0 +1,11 @@ +0 0 CALM (GLASSY) +1 1 CALM (RIPPLED) +2 2 SMOOTH (WAVELETS) +3 3 SLIGHT +4 4 MODERATE +5 5 ROUGH +6 6 VERY ROUGH +7 7 HIGH +8 8 VERY HIGH +9 9 PHENOMENAL +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/22067.table b/definitions/bufr/tables/0/wmo/42/codetables/22067.table new file mode 100644 index 000000000..9ec3c9e85 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/22067.table @@ -0,0 +1,129 @@ +1 1 SIPPICAN T-4 +2 2 SIPPICAN T-4 +11 11 SIPPICAN T-5 +21 21 SIPPICAN FAST DEEP +31 31 SIPPICAN T-6 +32 32 SIPPICAN T-6 +41 41 SIPPICAN T-7 +42 42 SIPPICAN T-7 +51 51 SIPPICAN DEEP BLUE +52 52 SIPPICAN DEEP BLUE +61 61 SIPPICAN T-10 +71 71 SIPPICAN T-11 +81 81 SIPPICAN AXBT (300 M PROBES) +201 201 TSK T-4 +202 202 TSK T-4 +211 211 TSK T-6 +212 212 TSK T-6 +221 221 TSK T-7 +222 222 TSK T-7 +231 231 TSK T-5 +241 241 TSK T-10 +251 251 TSK DEEP BLUE +252 252 TSK DEEP BLUE +261 261 TSK AXBT +401 401 SPARTON XBT-1 +411 411 SPARTON XBT-3 +421 421 SPARTON XBT-4 +431 431 SPARTON XBT-5 +441 441 SPARTON XBT-5DB +451 451 SPARTON XBT-6 +461 461 SPARTON XBT-7 +462 462 SPARTON XBT-7 +471 471 SPARTON XBT-7DB +481 481 SPARTON XBT-10 +491 491 SPARTON XBT-20 +501 501 SPARTON XBT-20DB +510 510 SPARTON 536 AXBT +700 700 SIPPICAN XCTD STANDARD +710 710 SIPPICAN XCTD DEEP +720 720 SIPPICAN AXCTD +730 730 SIPPICAN SXCTD +741 741 TSK XCTD/XCTD-1/XCTD-1N/XCTD-1A +742 742 TSK XCTD-2/XCTD-2N/XCTD-4A +743 743 TSK XCTD-2F +744 744 TSK XCTD-3/XCTD-3N +745 745 TSK XCTD-4/XCTD-4N +746 746 TSK XCTP-1 +747 747 TSK XCTP-4 +751 751 TSK AXCTD +780 780 SEA-BIRD SBE21 SEACAT THERMOSALINOGRAPH +781 781 SEA-BIRD SBE45 MICROTSG THERMOSALINOGRAPH +800 800 MECHANICAL BT +810 810 HYDROCAST +820 820 THERMISTOR CHAIN +825 825 TEMPERATURE (SONIC) AND PRESSURE PROBES +830 830 CTD +831 831 CTD-P-ALACE FLOAT +834 834 PROVOR V SBE +835 835 PROVOR IV +836 836 PROVOR III +837 837 ARVOR_C, SBE CONDUCTIVITY SENSOR +838 838 ARVOR_D, SBE CONDUCTIVITY SENSOR +839 839 PROVOR-II, SBE CONDUCTIVITY SENSOR +840 840 PROVOR, NO CONDUCTIVITY SENSOR +841 841 PROVOR, SEA-BIRD CONDUCTIVITY SENSOR +842 842 PROVOR, FSI CONDUCTIVITY SENSOR +843 843 POLAR OCEAN PROFILING SYSTEM (POPS), PROVOR, SBE CTD +844 844 PROFILING FLOAT, ARVOR, SEA-BIRD CONDUCTIVITY SENSOR +845 845 WEBB RESEARCH, NO CONDUCTIVITY SENSOR +846 846 WEBB RESEARCH, SEA-BIRD CONDUCTIVITY SENSOR +847 847 WEBB RESEARCH, FSI CONDUCTIVITY SENSOR +848 848 APEX-EM, SBE CONDUCTIVITY SENSOR +849 849 APEX_D, SBE CONDUCTIVITY SENSOR +850 850 SOLO, NO CONDUCTIVITY SENSOR +851 851 SOLO, SEA-BIRD CONDUCTIVITY SENSOR +852 852 SOLO, FSI CONDUCTIVITY SENSOR +853 853 PROFILING FLOAT, SOLO2 (SCRIPPS), SEA-BIRD CONDUCTIVITY SENSOR +854 854 S2A, SBE CONDUCTIVITY SENSOR +855 855 PROFILING FLOAT, NINJA, NO CONDUCTIVITY SENSOR +856 856 PROFILING FLOAT, NINJA, SBE CONDUCTIVITY SENSOR +857 857 PROFILING FLOAT, NINJA, FSI CONDUCTIVITY SENSOR +858 858 PROFILING FLOAT, NINJA, TSK CONDUCTIVITY SENSOR +859 859 PROFILING FLOAT, NEMO, NO CONDUCTIVITY SENSOR +860 860 PROFILING FLOAT, NEMO, SBE CONDUCTIVITY SENSOR +861 861 PROFILING FLOAT, NEMO, FSI CONDUCTIVITY SENSOR +862 862 SOLO_D, SBE CONDUCTIVITY SENSOR +863 863 NAVIS-A, SBE CONDUCTIVITY SENSOR +864 864 NINJA_D, SBE CONDUCTIVITY SENSOR +865 865 NOVA, SBE CONDUCTIVITY SENSOR +866 866 ALAMO, NO CONDUCTIVITY SENSOR +867 867 ALAMO, RBR CONDUCTIVITY SENSOR +868 868 ALAMO, SBE CONDUCTIVITY SENSOR +869 869 NAVIS_EBR, SBE CONDUCTIVITY SENSOR +870 870 HM2000 +871 871 COPEX +872 872 S2X +873 873 ALTO +874 874 SOLO_D_MRV +875 875 ALTO RBR +876 876 ALTO SBE +877 877 APEX RBR +878 878 ARVOR RBR +879 879 SOLO II RBR +880 880 S2A RBR +881 881 HM4000 SBE +882 882 HM6000 SBE +883 883 APEX_D RBR +884 884 SOLO_BGC, SBE +885 885 SOLO_BGC, RBR +886 886 SOLO_BGC_MRV, SBE +887 887 SOLO_BGC_MRV, RBR +888 888 PROVOR_V - JUMBO, SBE +889 889 PROVOR_V - JUMBO, RBR +890 890 PROVOR_III - JUMBO, SBE +891 891 PROVOR_III - JUMBO, RBR +900 900 SIPPICAN LMP-5 XBT +901 901 ICE-TETHERED PROFILER (ITP), SBE CTD +902 902 BROOKE OCEAN MOVING VESSEL PROFILER (MVP) +903 903 SEA-BIRD CTD +904 904 AML OCEANOGRAPHIC CTD +905 905 FALMOUTH SCIENTIFIC CTD +906 906 OCEAN SENSORS CTD +907 907 VALEPORT CTD +908 908 OCEANSCIENCE MVP +909 909 IDRONAUT CTD +910 910 SEA-BIRD SBE 38 +995 995 INSTRUMENT ATTACHED TO MARINE MAMMALS +996 996 INSTRUMENT ATTACHED TO ANIMALS OTHER THAN MARINE MAMMALS +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/22068.table b/definitions/bufr/tables/0/wmo/42/codetables/22068.table new file mode 100644 index 000000000..992097fd8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/22068.table @@ -0,0 +1,43 @@ +1 1 SIPPICAN STRIP CHART RECORDER +2 2 SIPPICAN MK2A/SSQ-61 +3 3 SIPPICAN MK-9 +4 4 SIPPICAN AN/BHQ-7/MK8 +5 5 SIPPICAN MK-12 +6 6 SIPPICAN MK-21 +7 7 SIPPICAN MK-8 LINEAR RECORDER +8 8 SIPPICAN MK-10 +10 10 SPARTON SOC BT/SV PROCESSOR MODEL 100 +11 11 LOCKHEED-SANDERS MODEL OL5005 +20 20 ARGOS XBT-ST +21 21 CLS-ARGOS/PROTECNO XBT-ST MODEL-1 +22 22 CLS-ARGOS/PROTECNO XBT-ST MODEL-2 +30 30 BATHY SYSTEMS SA-810 +31 31 SCRIPPS METROBYTE CONTROLLER +32 32 MURAYAMA DENKI Z-60-16 III +33 33 MURAYAMA DENKI Z-60-16 II +34 34 PROTECNO ETSM2 +35 35 NAUTILUS MARINE SERVICE NMS-XBT +40 40 TSK MK-2A +41 41 TSK MK-2S +42 42 TSK MK-30 +43 43 TSK MK-30N +45 45 TSK MK-100 +46 46 TSK MK-130 COMPATIBLE RECORDER FOR BOTH XBT AND XCTD +47 47 TSK MK-130A XCTD RECORDER +48 48 TSK AXBT RECEIVER MK-300 +49 49 TSK MK-150/MK-150N/MK-200 COMPATIBLE RECORDER FOR BOTH XBT AND XCTD +50 50 JMA ASTOS +60 60 ARGOS COMMUNICATIONS, SAMPLING ON UP TRANSIT +61 61 ARGOS COMMUNICATIONS, SAMPLING ON DOWN TRANSIT +62 62 ORBCOMM COMMUNICATIONS, SAMPLING ON UP TRANSIT +63 63 ORBCOMM COMMUNICATIONS, SAMPLING ON DOWN TRANSIT +64 64 IRIDIUM COMMUNICATIONS, SAMPLING ON UP TRANSIT +65 65 IRIDIUM COMMUNICATIONS, SAMPLING ON DOWN TRANSIT +70 70 CSIRO DEVIL-1 XBT ACQUISITION SYSTEM +71 71 CSIRO DEVIL-2 XBT ACQUISITION SYSTEM +72 72 TURO/CSIRO QUOLL XBT ACQUISITION SYSTEM +80 80 APPLIED MICROSYSTEMS LTD., MICRO-SVT&P +81 81 SEA MAMMAL RESEARCH UNIT, UNIV. ST. ANDREWS, UK, UNCORRECTED SALINITY FROM A SEA MAMMAL MOUNTED INSTRUMENT +82 82 SEA MAMMAL RESEARCH UNIT, UNIV. ST. ANDREWS, UK, CORRECTED SALINITY FROM A SEA MAMMAL MOUNTED INSTRUMENT +99 99 UNKNOWN +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/22120.table b/definitions/bufr/tables/0/wmo/42/codetables/22120.table new file mode 100644 index 000000000..8c747ce66 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/22120.table @@ -0,0 +1,13 @@ +0 0 GOOD DATA +1 1 MAXIMUM (HIGH) WATER LEVEL LIMIT EXCEEDED +2 2 MINIMUM (LOW) WATER LEVEL LIMIT EXCEEDED +3 3 RATE OF CHANGE LIMIT FOR WATER LEVEL EXCEEDED +4 4 FLAT LIMIT FOR WATER LEVEL EXCEEDED +5 5 OBSERVED MINUS PREDICTED WATER LEVEL VALUE LIMIT EXCEEDED +6 6 OBSERVED VALUE FROM PRIMARY WATER LEVEL SENSOR MINUS BACKUP WATER LEVEL SENSOR +7 7 VALUE EXCEEDED SPECIFIED TOLERANCE FROM EXPECTED VALUE +8 8 WATER LEVEL QA PARAMETER (SIGMAS AND/OR OUTLIERS) LIMITS EXCEEDED +9 9 SEA TEMPERATURE OUTSIDE OF EXPECTED RANGE +10 10 MULTIPLE QC CHECKS (ABOVE) FAILED +11 11 NO AUTOMATED WATER LEVEL CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/22121.table b/definitions/bufr/tables/0/wmo/42/codetables/22121.table new file mode 100644 index 000000000..7d4dfa821 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/22121.table @@ -0,0 +1,9 @@ +0 0 OPERATIONAL +1 1 POSSIBLE CLOGGING PROBLEM OR OTHERWISE DEGRADED WATER LEVEL DATA +2 2 POSSIBLE DATUM SHIFT +3 3 UNKNOWN STATUS OF WATER LEVEL SENSOR +4 4 SUSPECTED OR KNOWN SEA TEMPERATURE SENSOR PROBLEM +5 5 MULTIPLE POSSIBLE PROBLEMS (ABOVE) +6 6 BAD DATA - DO NOT DISSEMINATE! +7 7 NO MANUAL WATER LEVEL CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/22122.table b/definitions/bufr/tables/0/wmo/42/codetables/22122.table new file mode 100644 index 000000000..aa9d5ebbe --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/22122.table @@ -0,0 +1,8 @@ +0 0 GOOD DATA FROM ALL SENSORS +1 1 WIND DIRECTION OUTSIDE OF ALLOWABLE RANGE +2 2 WIND SPEED OUTSIDE OF EXPECTED RANGE +3 3 BAROMETRIC PRESSURE OUTSIDE OF EXPECTED RANGE +4 4 AIR TEMPERATURE OUTSIDE OF EXPECTED RANGE +5 5 MULTIPLE SENSORS FAILED QC CHECKS +6 6 NO AUTOMATED METEOROLOGICAL DATA CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/22123.table b/definitions/bufr/tables/0/wmo/42/codetables/22123.table new file mode 100644 index 000000000..acfb61609 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/22123.table @@ -0,0 +1,9 @@ +0 0 OPERATIONAL +1 1 SUSPECTED OR KNOWN PROBLEM WITH WIND SENSOR +2 2 SUSPECTED OR KNOWN PROBLEM WITH BAROMETRIC PRESSURE SENSOR +3 3 SUSPECTED OR KNOWN PROBLEM WITH AIR TEMPERATURE SENSOR +4 4 UNKNOWN STATUS OF ALL SENSORS +5 5 SUSPECTED OR KNOWN PROBLEMS WITH MULTIPLE SENSORS +6 6 BAD DATA - DO NOT DISSEMINATE! +7 7 NO MANUAL METEOROLOGICAL DATA CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/22178.table b/definitions/bufr/tables/0/wmo/42/codetables/22178.table new file mode 100644 index 000000000..355848cc5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/22178.table @@ -0,0 +1,12 @@ +0 0 UNKNOWN +1 1 LM-2A DECK-MOUNTED +2 2 LM-3A HAND-HELD +3 3 LM-4A THRU-HULL +10 10 AL-12 TSK AUTOLAUNCHER (UP TO 12 PROBES) +20 20 SIO XBT AUTOLAUNCHER (UP TO 6 PROBES) +30 30 AOML XBT V6 AUTOLAUNCHER (UP TO 6 DEEP BLUE PROBES) +31 31 AOML XBT V8.0 AUTOLAUNCHER (UP TO 8 DEEP BLUE PROBES) +32 32 AOML XBT V8.1 AUTOLAUNCHER (UP TO 8 DEEP BLUE AND FAST DEEP PROBES) +90 90 CSIRO DEVIL AUTOLAUNCHER +100 100 MFSTEP AUTOLAUNCHER (MEDITERRANEAN) +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23001.table b/definitions/bufr/tables/0/wmo/42/codetables/23001.table new file mode 100644 index 000000000..92ac5deaf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23001.table @@ -0,0 +1,5 @@ +0 0 RESERVED +1 1 ARTICLES 1 AND 2 +2 2 ARTICLE 3 +3 3 ARTICLE 5.2 +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23002.table b/definitions/bufr/tables/0/wmo/42/codetables/23002.table new file mode 100644 index 000000000..12815c6a8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23002.table @@ -0,0 +1,16 @@ +0 0 RESERVED +1 1 NUCLEAR REACTOR ON GROUND +2 2 NUCLEAR REACTOR AT SEA +3 3 NUCLEAR REACTOR IN SPACE +4 4 NUCLEAR FUEL FACILITY +5 5 RADIOACTIVE WASTE MANAGEMENT FACILITY +6 6 TRANSPORT OF NUCLEAR FUEL OR RADIOACTIVE WASTE +7 7 STORAGE OF NUCLEAR FUEL OR RADIOACTIVE WASTE +8 8 MANUFACTURE OF RADIO-ISOTOPES +9 9 USE OF RADIO-ISOTOPES +10 10 STORAGE OF RADIO-ISOTOPES +11 11 DISPOSAL OF RADIO-ISOTOPES +12 12 TRANSPORT OF RADIO-ISOTOPES +13 13 USE OF RADIO-ISOTOPES FOR POWER GENERATION +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23003.table b/definitions/bufr/tables/0/wmo/42/codetables/23003.table new file mode 100644 index 000000000..e3e891f9b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23003.table @@ -0,0 +1,8 @@ +0 0 NO RELEASE +1 1 RELEASE TO ATMOSPHERE +2 2 RELEASE TO WATER +3 3 RELEASE TO BOTH ATMOSPHERE AND WATER +4 4 EXPECTED RELEASE TO ATMOSPHERE +5 5 EXPECTED RELEASE TO WATER +6 6 EXPECTED RELEASE TO BOTH ATMOSPHERE AND WATER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23004.table b/definitions/bufr/tables/0/wmo/42/codetables/23004.table new file mode 100644 index 000000000..383731cec --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23004.table @@ -0,0 +1,6 @@ +0 0 NO COUNTERMEASURES +1 1 EVACUATION +2 2 SHELTERING +3 3 PROPHYLAXIS +4 4 WATER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23005.table b/definitions/bufr/tables/0/wmo/42/codetables/23005.table new file mode 100644 index 000000000..c5ff5ae75 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23005.table @@ -0,0 +1,4 @@ +0 0 INCIDENT STATE DOES NOT UNDERSTAND WHAT HAPPENED +1 1 INCIDENT STATE KNOWS THE CAUSE OF THE INCIDENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23006.table b/definitions/bufr/tables/0/wmo/42/codetables/23006.table new file mode 100644 index 000000000..fe7706af4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23006.table @@ -0,0 +1,8 @@ +0 0 NO IMPROVEMENT +1 1 UNSTABLE +2 2 NO DETERIORATION +3 3 IMPROVING +4 4 STABLE +5 5 DETERIORATING +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23007.table b/definitions/bufr/tables/0/wmo/42/codetables/23007.table new file mode 100644 index 000000000..59fc043a8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23007.table @@ -0,0 +1,5 @@ +0 0 NO RELEASE +1 1 RELEASE HAS STOPPED +2 2 RELEASE +3 3 RELEASE IS CONTINUING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23008.table b/definitions/bufr/tables/0/wmo/42/codetables/23008.table new file mode 100644 index 000000000..4ac5c5837 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23008.table @@ -0,0 +1,4 @@ +0 0 GASEOUS +1 1 PARTICULATE +2 2 MIXTURE OF GASEOUS AND PARTICULATE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23009.table b/definitions/bufr/tables/0/wmo/42/codetables/23009.table new file mode 100644 index 000000000..4ac5c5837 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23009.table @@ -0,0 +1,4 @@ +0 0 GASEOUS +1 1 PARTICULATE +2 2 MIXTURE OF GASEOUS AND PARTICULATE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23016.table b/definitions/bufr/tables/0/wmo/42/codetables/23016.table new file mode 100644 index 000000000..ae84bae45 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23016.table @@ -0,0 +1,4 @@ +0 0 NO SIGNIFICANT CHEMICAL TOXIC HEALTH EFFECT +1 1 SIGNIFICANT CHEMICAL TOXIC HEALTH EFFECT POSSIBLE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23018.table b/definitions/bufr/tables/0/wmo/42/codetables/23018.table new file mode 100644 index 000000000..ccdcc456d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23018.table @@ -0,0 +1,6 @@ +0 0 RELEASE NO LONGER OCCURRING +1 1 RELEASE STILL OCCURRING +2 2 RELEASE EXPECTED TO INCREASE IN NEXT SIX HOURS +3 3 RELEASE EXPECTED TO REMAIN CONSTANT IN NEXT SIX HOURS +4 4 RELEASE EXPECTED TO DECREASE IN NEXT SIX HOURS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23031.table b/definitions/bufr/tables/0/wmo/42/codetables/23031.table new file mode 100644 index 000000000..cf20e26ee --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23031.table @@ -0,0 +1,4 @@ +0 0 PLUME WILL NOT ENCOUNTER RAIN IN INCIDENT STATE +1 1 PLUME WILL ENCOUNTER RAIN IN INCIDENT STATE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/23032.table b/definitions/bufr/tables/0/wmo/42/codetables/23032.table new file mode 100644 index 000000000..0f439b70d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/23032.table @@ -0,0 +1,4 @@ +0 0 NO SIGNIFICANT CHANGE EXPECTED WITHIN THE NEXT SIX HOURS +1 1 ANTICIPATED SIGNIFICANT CHANGE EXPECTED WITHIN THE NEXT SIX HOURS +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/24003.table b/definitions/bufr/tables/0/wmo/42/codetables/24003.table new file mode 100644 index 000000000..2daa8104b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/24003.table @@ -0,0 +1,5 @@ +0 0 NOBLE GASES +1 1 IODINES +2 2 CAESIUMS +3 3 TRANSURANICS +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25004.table b/definitions/bufr/tables/0/wmo/42/codetables/25004.table new file mode 100644 index 000000000..dfe451727 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25004.table @@ -0,0 +1,4 @@ +0 0 INCOHERENT +1 1 COHERENT (DOPPLER) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25005.table b/definitions/bufr/tables/0/wmo/42/codetables/25005.table new file mode 100644 index 000000000..bc693a7bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25005.table @@ -0,0 +1,4 @@ +0 0 LOGARITHM - 2.5 DB +1 1 LINEAR +2 2 SPECIAL +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25006.table b/definitions/bufr/tables/0/wmo/42/codetables/25006.table new file mode 100644 index 000000000..bf9d1f52a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25006.table @@ -0,0 +1,5 @@ +0 0 ZH TO R CONVERSION +1 1 (ZH, ZDR) TO (NO, DO) TO R +2 2 (Z (F1), Z (F2)) TO ATTENUATION TO R +6 6 OTHER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25009.table b/definitions/bufr/tables/0/wmo/42/codetables/25009.table new file mode 100644 index 000000000..bf34fb227 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25009.table @@ -0,0 +1,4 @@ +1 1 NONE +2 2 CALIBRATION TARGET OR SIGNAL +3 3 AGAINST RAINGAUGES +4 4 AGAINST OTHER INSTRUMENTS (DISDROMETER - ATTENUATION) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25010.table b/definitions/bufr/tables/0/wmo/42/codetables/25010.table new file mode 100644 index 000000000..e88b3ca3c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25010.table @@ -0,0 +1,8 @@ +0 0 NONE +1 1 MAP +2 2 INSERTION OF HIGHER ELEVATION DATA AND MAP +3 3 ANALYSIS OF THE FLUCTUATING LOGARITHM SIGNAL (CLUTTER DETECTION) +4 4 EXTRACTION OF THE FLUCTUATING PART OF LINEAR SIGNAL (CLUTTER SUPPRESSION) +5 5 CLUTTER SUPPRESSION - DOPPLER +6 6 MULTIPARAMETER ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25011.table b/definitions/bufr/tables/0/wmo/42/codetables/25011.table new file mode 100644 index 000000000..f73949830 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25011.table @@ -0,0 +1,4 @@ +0 0 NONE +1 1 MAP OF CORRECTION FACTORS +2 2 INTERPOLATION (AZIMUTH OR ELEVATION) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25012.table b/definitions/bufr/tables/0/wmo/42/codetables/25012.table new file mode 100644 index 000000000..c869a4ace --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25012.table @@ -0,0 +1,4 @@ +0 0 HARDWARE +1 1 SOFTWARE +2 2 HARDWARE AND SOFTWARE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25013.table b/definitions/bufr/tables/0/wmo/42/codetables/25013.table new file mode 100644 index 000000000..b91ea71db --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25013.table @@ -0,0 +1 @@ +1 1 BRIGHT-BAND CORRECTION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25015.table b/definitions/bufr/tables/0/wmo/42/codetables/25015.table new file mode 100644 index 000000000..043e587b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25015.table @@ -0,0 +1 @@ +1 1 RADOME ATTENUATION CORRECTION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25017.table b/definitions/bufr/tables/0/wmo/42/codetables/25017.table new file mode 100644 index 000000000..ed48487e1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25017.table @@ -0,0 +1 @@ +1 1 PRECIPITATION ATTENUATION CORRECTION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25020.table b/definitions/bufr/tables/0/wmo/42/codetables/25020.table new file mode 100644 index 000000000..6133da3bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25020.table @@ -0,0 +1,4 @@ +0 0 FFT (FAST FOURIER TRANSFORM) +1 1 PPP (PULSE-PAIR PROCESSING) +2 2 VPC (VECTOR-PHASE CHANGE) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25021.table b/definitions/bufr/tables/0/wmo/42/codetables/25021.table new file mode 100644 index 000000000..314716b3b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25021.table @@ -0,0 +1,5 @@ +1 1 SIMPLE AVERAGE +2 2 CONSENSUS AVERAGE +3 3 MEDIAN CHECK +4 4 VERTICAL CONSISTENCY CHECK +5 5 OTHER diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25022.table b/definitions/bufr/tables/0/wmo/42/codetables/25022.table new file mode 100644 index 000000000..95848784f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25022.table @@ -0,0 +1,8 @@ +1 1 UNPROCESSED +2 2 LAND SUSPECTED +3 3 WIND SPEED TOO LARGE +4 4 ICE DETECTED +5 5 RAIN DETECTED (MICROWAVE RETRIEVALS ONLY) +6 6 CLOUDY DETECTED (INFRA-RED RETRIEVALS ONLY) +7 7 COSMETIC VALUE +8 8 SST OUT OF RANGE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25023.table b/definitions/bufr/tables/0/wmo/42/codetables/25023.table new file mode 100644 index 000000000..e4840dc8c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25023.table @@ -0,0 +1,8 @@ +1 1 DEFAULT CONFIDENCE VALUE HAS BEEN USED +2 2 DEFAULT BIAS AND STANDARD DEVIATION HAVE BEEN USED +3 3 SUN GLINT SUSPECTED +4 4 SEA ICE RETRIEVAL FOR MICROWAVE DATA +5 5 HIGH WIND SPEED RETRIEVAL +6 6 INACCURATE SST DUE TO LOW SST (< 285K) (ONLY APPLIES TO THE TMI INSTRUMENT) +7 7 RELAXED RAIN CONTAMINATION SUSPECTED +8 8 POTENTIAL SIDE LOBE CONTAMINATION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25024.table b/definitions/bufr/tables/0/wmo/42/codetables/25024.table new file mode 100644 index 000000000..81b26380c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25024.table @@ -0,0 +1,13 @@ +0 0 UNPROCESSED INFRARED RETRIEVAL +1 1 CLOUDY RETRIEVALS +2 2 BAD: DATA THAT ARE PROBABLY CONTAMINATED BY CLOUD +3 3 SUSPECT DATA +4 4 ACCEPTABLE DATA +5 5 EXCELLENT DATA +6 6 COOL SKIN SUSPECTED +10 10 UNPROCESSED MICROWAVE RETRIEVAL +11 11 QUESTIONABLE MICROWAVE RETRIEVAL THAT MAY BE CONTAMINATED +12 12 ACCEPTABLE MICROWAVE RETRIEVAL +13 13 HIGH PROBABILITY OF DIURNAL VARIABILITY +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25029.table b/definitions/bufr/tables/0/wmo/42/codetables/25029.table new file mode 100644 index 000000000..fb00d01ca --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25029.table @@ -0,0 +1,5 @@ +1 1 RESERVED +2 2 CALIBRATION TARGET OR SIGNAL +3 3 AGAINST RAINGAUGES +4 4 AGAINST OTHER INSTRUMENTS (DISDROMETER - ATTENUATION) +5 5 RESERVED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25030.table b/definitions/bufr/tables/0/wmo/42/codetables/25030.table new file mode 100644 index 000000000..c3235d6e5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25030.table @@ -0,0 +1,4 @@ +0 0 RUNNING MEAN SEA-SURFACE TEMPERATURE NOT USED BECAUSE USAGE CRITERIA NOT MET +1 1 RUNNING MEAN SEA-SURFACE TEMPERATURE NOT USED BECAUSE DATA NOT AVAILABLE +2 2 RUNNING MEAN SEA-SURFACE TEMPERATURE USED AS PREDICTOR +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25031.table b/definitions/bufr/tables/0/wmo/42/codetables/25031.table new file mode 100644 index 000000000..16ff950a1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25031.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 NO THINNING APPLIED (ALL NATIVE MODEL LEVELS ARE INCLUDED FROM BASE TO TOP OF PSEUDO-SOUNDING) +2 2 NATIVE MODEL LEVELS ARE PRESENT ONLY IF THEY ARE SIGNIFICANT LEVELS AS PER REGULATIONS B/C 25 FOR CONVENTIONAL TEMP SOUNDINGS +3 3 A PREDEFINED SUBSET OF NATIVE MODEL LEVELS IS PRESENT +4 4 NO NATIVE MODEL LEVELS ARE PRESENT. ALL PROFILE LEVELS ARE INTERPOLATED TO A PREDEFINED SET OF PRESSURE COORDINATE LEVELS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25032.table b/definitions/bufr/tables/0/wmo/42/codetables/25032.table new file mode 100644 index 000000000..9b894f470 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25032.table @@ -0,0 +1,4 @@ +0 0 RESERVED +1 1 DATA FROM LOW MODE +2 2 DATA FROM HIGH MODE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25033.table b/definitions/bufr/tables/0/wmo/42/codetables/25033.table new file mode 100644 index 000000000..e7141c078 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25033.table @@ -0,0 +1,4 @@ +0 0 WIND PROFILER OPERATING IN SUBMODE A +1 1 WIND PROFILER OPERATING IN SUBMODE B +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25034.table b/definitions/bufr/tables/0/wmo/42/codetables/25034.table new file mode 100644 index 000000000..473338a40 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25034.table @@ -0,0 +1,3 @@ +1 1 TEST A PERFORMED AND FAILED +2 2 TEST B PERFORMED AND FAILED +3 3 TEST RESULTS INCONCLUSIVE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25035.table b/definitions/bufr/tables/0/wmo/42/codetables/25035.table new file mode 100644 index 000000000..a0c8faa59 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25035.table @@ -0,0 +1,8 @@ +0 0 NOT DEFINED +1 1 INDIVIDUAL VOLTAGE DEFLECTION +2 2 CURRENT BASED, ABOVE A THRESHOLD +3 3 VOLTAGE BASED, ABOVE A THRESHOLD +4 4 CONSENSUS OF SENSORS, CURRENT ABOVE A THRESHOLD +5 5 CONSENSUS OF SENSORS, VOLTAGE ABOVE A THRESHOLD +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25036.table b/definitions/bufr/tables/0/wmo/42/codetables/25036.table new file mode 100644 index 000000000..79ebd8887 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25036.table @@ -0,0 +1,4 @@ +0 0 NETWORK OF SEVERAL DIRECTION-FINDERS OPERATING ON THE SAME INDIVIDUAL ATMOSPHERICS +1 1 NETWORK OF SEVERAL ARRIVAL-TIME STATIONS OPERATING ON THE SAME INDIVIDUAL ATMOSPHERICS +6 6 SINGLE STATION RANGE BEARING TECHNIQUE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25040.table b/definitions/bufr/tables/0/wmo/42/codetables/25040.table new file mode 100644 index 000000000..3ddf12e20 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25040.table @@ -0,0 +1,10 @@ +0 0 NON-SPECIFIC MODE +1 1 FIRST GUESS DATA +2 2 CLOUD DATA +3 3 AVERAGE VECTOR DATA +4 4 PRIMARY DATA +5 5 GUESS DATA +6 6 VECTOR DATA +7 7 TRACER DATA; THIS IMAGE +8 8 TRACER DATA TO NEXT IMAGE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25041.table b/definitions/bufr/tables/0/wmo/42/codetables/25041.table new file mode 100644 index 000000000..f388da0c2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25041.table @@ -0,0 +1,4 @@ +0 0 DIRECTION ORIGINALLY REPORTED IN TRUE DEGREES +1 1 DIRECTION ORIGINALLY REPORTED USING CODE TABLE 0700, FM 13 +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25042.table b/definitions/bufr/tables/0/wmo/42/codetables/25042.table new file mode 100644 index 000000000..f3cf05999 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25042.table @@ -0,0 +1,4 @@ +0 0 SPEED ORIGINALLY REPORTED IN METRES PER SECOND +1 1 SPEED ORIGINALLY REPORTED USING CODE TABLE 4451, FM 13 +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25053.table b/definitions/bufr/tables/0/wmo/42/codetables/25053.table new file mode 100644 index 000000000..af3413851 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25053.table @@ -0,0 +1,6 @@ +1 1 GOOD +2 2 REDUNDANT +3 3 QUESTIONABLE +4 4 BAD +5 5 EXPERIMENTAL +6 6 PRECIPITATING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25063.table b/definitions/bufr/tables/0/wmo/42/codetables/25063.table new file mode 100644 index 000000000..a8970eaf4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25063.table @@ -0,0 +1,4 @@ +0 0 NOT DEFINED +1 1 MAIN PROCESSOR +2 2 BACKUP PROCESSOR +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25069.table b/definitions/bufr/tables/0/wmo/42/codetables/25069.table new file mode 100644 index 000000000..e627613dd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25069.table @@ -0,0 +1,7 @@ +1 1 SMOOTHED +2 2 BASELINE ADJUSTED +3 3 NORMALIZED TIME INTERVAL +4 4 OUTLIER CHECKED +5 5 PLAUSIBILITY CHECKED +6 6 CONSISTENCY CHECKED +7 7 INTERPOLATED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25086.table b/definitions/bufr/tables/0/wmo/42/codetables/25086.table new file mode 100644 index 000000000..294fa6977 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25086.table @@ -0,0 +1,4 @@ +0 0 DEPTHS ARE NOT CORRECTED +1 1 DEPTHS ARE CORRECTED +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25090.table b/definitions/bufr/tables/0/wmo/42/codetables/25090.table new file mode 100644 index 000000000..77c509d1a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25090.table @@ -0,0 +1,11 @@ +0 0 ORBIT COMPUTED DURING A MANOEUVRE +1 1 ADJUSTED MISSION OPERATIONS ORBIT +2 2 EXTRAPOLATED MISSION OPERATIONS ORBIT +3 3 ADJUSTED (PRELIMINARY/PRECISE) ORBIT +4 4 (PRELIMINARY/PRECISE) ORBIT IS ESTIMATED DURING A MANOEUVRE PERIOD +5 5 (PRELIMINARY/PRECISE) ORBIT IS INTERPOLATED OVER A TRACKING DATA GAP +6 6 (PRELIMINARY/PRECISE) ORBIT IS EXTRAPOLATED FOR A DURATION LESS THAN 1 DAY +7 7 (PRELIMINARY/PRECISE) ORBIT IS EXTRAPOLATED FOR A DURATION THAT RANGES FROM 1 DAY TO 2 DAYS +8 8 (PRELIMINARY/PRECISE) ORBIT IS EXTRAPOLATED FOR A DURATION LARGER THAN 2 DAYS, OR THAT THE ORBIT IS EXTRAPOLATED JUST AFTER A MANOEUVRE +9 9 DORIS DIODE NAVIGATOR ORBIT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25093.table b/definitions/bufr/tables/0/wmo/42/codetables/25093.table new file mode 100644 index 000000000..e547e6c81 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25093.table @@ -0,0 +1,3 @@ +1 1 NO CORRECTION +2 2 VERTICAL VELOCITY CORRECTION +7 7 ALL CORRECTIONS diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25095.table b/definitions/bufr/tables/0/wmo/42/codetables/25095.table new file mode 100644 index 000000000..c446a5045 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25095.table @@ -0,0 +1 @@ +1 1 ALTIMETER OPERATING (0 IF NOMINAL, 1 IF BACKUP) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25096.table b/definitions/bufr/tables/0/wmo/42/codetables/25096.table new file mode 100644 index 000000000..89dcc3914 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25096.table @@ -0,0 +1,4 @@ +1 1 MODE INDICATOR (0 IF MODE 2, 1 IF MODE 1) +2 2 MODE 1 CALIBRATION SEQUENCE INDICATOR (0 IF NORMAL DATA TAKING EITHER MODE 1 OR 2, 1 IF MODE 1 CALIBRATION SEQUENCE) BITS 3 AND 4 INDICATE ACTIVE 23.8 GHZ CHANNEL(S): +3 3 CHANNEL 2 (0 IF ON, 1 IF OFF) +4 4 CHANNEL 3 (0 IF ON, 1 IF OFF) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25097.table b/definitions/bufr/tables/0/wmo/42/codetables/25097.table new file mode 100644 index 000000000..d4e1e4646 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25097.table @@ -0,0 +1,11 @@ +0 0 RANGES BETWEEN 0 AND 30 CM +1 1 RANGES BETWEEN 30 AND 60 CM +2 2 RANGES BETWEEN 60 AND 90 CM +3 3 RANGES BETWEEN 90 AND 120 CM +4 4 RANGES BETWEEN 120 AND 150 CM +5 5 RANGES BETWEEN 150 AND 180 CM +6 6 RANGES BETWEEN 180 AND 210 CM +7 7 RANGES BETWEEN 210 AND 240 CM +8 8 RANGES BETWEEN 240 AND 270 CM +9 9 RANGES LARGER THAN 270 CM +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25098.table b/definitions/bufr/tables/0/wmo/42/codetables/25098.table new file mode 100644 index 000000000..ac736f5c0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25098.table @@ -0,0 +1,8 @@ +1 1 KU BAND RANGE +2 2 C BAND RANGE +3 3 KU BAND SWH +4 4 C BAND SWH +5 5 KU BAND BACKSCATTER COEFFICIENT +6 6 C BAND BACKSCATTER COEFFICIENT +7 7 OFF NADIR ANGLE FROM KU BAND WAVEFORM PARAMETERS +8 8 OFF NADIR ANGLE FROM PLATFORM diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25099.table b/definitions/bufr/tables/0/wmo/42/codetables/25099.table new file mode 100644 index 000000000..94d679c10 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25099.table @@ -0,0 +1,6 @@ +1 1 KU BAND RANGE INSTRUMENTAL CORRECTION +2 2 C BAND RANGE INSTRUMENTAL CORRECTION +3 3 KU BAND SWH INSTRUMENTAL CORRECTION +4 4 C BAND SWH INSTRUMENTAL CORRECTION +5 5 KU BAND BACKSCATTER COEFFICIENT INSTRUMENTAL CORRECTION +6 6 C BAND BACKSCATTER COEFFICIENT INSTRUMENTAL CORRECTION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25110.table b/definitions/bufr/tables/0/wmo/42/codetables/25110.table new file mode 100644 index 000000000..912e01f54 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25110.table @@ -0,0 +1,6 @@ +1 1 RAW DATA ANALYSIS USED FOR RAW DATA CORRECTION. CORRECTION DONE USING DEFAULT PARAMETERS +2 2 RAW DATA ANALYSIS USED FOR RAW DATA CORRECTION. CORRECTION DONE USING RAW DATA ANALYSIS RESULTS +3 3 ANTENNA ELEVATION PATTERN CORRECTION APPLIED +4 4 NOMINAL CHIRP REPLICA USED +5 5 RECONSTRUCTED CHIRP USED +6 6 SLANT RANGE TO GROUND RANGE CONVERSION APPLIED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25112.table b/definitions/bufr/tables/0/wmo/42/codetables/25112.table new file mode 100644 index 000000000..a2a4ec9d3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25112.table @@ -0,0 +1,5 @@ +1 1 BAND SPECIFIC RANGE +2 2 BAND SPECIFIC SIGNIFICANT WAVE HEIGHT +3 3 BAND SPECIFIC BACKSCATTER COEFFICIENT +4 4 OFF NADIR ANGLE FROM BAND SPECIFIC WAVEFORM PARAMETERS +5 5 OFF NADIR ANGLE FROM PLATFORM diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25113.table b/definitions/bufr/tables/0/wmo/42/codetables/25113.table new file mode 100644 index 000000000..ef394b626 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25113.table @@ -0,0 +1,3 @@ +1 1 BAND SPECIFIC RANGE INSTRUMENTAL CORRECTION +2 2 BAND SPECIFIC SIGNIFICANT WAVE HEIGHT INSTRUMENTAL CORRECTION +3 3 BAND SPECIFIC BACKSCATTER COEFFICIENT INSTRUMENTAL CORRECTION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25120.table b/definitions/bufr/tables/0/wmo/42/codetables/25120.table new file mode 100644 index 000000000..c45b0addf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25120.table @@ -0,0 +1,4 @@ +0 0 PERCENTAGE OF DSRS FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS GREATER THAN THE ACCEPTABLE THRESHOLD +1 1 PERCENTAGE OF DSRS FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS LESS THAN THE ACCEPTABLE THRESHOLD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25122.table b/definitions/bufr/tables/0/wmo/42/codetables/25122.table new file mode 100644 index 000000000..1085ef980 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25122.table @@ -0,0 +1,4 @@ +0 0 HARDWARE CONFIGURATION FOR RF IS A +1 1 HARDWARE CONFIGURATION FOR RF IS B +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25123.table b/definitions/bufr/tables/0/wmo/42/codetables/25123.table new file mode 100644 index 000000000..70f0670e9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25123.table @@ -0,0 +1,4 @@ +0 0 HARDWARE CONFIGURATION FOR HPA IS A +1 1 HARDWARE CONFIGURATION FOR HPA IS B +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25124.table b/definitions/bufr/tables/0/wmo/42/codetables/25124.table new file mode 100644 index 000000000..c45b0addf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25124.table @@ -0,0 +1,4 @@ +0 0 PERCENTAGE OF DSRS FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS GREATER THAN THE ACCEPTABLE THRESHOLD +1 1 PERCENTAGE OF DSRS FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS LESS THAN THE ACCEPTABLE THRESHOLD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25139.table b/definitions/bufr/tables/0/wmo/42/codetables/25139.table new file mode 100644 index 000000000..39b215e09 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25139.table @@ -0,0 +1,3 @@ +0 0 L1B +1 1 L2A +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25150.table b/definitions/bufr/tables/0/wmo/42/codetables/25150.table new file mode 100644 index 000000000..7b452c327 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25150.table @@ -0,0 +1,3 @@ +1 1 THE DVORAK'S VIS (VISUAL IMAGERY) INTENSITY ANALYSIS +2 2 THE DVORAK'S EIR (ENHANCED INFRARED IMAGERY) INTENSITY ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25174.table b/definitions/bufr/tables/0/wmo/42/codetables/25174.table new file mode 100644 index 000000000..c8a11b6d7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25174.table @@ -0,0 +1,13 @@ +1 1 PIXEL IS AFFECTED BY RFI EFFECTS +2 2 PIXEL IS LOCATED IN THE HEXAGONAL ALIAS DIRECTION CENTRED ON SUN ALIAS +3 3 PIXEL IS CLOSE TO THE BORDER DELIMITING THE EXTENDED ALIAS FREE ZONE +4 4 PIXEL IS INSIDE THE EXTENDED ALIAS FREE ZONE +5 5 PIXEL IS INSIDE THE EXCLUSIVE OF ALIAS FREE ZONE +6 6 PIXEL IS LOCATED IN A ZONE WHERE A MOON ALIAS WAS RECONSTRUCTED +7 7 PIXEL IS LOCATED IN A ZONE WHERE SUN REFLECTION HAS BEEN DETECTED +8 8 PIXEL IS LOCATED IN A ZONE WHERE SUN ALIAS WAS RECONSTRUCTED +9 9 FLAT TARGET TRANSFORMATION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS PIXEL +10 10 SCENE HAS BEEN COMBINED WITH AN ADJUSTMENT SCENE IN OPPOSITE POLARIZATION DURING IMAGE RECONSTRUCTION TO ACCOUNT FOR CROSS-POLARIZATION LEAKAGE +11 11 DIRECT MOON CORRECTION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS PIXEL +12 12 REFLECTED SUN CORRECTION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS PIXEL +13 13 DIRECT SUN CORRECTION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS IMAGE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25181.table b/definitions/bufr/tables/0/wmo/42/codetables/25181.table new file mode 100644 index 000000000..2c1eabf7c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25181.table @@ -0,0 +1,3 @@ +0 0 OK +1 1 PERCENTAGE OF L2B RECORDS FREE OF PROCESSING ERRORS IS LESS THAN ACCEPTABLE THRESHOLD +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25182.table b/definitions/bufr/tables/0/wmo/42/codetables/25182.table new file mode 100644 index 000000000..9827b1dfd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25182.table @@ -0,0 +1,3 @@ +0 0 OK +1 1 PERCENTAGE OF L1B RECORDS FREE OF PROCESSING ERRORS IS LESS THAN ACCEPTABLE THRESHOLD +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25184.table b/definitions/bufr/tables/0/wmo/42/codetables/25184.table new file mode 100644 index 000000000..29005c133 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25184.table @@ -0,0 +1,3 @@ +0 0 OK +1 1 PRODUCT AS A DURATION SHORTER THAN THE INPUT PRODUCT +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25185.table b/definitions/bufr/tables/0/wmo/42/codetables/25185.table new file mode 100644 index 000000000..ac18abae4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25185.table @@ -0,0 +1,2 @@ +0 0 AES 256 +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25187.table b/definitions/bufr/tables/0/wmo/42/codetables/25187.table new file mode 100644 index 000000000..683c09709 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25187.table @@ -0,0 +1,3 @@ +0 0 VALID +1 1 INVALID +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25188.table b/definitions/bufr/tables/0/wmo/42/codetables/25188.table new file mode 100644 index 000000000..b18013f21 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25188.table @@ -0,0 +1,6 @@ +0 0 PRESSURE ADJUSTED TO MEAN SEA LEVEL FOLLOWING WMO-NO. 8 FOR LOW LEVEL (< 50 M) STATIONS +1 1 PRESSURE ADJUSTED TO MEAN SEA LEVEL FOLLOWING WMO-NO. 8 FOR STATIONS BELOW 750 M +2 2 PRESSURE ADJUSTED TO SEA LEVEL FOLLOWING NATIONAL PRACTICE +3 3 PRESSURE ADJUSTED TO LOCAL WATER LEVEL FOLLOWING NATIONAL PRACTICE +4 4 PRESSURE NOT CORRECTED FOR HEIGHT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25190.table b/definitions/bufr/tables/0/wmo/42/codetables/25190.table new file mode 100644 index 000000000..62fbc7616 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25190.table @@ -0,0 +1,7 @@ +0 0 LOW-RESOLUTION MODE (LRM) +1 1 SYNTHETIC APERTURE RADAR (SAR) +2 2 LRM AND SAR (INTERLEAVED) +3 3 RESERVED +4 4 PSEUDO-LRM (PLRM) +5 5 SAR INTERFEROMETRIC MODE (SARIN) +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/25191.table b/definitions/bufr/tables/0/wmo/42/codetables/25191.table new file mode 100644 index 000000000..ea22b6872 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/25191.table @@ -0,0 +1,4 @@ +0 0 OPEN LOOP +1 1 CLOSED LOOP +2 2 OPEN LOOP FIXED GAIN +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/26010.table b/definitions/bufr/tables/0/wmo/42/codetables/26010.table new file mode 100644 index 000000000..f825040f4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/26010.table @@ -0,0 +1,25 @@ +1 1 0100 INCLUDED +2 2 0200 INCLUDED +3 3 0300 INCLUDED +4 4 0400 INCLUDED +5 5 0500 INCLUDED +6 6 0600 INCLUDED +7 7 0700 INCLUDED +8 8 0800 INCLUDED +9 9 0900 INCLUDED +10 10 1000 INCLUDED +11 11 1100 INCLUDED +12 12 1200 INCLUDED +13 13 1300 INCLUDED +14 14 1400 INCLUDED +15 15 1500 INCLUDED +16 16 1600 INCLUDED +17 17 1700 INCLUDED +18 18 1800 INCLUDED +19 19 1900 INCLUDED +20 20 2000 INCLUDED +21 21 2100 INCLUDED +22 22 2200 INCLUDED +23 23 2300 INCLUDED +24 24 2400 INCLUDED +25 25 UNKNOWN MIXTURE OF HOURS diff --git a/definitions/bufr/tables/0/wmo/42/codetables/29001.table b/definitions/bufr/tables/0/wmo/42/codetables/29001.table new file mode 100644 index 000000000..884b29a84 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/29001.table @@ -0,0 +1,8 @@ +0 0 GNOMONIC PROJECTION +1 1 POLAR STEREOGRAPHIC PROJECTION +2 2 LAMBERT'S CONFORMAL CONIC PROJECTION +3 3 MERCATOR'S PROJECTION +4 4 SCANNING CONE (RADAR) +5 5 RESERVED +6 6 NO PROJECTION +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/29002.table b/definitions/bufr/tables/0/wmo/42/codetables/29002.table new file mode 100644 index 000000000..1d7efd0c8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/29002.table @@ -0,0 +1,4 @@ +0 0 CARTESIAN +1 1 POLAR +2 2 OTHER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3001.table b/definitions/bufr/tables/0/wmo/42/codetables/3001.table new file mode 100644 index 000000000..e9caa2a14 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3001.table @@ -0,0 +1,12 @@ +0 0 LAND STATION (SYNOPTIC NETWORK) +1 1 SHALLOW WATER STATION (FIXED TO SEA/LAKE FLOOR) +2 2 SHIP +3 3 RIG/PLATFORM +4 4 MOORED BUOY +5 5 DRIFTING BUOY (OR DRIFTER) +6 6 ICE BUOY +7 7 LAND STATION (LOCAL NETWORK) +8 8 LAND VEHICLE +9 9 AUTONOMOUS MARINE VEHICLE +10 10 TAG ATTACHED TO MARINE ANIMAL +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3003.table b/definitions/bufr/tables/0/wmo/42/codetables/3003.table new file mode 100644 index 000000000..cf530237f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3003.table @@ -0,0 +1,8 @@ +0 0 SCREEN +1 1 SLING/WHIRLING +2 2 UNSCREENED +3 3 RADIATION SHIELD +4 4 ASPIRATED (E.G. ASSMANN) +5 5 OTHER SHELTER +6 6 HANDHELD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/30031.table b/definitions/bufr/tables/0/wmo/42/codetables/30031.table new file mode 100644 index 000000000..80cce26f1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/30031.table @@ -0,0 +1,13 @@ +0 0 PPI +1 1 COMPOSITE +2 2 CAPPL +3 3 VERTICAL SECTION +4 4 ALPHANUMERIC DATA +5 5 MAP OF SUBJECT CLUTTER +6 6 MAP +7 7 TEST PICTURE +8 8 COMMENTS +9 9 MAP OF GROUND OCCULTATION +10 10 MAP OF RADAR BEAM HEIGHT +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/30032.table b/definitions/bufr/tables/0/wmo/42/codetables/30032.table new file mode 100644 index 000000000..942cb5d7f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/30032.table @@ -0,0 +1,9 @@ +1 1 MAP +2 2 SATELLITE IR +3 3 SATELLITE VIS +4 4 SATELLITE WV +5 5 SATELLITE MULTISPECTRAL +6 6 SYNOPTIC OBSERVATIONS +7 7 FORECAST PARAMETERS +8 8 LIGHTNING DATA +15 15 OTHER DATA diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3004.table b/definitions/bufr/tables/0/wmo/42/codetables/3004.table new file mode 100644 index 000000000..571e234bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3004.table @@ -0,0 +1,11 @@ +0 0 STEVENSON SCREEN +1 1 MARINE STEVENSON SCREEN +2 2 CYLINDRICAL SECTION PLATE SHIELD +3 3 CONCENTRIC TUBE +4 4 RECTANGULAR SECTION SHIELD +5 5 SQUARE SECTION SHIELD +6 6 TRIANGULAR SECTION SHIELD +7 7 OPEN COVERED LEAN-TO +8 8 OPEN COVERED INVERTED V ROOF +9 9 INTEGRATED (E.G. CHILLED MIRROR) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3008.table b/definitions/bufr/tables/0/wmo/42/codetables/3008.table new file mode 100644 index 000000000..e321d5562 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3008.table @@ -0,0 +1,4 @@ +0 0 NATURAL VENTILATION IN USE +1 1 ARTIFICIAL ASPIRATION IN USE: CONSTANT FLOW AT TIME OF READING +2 2 ARTIFICIAL ASPIRATION IN USE: VARIABLE FLOW AT TIME OF READING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3010.table b/definitions/bufr/tables/0/wmo/42/codetables/3010.table new file mode 100644 index 000000000..75746a1c3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3010.table @@ -0,0 +1,12 @@ +0 0 RESERVED +1 1 ADCP +2 2 GEK (GEOMAGNETIC ELECTROKINETOGRAPH) +3 3 SHIP'S SET AND DRIFT DETERMINED BY FIXES 3-6 HOURS APART +4 4 SHIP'S SET AND DRIFT DETERMINED BY FIXES MORE THAN 6 HOURS BUT LESS THAN 12 HOURS APART +5 5 DRIFT OF BUOY +6 6 ADCP +7 7 ADCP BOTTOM TRACKING MODE +8 8 ELECTROMAGNETIC SENSOR +9 9 ROTOR AND VANE +10 10 LOWERED ADCP +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3011.table b/definitions/bufr/tables/0/wmo/42/codetables/3011.table new file mode 100644 index 000000000..748826848 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3011.table @@ -0,0 +1,4 @@ +0 0 DEPTH CALCULATED USING FALL RATE EQUATION +1 1 DEPTH CALCULATED FROM WATER PRESSURE/EQUATION OF STATE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3012.table b/definitions/bufr/tables/0/wmo/42/codetables/3012.table new file mode 100644 index 000000000..35bdeadd5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3012.table @@ -0,0 +1,3 @@ +0 0 ANDERRAA OXYGEN OPTODE +1 1 WINKLER BOTTLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3016.table b/definitions/bufr/tables/0/wmo/42/codetables/3016.table new file mode 100644 index 000000000..792788f42 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3016.table @@ -0,0 +1,9 @@ +0 0 FAST LANE BETWEEN THE WHEEL TRACKS +1 1 FAST LANE BETWEEN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +2 2 FAST LANE IN THE WHEEL TRACKS +3 3 FAST LANE IN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +4 4 SLOW LANE BETWEEN THE WHEEL TRACKS +5 5 SLOW LANE BETWEEN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +6 6 SLOW LANE IN THE WHEEL TRACKS +7 7 SLOW LANE IN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3017.table b/definitions/bufr/tables/0/wmo/42/codetables/3017.table new file mode 100644 index 000000000..e94c0a449 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3017.table @@ -0,0 +1,5 @@ +1 1 AUTOMATIC +2 2 MANNED +3 3 EVENT TRIGGERED +4 4 LONGER TIME PERIOD THAN THE STANDARD +5 5 RESERVED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3018.table b/definitions/bufr/tables/0/wmo/42/codetables/3018.table new file mode 100644 index 000000000..b3769ae40 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3018.table @@ -0,0 +1,22 @@ +0 0 FREE TRACK WITHOUT FURTHER INFORMATION +1 1 FREE TRACK, EMBANKMENT +2 2 FREE TRACK, FLAT RELATIVE TO SURROUNDINGS +3 3 FREE TRACK, WATER BASIN(S) IN VICINITY +4 4 FREE TRACK, FOREST +5 5 FREE TRACK, CLEFT +6 6 FREE TRACK, ON HILLTOP +7 7 FREE TRACK, ON HILLTOP, FOREST +8 8 FREE TRACK, IN VALLEY +9 9 FREE TRACK, IN VALLEY, FOREST +10 10 FREE TRACK, NORTH INCLINATION +11 11 FREE TRACK, NORTH INCLINATION, FOREST +12 12 FREE TRACK, SOUTH INCLINATION +13 13 FREE TRACK, SOUTH INCLINATION, FOREST +20 20 BRIDGE WITHOUT FURTHER INFORMATION +21 21 BRIDGE ACROSS A VALLEY IN AN URBAN AREA +22 22 BRIDGE ACROSS A VALLEY WITH FOREST/MEADOWS/FIELDS +23 23 BRIDGE ACROSS STREET/TRACK +24 24 BRIDGE ACROSS BIG RIVER/CANAL +25 25 BRIDGE ACROSS RIVER/CANAL OF MEDIUM SIZE +26 26 BRIDGE ACROSS A SMALL STREAM/LOADING CANAL +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3019.table b/definitions/bufr/tables/0/wmo/42/codetables/3019.table new file mode 100644 index 000000000..2f55b0028 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3019.table @@ -0,0 +1,8 @@ +0 0 ASPHALT +1 1 CONCRETE +2 2 CONCRETE CONSTRUCTION +3 3 STEEL-GIRDER CONSTRUCTION +4 4 BOX GIRDER BRIDGE +5 5 ORTHOTROPIC SLAB +6 6 DRAIN ASPHALT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3020.table b/definitions/bufr/tables/0/wmo/42/codetables/3020.table new file mode 100644 index 000000000..9f0feaea7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3020.table @@ -0,0 +1,5 @@ +0 0 WOOD +1 1 METAL ALLOY +2 2 PLASTIC/GRP +3 3 REED/GRASS/LEAF +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3021.table b/definitions/bufr/tables/0/wmo/42/codetables/3021.table new file mode 100644 index 000000000..27e1bfad4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3021.table @@ -0,0 +1,4 @@ +0 0 UNHEATED +1 1 HEATED +2 2 NOT APPLICABLE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3022.table b/definitions/bufr/tables/0/wmo/42/codetables/3022.table new file mode 100644 index 000000000..daf67e27f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3022.table @@ -0,0 +1,4 @@ +0 0 NATIONAL HYDROMETEOROLOGICAL/WEATHER SERVICE +1 1 OTHER +2 2 STANDARDS INSTITUTE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3023.table b/definitions/bufr/tables/0/wmo/42/codetables/3023.table new file mode 100644 index 000000000..9e683c891 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3023.table @@ -0,0 +1,8 @@ +0 0 SINGLE V-SECTION LOUVERS +1 1 OVERLAPPING LOUVERS +2 2 DOUBLE V-SECTION LOUVERS +3 3 NON-OVERLAPPING LOUVERS +4 4 VENTED, NON-LOUVERED +5 5 NOT APPLICABLE +6 6 RESERVED FOR FUTURE USE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3027.table b/definitions/bufr/tables/0/wmo/42/codetables/3027.table new file mode 100644 index 000000000..8280e8602 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3027.table @@ -0,0 +1,8 @@ +0 0 SOLO (SINGLE RADIOSONDE) +1 1 BLOCK +2 2 BAR +3 3 CROSS +4 4 T-RIG +5 5 DOUBLE T-RIG +6 6 COMPLEX +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3028.table b/definitions/bufr/tables/0/wmo/42/codetables/3028.table new file mode 100644 index 000000000..9cc805953 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3028.table @@ -0,0 +1,8 @@ +0 0 MULTI POINT MANUAL SNOW SURVEY +1 1 SINGLE POINT MANUAL SNOW WATER EQUIVALENT MEASUREMENT +2 2 SNOW PILLOW OR SNOW SCALE +3 3 PASSIVE GAMMA +4 4 GNSS/GPS METHODS +5 5 COSMIC RAY ATTENUATION +6 6 TIME DOMAIN REFLECTOMETRY +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3029.table b/definitions/bufr/tables/0/wmo/42/codetables/3029.table new file mode 100644 index 000000000..374df7c0e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3029.table @@ -0,0 +1,3 @@ +0 0 LEFT HAND SIDE +1 1 RIGHT HAND SIDE +7 7 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/3030.table b/definitions/bufr/tables/0/wmo/42/codetables/3030.table new file mode 100644 index 000000000..48033d8f4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/3030.table @@ -0,0 +1,3 @@ +0 0 TRANSMITTING +1 1 RECEIVING +7 7 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/31021.table b/definitions/bufr/tables/0/wmo/42/codetables/31021.table new file mode 100644 index 000000000..3b4875d89 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/31021.table @@ -0,0 +1,10 @@ +0 0 RESERVED +1 1 1-BIT INDICATOR OF QUALITY +2 2 2-BIT INDICATOR OF QUALITY +5 5 8-BIT INDICATOR OF QUALITY CONTROL +6 6 4-BIT INDICATOR OF QUALITY CONTROL CLASS ACCORDING TO GTSPP +7 7 PERCENTAGE CONFIDENCE +8 8 0 = NOT SUSPECTED, 1 = SUSPECTED, 2 = RESERVED, 3 = INFORMATION NOT REQUIRED +9 9 0 = DATA PRESENT, GOOD, COLLOCATED, 1 = DATA AVAILABLE BUT OF DEGRADED QUALITY AND NOT USED, 2 = NO SPATIOTEMPORALLY COLLOCATED DATA AVAILABLE, 3-14 = NOT USED (RESERVED), 15 = MISSING VALUE +21 21 1-BIT INDICATOR OF CORRECTION +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/31031.table b/definitions/bufr/tables/0/wmo/42/codetables/31031.table new file mode 100644 index 000000000..d268b380c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/31031.table @@ -0,0 +1 @@ +1 1 0 = DATA PRESENT, 1 = DATA NOT PRESENT diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33002.table b/definitions/bufr/tables/0/wmo/42/codetables/33002.table new file mode 100644 index 000000000..4177c0577 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33002.table @@ -0,0 +1,4 @@ +0 0 DATA NOT SUSPECT +1 1 DATA SUSPECT +2 2 RESERVED +3 3 QUALITY INFORMATION NOT GIVEN diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33003.table b/definitions/bufr/tables/0/wmo/42/codetables/33003.table new file mode 100644 index 000000000..7577129b0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33003.table @@ -0,0 +1,5 @@ +0 0 DATA NOT SUSPECT +1 1 DATA SLIGHTLY SUSPECT +2 2 DATA HIGHLY SUSPECT +3 3 DATA CONSIDERED UNFIT FOR USE +7 7 QUALITY INFORMATION NOT GIVEN diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33005.table b/definitions/bufr/tables/0/wmo/42/codetables/33005.table new file mode 100644 index 000000000..8d7569ad2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33005.table @@ -0,0 +1,23 @@ +1 1 NO AUTOMATED METEOROLOGICAL DATA CHECKS PERFORMED +2 2 PRESSURE DATA SUSPECT +3 3 WIND DATA SUSPECT +4 4 AIR TEMPERATURE DATA SUSPECT +5 5 WET-BULB TEMPERATURE DATA SUSPECT +6 6 HUMIDITY DATA SUSPECT +7 7 GROUND TEMPERATURE DATA SUSPECT +8 8 SOIL TEMPERATURE (DEPTH 1) DATA SUSPECT +9 9 SOIL TEMPERATURE (DEPTH 2) DATA SUSPECT +10 10 SOIL TEMPERATURE (DEPTH 3) DATA SUSPECT +11 11 SOIL TEMPERATURE (DEPTH 4) DATA SUSPECT +12 12 SOIL TEMPERATURE (DEPTH 5) DATA SUSPECT +13 13 CLOUD DATA SUSPECT +14 14 VISIBILITY DATA SUSPECT +15 15 PRESENT WEATHER DATA SUSPECT +16 16 LIGHTNING DATA SUSPECT +17 17 ICE DEPOSIT DATA SUSPECT +18 18 PRECIPITATION DATA SUSPECT +19 19 STATE OF GROUND DATA SUSPECT +20 20 SNOW DATA SUSPECT +21 21 WATER CONTENT DATA SUSPECT +22 22 EVAPORATION/EVAPOTRANSPIRATION DATA SUSPECT +23 23 SUNSHINE DATA SUSPECT diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33006.table b/definitions/bufr/tables/0/wmo/42/codetables/33006.table new file mode 100644 index 000000000..0ea44a50b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33006.table @@ -0,0 +1,5 @@ +0 0 SELF-CHECK OK +1 1 AT LEAST ONE WARNING ACTIVE, NO ALARMS +2 2 AT LEAST ONE ALARM ACTIVE +3 3 SENSOR FAILURE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33015.table b/definitions/bufr/tables/0/wmo/42/codetables/33015.table new file mode 100644 index 000000000..f585808d0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33015.table @@ -0,0 +1,16 @@ +0 0 PASSED ALL CHECKS +1 1 MISSING DATA CHECK +2 2 DESCENDING/REASCENDING BALLOON CHECK +3 3 DATA PLAUSIBILITY CHECK (ABOVE LIMITS) +4 4 DATA PLAUSIBILITY CHECK (BELOW LIMITS) +5 5 SUPERADIABATIC LAPSE RATE CHECK +6 6 LIMITING ANGLES CHECK +7 7 ASCENSION RATE CHECK +8 8 EXCESSIVE CHANGE FROM PREVIOUS FLIGHT +9 9 BALLOON OVERHEAD CHECK +10 10 WIND SPEED CHECK +11 11 WIND DIRECTION CHECK +12 12 DEPENDENCY CHECK +13 13 DATA VALID BUT MODIFIED +14 14 DATA OUTLIER CHECK +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33020.table b/definitions/bufr/tables/0/wmo/42/codetables/33020.table new file mode 100644 index 000000000..ba7a4d4ea --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33020.table @@ -0,0 +1,8 @@ +0 0 GOOD +1 1 INCONSISTENT +2 2 DOUBTFUL +3 3 WRONG +4 4 NOT CHECKED +5 5 HAS BEEN CHANGED +6 6 ESTIMATED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33021.table b/definitions/bufr/tables/0/wmo/42/codetables/33021.table new file mode 100644 index 000000000..e3e67ae8c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33021.table @@ -0,0 +1,4 @@ +0 0 WITHIN LIMITS +1 1 OUTSIDE LIMITS +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33022.table b/definitions/bufr/tables/0/wmo/42/codetables/33022.table new file mode 100644 index 000000000..50ef65feb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33022.table @@ -0,0 +1,4 @@ +0 0 GOOD (SEVERAL IDENTICAL REPORTS HAVE BEEN RECEIVED) +1 1 DUBIOUS (NO IDENTICAL REPORTS HAVE BEEN RECEIVED) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33023.table b/definitions/bufr/tables/0/wmo/42/codetables/33023.table new file mode 100644 index 000000000..896c816a9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33023.table @@ -0,0 +1,4 @@ +0 0 RELIABLE (LOCATION WAS MADE OVER TWO SATELLITE PASSES) +1 1 LATEST KNOWN (NO LOCATION OVER THE CORRESPONDING PASS) +2 2 DUBIOUS (LOCATION MADE OVER ONE PASS ONLY; A SECOND SOLUTION IS POSSIBLE IN 5 PER CENT OF THE CASES) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33024.table b/definitions/bufr/tables/0/wmo/42/codetables/33024.table new file mode 100644 index 000000000..771e04b81 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33024.table @@ -0,0 +1,10 @@ +0 0 RESERVED +1 1 EXCELLENT - WITHIN 3 METRES +2 2 GOOD - WITHIN 10 METRES +3 3 FAIR - WITHIN 20 METRES +4 4 POOR - MORE THAN 20 METRES +5 5 EXCELLENT - WITHIN 10 FEET +6 6 GOOD - WITHIN 30 FEET +7 7 FAIR - WITHIN 60 FEET +8 8 POOR - MORE THAN 60 FEET +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33025.table b/definitions/bufr/tables/0/wmo/42/codetables/33025.table new file mode 100644 index 000000000..4da695aa0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33025.table @@ -0,0 +1,5 @@ +0 0 TIME INTERPOLATED, LATITUDE AND LONGITUDE REPORTED +1 1 TIME REPORTED, LATITUDE AND LONGITUDE INTERPOLATED +2 2 TIME, LATITUDE, AND LONGITUDE INTERPOLATED +3 3 TIME, LATITUDE, AND LONGITUDE REPORTED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33026.table b/definitions/bufr/tables/0/wmo/42/codetables/33026.table new file mode 100644 index 000000000..08c61254b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33026.table @@ -0,0 +1,17 @@ +0 0 NORMAL OPERATIONS - MEASUREMENT MODE +1 1 NORMAL OPERATIONS - NON-MEASUREMENT MODE +2 2 SMALL RH +3 3 HUMIDITY ELEMENT IS WET +4 4 HUMIDITY ELEMENT CONTAMINATED +5 5 HEATER FAIL +6 6 HEATER FAIL AND WET/CONTAMINATED HUMIDITY ELEMENT +7 7 AT LEAST ONE OF THE INPUT PARAMETERS USED IN THE CALCULATION OF MIXING RATIO IS INVALID +8 8 NUMERIC ERROR +9 9 SENSOR NOT INSTALLED +10 10 CALCULATED RH > 100% +11 11 INPUT LASER POWER TOO LOW +12 12 PROBE WV TEMPERATURE OUT OF RANGE +13 13 PROBE WV PRESSURE OUT OF RANGE +14 14 SPECTRAL LINE OUT OF RANGE +15 15 NO LASER OUTPUT +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33027.table b/definitions/bufr/tables/0/wmo/42/codetables/33027.table new file mode 100644 index 000000000..c563af46f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33027.table @@ -0,0 +1,6 @@ +0 0 RADIUS >= 1500 M +1 1 500 M =< RADIUS <1500 M +2 2 250 M =< RADIUS < 500 M +3 3 RADIUS < 250 M +4 4 =< 100 M +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33028.table b/definitions/bufr/tables/0/wmo/42/codetables/33028.table new file mode 100644 index 000000000..688dec0e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33028.table @@ -0,0 +1,7 @@ +1 1 NOMINAL +2 2 DEGRADED BY SW ERROR; ANY ERROR REPORTED BY THE ALGORITHMS +3 3 DEGRADED BY INSTRUMENT ERROR +4 4 DEGRADED BY CORRUPTED /MISSING ADF +5 5 GENERAL DEGRADATION +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33030.table b/definitions/bufr/tables/0/wmo/42/codetables/33030.table new file mode 100644 index 000000000..c9e36c0f4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33030.table @@ -0,0 +1,7 @@ +1 1 DO NOT USE SCAN FOR PRODUCT GENERATION +2 2 TIME SEQUENCE ERROR DETECTED WITH THIS SCAN +3 3 DATA GAP PRECEDES THIS SCAN +4 4 NO CALIBRATION +5 5 NO EARTH LOCATION +6 6 FIRST GOOD TIME FOLLOWING A CLOCK UPDATE +7 7 INSTRUMENT STATUS CHANGED WITH THIS SCAN diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33031.table b/definitions/bufr/tables/0/wmo/42/codetables/33031.table new file mode 100644 index 000000000..c11fd4a09 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33031.table @@ -0,0 +1,21 @@ +1 1 TIME FIELD IS BAD BUT CAN PROBABLY BE INFERRED FROM THE PREVIOUS GOOD TIME +2 2 TIME FIELD IS BAD AND CANNOT BE INFERRED FROM THE PREVIOUS GOOD TIME +3 3 THIS RECORD STARTS A SEQUENCE THAT IS INCONSISTENT WITH PREVIOUS TIMES (I.E. THERE IS A TIME DISCONTINUITY). THIS MAY OR MAY NOT BE ASSOCIATED WITH A SPACECRAFT CLOCK UPDATE (SEE SCAN LINE STATUS FLAGS FOR ATOVS) +4 4 START OF A SEQUENCE THAT APPARENTLY REPEATS SCAN TIMES THAT HAVE BEEN PREVIOUSLY ACCEPTED +5 5 SCAN LINE WAS NOT CALIBRATED BECAUSE OF BAD TIME +6 6 SCAN LINE WAS CALIBRATED USING FEWER THAN THE PREFERRED NUMBER OF SCAN LINES BECAUSE OF PROXIMITY TO START OR END OF DATA OR TO A DATA GAP +7 7 SCAN LINE WAS NOT CALIBRATED BECAUSE OF BAD OR INSUFFICIENT PRT DATA +8 8 SCAN LINE WAS CALIBRATED BUT WITH MARGINAL PRT DATA +9 9 SOME UNCALIBRATED CHANNELS ON THIS SCAN +10 10 UNCALIBRATED DUE TO INSTRUMENT MODE +11 11 QUESTIONABLE CALIBRATION BECAUSE OF ANTENNA POSITION ERROR OF SPACE VIEW +12 12 QUESTIONABLE CALIBRATION BECAUSE OF ANTENNA POSITION ERROR OF BLACK BODY +13 13 NOT EARTH LOCATED BECAUSE OF BAD TIME +14 14 EARTH LOCATION QUESTIONABLE BECAUSE OF QUESTIONABLE TIME CODE (SEE TIME PROBLEM CODE BITS) +15 15 EARTH LOCATION QUESTIONABLE - ONLY MARGINAL AGREEMENT WITH REASONABLENESS CHECK +16 16 EARTH LOCATION QUESTIONABLE - FAILS REASONABLENESS CHECK +17 17 EARTH LOCATION QUESTIONABLE BECAUSE OF ANTENNA POSITION CHECK +18 18 SCAN LINE CALIBRATION COLD BLACK BODY +19 19 SCAN LINE CALIBRATION WARM BLACK BODY +20 20 SCAN LINE CALIBRATION SPACE VIEW +21 21 EARTH VIEW diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33032.table b/definitions/bufr/tables/0/wmo/42/codetables/33032.table new file mode 100644 index 000000000..33307f50a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33032.table @@ -0,0 +1,7 @@ +1 1 NO GOOD BLACKBODY COUNTS FOR SCAN LINE +2 2 NO GOOD SPACE VIEW COUNTS FOR THIS LINE +3 3 NO GOOD PRTS FOR THIS LINE +4 4 SOME BAD BLACKBODY VIEW COUNTS FOR THIS LINE +5 5 SOME BAD SPACE VIEW COUNTS FOR THIS LINE +6 6 SOME BAD PRT TEMPS ON THIS LINE +7 7 QUALITY FOR THIS SCAN IS REDUCED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33033.table b/definitions/bufr/tables/0/wmo/42/codetables/33033.table new file mode 100644 index 000000000..6fd320510 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33033.table @@ -0,0 +1,3 @@ +1 1 SET IF SECONDARY CALIBRATION USED +22 22 SET IF ALL THE CHANNELS ARE MISSING +23 23 SUSPECT diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33035.table b/definitions/bufr/tables/0/wmo/42/codetables/33035.table new file mode 100644 index 000000000..01996bae4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33035.table @@ -0,0 +1,10 @@ +0 0 AUTOMATIC QUALITY CONTROL PASSED AND NOT MANUALLY CHECKED +1 1 AUTOMATIC QUALITY CONTROL PASSED AND MANUALLY CHECKED AND PASSED +2 2 AUTOMATIC QUALITY CONTROL PASSED AND MANUALLY CHECKED AND DELETED +3 3 AUTOMATIC QUALITY CONTROL FAILED AND MANUALLY NOT CHECKED +4 4 AUTOMATIC QUALITY CONTROL FAILED AND MANUALLY CHECKED AND FAILED +5 5 AUTOMATIC QUALITY CONTROL FAILED AND MANUALLY CHECKED AND RE-INSERTED +6 6 AUTOMATIC QUALITY CONTROL FLAGGED DATA AS QUESTIONABLE AND NOT MANUALLY CHECKED +7 7 AUTOMATIC QUALITY CONTROL FLAGGED DATA AS QUESTIONABLE AND MANUALLY CHECKED AND FAILED +8 8 MANUALLY CHECKED AND FAILED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33037.table b/definitions/bufr/tables/0/wmo/42/codetables/33037.table new file mode 100644 index 000000000..9f26652a5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33037.table @@ -0,0 +1,19 @@ +1 1 U DEPARTURE FROM GUESS +2 2 V DEPARTURE FROM GUESS +3 3 U AND V DEPARTURE FROM GUESS +4 4 U ACCELERATION +5 5 V ACCELERATION +6 6 U AND V ACCELERATION +7 7 POSSIBLE LAND FEATURE +8 8 U ACCELERATION AND POSSIBLE LAND FEATURE +9 9 V ACCELERATION AND POSSIBLE LAND FEATURE +10 10 U AND V ACCELERATION AND POSSIBLE LAND FEATURE +11 11 BAD WIND GUESS +12 12 CORRELATION FAILURE +13 13 SEARCH BOX OFF EDGE OF AREA +14 14 TARGET BOX OFF EDGE OF AREA +15 15 PIXEL BRIGHTNESS OUT OF BOUNDS (NOISY LINE) +16 16 TARGET OUTSIDE OF LATITUDE/LONGITUDE BOX +17 17 TARGET OUTSIDE OF PRESSURE MINIMUM/MAXIMUM +18 18 AUTOEDITOR FLAGGED SLOW VECTOR +19 19 AUTOEDITOR FLAGGED VECTORS diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33038.table b/definitions/bufr/tables/0/wmo/42/codetables/33038.table new file mode 100644 index 000000000..3dc1192e8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33038.table @@ -0,0 +1,9 @@ +1 1 TOTAL ZENITH DELAY QUALITY IS CONSIDERED POOR +2 2 GALILEO SATELLITES USED +3 3 GLONASS SATELLITES USED +4 4 GPS SATELLITES USED +5 5 METEOROLOGICAL DATA APPLIED +6 6 ATMOSPHERIC LOADING CORRECTION APPLIED +7 7 OCEAN TIDE LOADING APPLIED +8 8 CLIMATE QUALITY DATA PROCESSING +9 9 NEAR-REAL TIME DATA PROCESSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33039.table b/definitions/bufr/tables/0/wmo/42/codetables/33039.table new file mode 100644 index 000000000..c34540914 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33039.table @@ -0,0 +1,12 @@ +1 1 NON-NOMINAL QUALITY +2 2 OFFLINE PRODUCT +3 3 ASCENDING OCCULTATION FLAG +4 4 EXCESS PHASE PROCESSING NON-NOMINAL +5 5 BENDING ANGLE PROCESSING NON-NOMINAL +6 6 REFRACTIVITY PROCESSING NON-NOMINAL +7 7 METEOROLOGICAL PROCESSING NON-NOMINAL +8 8 OPEN LOOP DATA INCLUDED +9 9 SURFACE REFLECTIONS DETECTED +10 10 L2C GNSS SIGNALS USED +14 14 BACKGROUND PROFILE NON-NOMINAL +15 15 BACKGROUND (I.E. NOT RETRIEVED) PROFILE PRESENT diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33041.table b/definitions/bufr/tables/0/wmo/42/codetables/33041.table new file mode 100644 index 000000000..8bbdba90a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33041.table @@ -0,0 +1,4 @@ +0 0 THE FOLLOWING VALUE IS THE TRUE VALUE +1 1 THE FOLLOWING VALUE IS HIGHER THAN THE TRUE VALUE (THE MEASUREMENT HIT THE LOWER LIMIT OF THE INSTRUMENT) +2 2 THE FOLLOWING VALUE IS LOWER THAN THE TRUE VALUE (THE MEASUREMENT HIT THE HIGHER LIMIT OF THE INSTRUMENT) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33042.table b/definitions/bufr/tables/0/wmo/42/codetables/33042.table new file mode 100644 index 000000000..b75447a4a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33042.table @@ -0,0 +1,5 @@ +0 0 EXCLUSIVE LOWER LIMIT (>) +1 1 INCLUSIVE LOWER LIMIT (>=) +2 2 EXCLUSIVE UPPER LIMIT (<) +3 3 INCLUSIVE UPPER LIMIT (=<) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33043.table b/definitions/bufr/tables/0/wmo/42/codetables/33043.table new file mode 100644 index 000000000..398d9ab2c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33043.table @@ -0,0 +1,4 @@ +1 1 SEA MDS. NADIR ONLY SST RETRIEVAL USED 3.7 MICRON CHANNEL. LAND MDS RESERVED +2 2 SEA MDS. DUAL VIEW SST RETRIEVAL USED 3.7 MICRON CHANNEL. LAND MDS RESERVED +3 3 NADIR VIEW CONTAINS DAY TIME DATA +4 4 FORWARD VIEW CONTAINS DAY TIME DATA diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33044.table b/definitions/bufr/tables/0/wmo/42/codetables/33044.table new file mode 100644 index 000000000..01746c795 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33044.table @@ -0,0 +1,14 @@ +1 1 INPUT DATA MEAN OUTSIDE NOMINAL RANGE FLAG +2 2 INPUT DATA STANDARD DEVIATION OUTSIDE NOMINAL RANGE FLAG +3 3 NUMBER OF INPUT DATA GAPS > THRESHOLD VALUE +4 4 PERCENTAGE OF MISSING LINES > THRESHOLD VALUE +5 5 DOPPLER CENTROID UNCERTAIN. CONFIDENCE MEASURE < SPECIFIC VALUE +6 6 DOPPLER AMBIGUITY ESTIMATE UNCERTAIN. CONFIDENCE MEASURE < SPECIFIC VALUE +7 7 OUTPUT DATA MEAN OUTSIDE NOMINAL RANGE FLAG +8 8 OUTPUT DATA STANDARD DEVIATION OUTSIDE NOMINAL RANGE FLAG +9 9 CHIRP RECONSTRUCTION FAILED OR IS OF LOW QUALITY FLAG +10 10 DATA SET MISSING +11 11 INVALID DOWNLINK PARAMETERS +12 12 AZIMUTH CUT-OFF ITERATION COUNT. THE AZIMUTH CUT-OFF FIT DID NOT CONVERGE WITHIN A MINIMUM NUMBER OF ITERATIONS +13 13 AZIMUTH CUT-OFF FIT DID NOT CONVERGE WITHIN A MINIMUM NUMBER OF ITERATIONS +14 14 PHASE INFORMATION CONFIDENCE MEASURE. THE IMAGINARY SPECTRAL PEAK IS LESS THAN A MINIMUM THRESHOLD, OR THE ZERO LAG SHIFT IS GREATER THAN A MINIMUM THRESHOLD diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33047.table b/definitions/bufr/tables/0/wmo/42/codetables/33047.table new file mode 100644 index 000000000..f69b56e18 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33047.table @@ -0,0 +1,27 @@ +1 1 ERROR DETECTED AND ATTEMPTS TO RECOVER MADE +2 2 ANOMALY IN ON-BOARD DATA HANDLING (OBDH) VALUE DETECTED +3 3 ANOMALY IN ULTRA STABLE OSCILLATOR PROCESSING (USOP) VALUE DETECTED +4 4 ERRORS DETECTED BY ON-BOARD COMPUTER +5 5 AUTOMATIC GAIN CONTROL (AGC) OUT OF RANGE +6 6 RECEPTION (RX) DELAY FAULT. RX DISTANCE OUT OF RANGE +7 7 WAVE FORM SAMPLES FAULT IDENTIFIER. ERROR +8 8 S BAND ANOMALY/ERROR DETECTED +12 12 BRIGHTNESS TEMPERATURE (CHANNEL 1) OUT OF RANGE +13 13 BRIGHTNESS TEMPERATURE (CHANNEL 2) OUT OF RANGE +14 14 RESERVED +15 15 KU BAND OCEAN RETRACKING ERROR +16 16 S BAND OCEAN RETRACKING ERROR +17 17 KU BAND ICE 1 RETRACKING ERROR +18 18 S BAND ICE 1 RETRACKING ERROR +19 19 KU BAND ICE 2 RETRACKING ERROR +20 20 S BAND ICE 2 RETRACKING ERROR +21 21 KU BAND SEA ICE RETRACKING ERROR +22 22 ARITHMETIC FAULT ERROR +23 23 METEO DATA STATE. NO MAP +24 24 METEO DATA STATE. 1 MAP +25 25 METEO DATA STATE. 2 MAPS DEGRADED +26 26 METEO DATA STATE. 2 MAPS NOMINAL +27 27 ORBIT PROPAGATOR STATUS FOR PROPAGATION MODE, SEVERAL ERRORS +28 28 ORBIT PROPAGATOR STATUS FOR PROPAGATION MODE, WARNING DETECTED +29 29 ORBIT PROPAGATOR STATUS FOR INITIALIZATION MODE, SEVERAL ERRORS +30 30 ORBIT PROPAGATOR STATUS FOR INITIALIZATION MODE, WARNING DETECTED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33048.table b/definitions/bufr/tables/0/wmo/42/codetables/33048.table new file mode 100644 index 000000000..312ba4071 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33048.table @@ -0,0 +1,4 @@ +0 0 INVERSION SUCCESSFUL +1 1 INVERSION NOT SUCCESSFUL +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33049.table b/definitions/bufr/tables/0/wmo/42/codetables/33049.table new file mode 100644 index 000000000..bdde0619b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33049.table @@ -0,0 +1,4 @@ +0 0 EXTERNAL WIND DIRECTION USED DURING INVERSION +1 1 EXTERNAL WIND DIRECTION NOT USED DURING INVERSION +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33050.table b/definitions/bufr/tables/0/wmo/42/codetables/33050.table new file mode 100644 index 000000000..ee7bb6deb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33050.table @@ -0,0 +1,9 @@ +0 0 UNQUALIFIED +1 1 CORRECT VALUE (ALL CHECKS PASSED) +2 2 PROBABLY GOOD BUT VALUE INCONSISTENT WITH STATISTICS (DIFFER FROM CLIMATOLOGY) +3 3 PROBABLY BAD (SPIKE, GRADIENT, ETC., IF OTHER TESTS PASSED) +4 4 BAD VALUE, IMPOSSIBLE VALUE (OUT OF SCALE, VERTICAL INSTABILITY, CONSTANT PROFILE) +5 5 VALUE MODIFIED DURING QUALITY CONTROL +8 8 INTERPOLATED VALUE +9 9 GOOD FOR OPERATIONAL USE; CAUTION; CHECK LITERATURE FOR OTHER USES +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33054.table b/definitions/bufr/tables/0/wmo/42/codetables/33054.table new file mode 100644 index 000000000..d9ca13cf9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33054.table @@ -0,0 +1,5 @@ +0 0 PROFILE VALUES GOOD +1 1 PROFILE VALUES SUSPECTED +2 2 RESERVED +3 3 PROFILE VALUES NOT GOOD +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33055.table b/definitions/bufr/tables/0/wmo/42/codetables/33055.table new file mode 100644 index 000000000..b757af0bb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33055.table @@ -0,0 +1,13 @@ +11 11 OCEAN SIGMA-0 IS NOT AVAILABLE FOR WIND RETRIEVALS +12 12 BACKGROUND WIND IS NOT AVAILABLE +13 13 BACKGROUND MODEL DETECT LAND +14 14 BACKGROUND MODEL DETECT ICE +15 15 SIGMA-0 IS NOT LAND/ICE FREE +16 16 SIGMA-0 LAND CONTAMINATION +17 17 SIGMA-0 ICE CONTAMINATION +18 18 NOT ENOUGH AZIMUTHAL DIVERSITY +19 19 INVERSION IS NOT DONE +20 20 OVERALL WVC FLAG +21 21 INVERSION IS ATTEMPTED (FLAG IS SET) +22 22 RAINFLAG IS ATTEMPTED (FLAG IS SET) +23 23 RAIN IS DETECTED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33056.table b/definitions/bufr/tables/0/wmo/42/codetables/33056.table new file mode 100644 index 000000000..ce44ca922 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33056.table @@ -0,0 +1,13 @@ +8 8 ASCENDING +9 9 VV POLARISATION +10 10 FORE OF SPACECRAFT +11 11 LAND +12 12 POOR SIGMA-0 (SUMMARY) +13 13 INVALID SIGMA-0 (SUMMARY) +14 14 POOR BT +15 15 INVALID BT +16 16 LAND-SEA BOUNDARY +17 17 NEGATIVE SIGMA-0 +21 21 ICE +22 22 MISSING DATA AT A GIVEN LATITUDE-LONGITUDE FOR SEA-ICE FLAGGING PROCESS FOR 2 OR MORE DAYS +23 23 ICE-OCEAN CONTAMINATION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33060.table b/definitions/bufr/tables/0/wmo/42/codetables/33060.table new file mode 100644 index 000000000..741430292 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33060.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 BAD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33066.table b/definitions/bufr/tables/0/wmo/42/codetables/33066.table new file mode 100644 index 000000000..a80e6ab9a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33066.table @@ -0,0 +1,4 @@ +20 20 GOOD WIND, BUT AN ALTERNATIVE CHANNEL USED FOR FEATURE TRACKING +21 21 GOOD WIND, BUT AN ALTERNATIVE SET OF CHANNELS USED FOR THE DETERMINATION OF CLOUD-TOP HEIGHT/AMV HEIGHT ASSIGNMENT +22 22 CORRELATION SURFACE CONSTRAINT FAILS +23 23 RESERVED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33070.table b/definitions/bufr/tables/0/wmo/42/codetables/33070.table new file mode 100644 index 000000000..8a0467b65 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33070.table @@ -0,0 +1,14 @@ +0 0 GOOD RETRIEVAL +1 1 BAD AEROSOL INFORMATION FLAG OR NOAA-16 RADIANCE ANOMALY +2 2 SOLAR ZENITH ANGLE GREATER THAN 84 DEGREES +3 3 380 NM RESIDUE GREATER THAN LIMIT +4 4 OZONE INCONSISTENCY +5 5 DIFFERENCE BETWEEN PROFILE OZONE AND STEP 3 TOTAL OZONE EXCEEDS THRESHOLD (SET TO 25 DU) +6 6 STEP 1 OZONE ITERATION DID NOT CONVERGE +7 7 ANY CHANNEL RESIDUE GREATER THAN 16 OR BAD RADIANCE +8 8 INSUFFICIENT PIXELS - NOT PROCESSED +9 9 FIRST GUESS GOOD - OZONE FORECAST DATA USED +10 10 HIGH CLOUD IN PIXEL - NOT PROCESSED +11 11 SUCCESSFUL OZONE RETRIEVAL +12 12 UNSUCCESSFUL OZONE RETRIEVAL +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33071.table b/definitions/bufr/tables/0/wmo/42/codetables/33071.table new file mode 100644 index 000000000..262a46c89 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33071.table @@ -0,0 +1,10 @@ +0 0 GOOD RETRIEVAL +1 1 SOLAR ZENITH ANGLE GREATER THAN 84 DEGREES +2 2 DIFFERENCE BETWEEN STEP 3 AND PROFILE TOTAL OZONE GREATER THAN LIMIT (25 DU) +3 3 AVERAGE FINAL RESIDUE FOR WAVELENGTHS USED IN RETRIEVAL GREATER THAN THRESHOLD +4 4 FINAL RESIDUE GREATER THAN 3 TIMES A PRIORI ERROR +5 5 DIFFERENCE BETWEEN RETRIEVED AND A PRIORI GREATER THAN 3 TIMES A PRIORI ERROR +6 6 NON-CONVERGENT SOLUTION +7 7 UPPER LEVEL PROFILE ANOMALY OR STRAY LIGHT ANOMALY +8 8 INITIAL RESIDUE GREATER THAN 18.0 N-VALUE UNITS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33072.table b/definitions/bufr/tables/0/wmo/42/codetables/33072.table new file mode 100644 index 000000000..fcc7f0972 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33072.table @@ -0,0 +1,18 @@ +0 0 GOOD RETRIEVAL +1 1 REFLECTIVITY OUT OF RANGE +2 2 LARGER PIXELS (NUMBER OF CROSS-TRACK PIXELS LESS THAN 32) OR BACKWARD SCANS ERROR +3 3 SOLAR ZENITH ANGLE GREATER THAN 88 DEGREES +4 4 LATITUDE/LONGITUDE OUT OF RANGE +5 5 VIEWING ZENITH ANGLE OR SOLAR ZENITH ANGLE OUT OF RANGE +6 6 STEP-ONE PROCESS FAILED IN GENERAL +7 7 FIRST GUESS OZONE OUT OF RANGE +8 8 TOO MANY ITERATIONS (EXCEED 8) +9 9 STEP-ONE RESIDUE CALCULATION FAILED +10 10 STEP-TWO PROCESS FAILED IN GENERAL +11 11 FIRST GUESS OZONE PROFILE OUT OF RANGE +12 12 STEP-TWO OZONE VALUE OUT OF RANGE +13 13 STEP-TWO RESIDUE CALCULATION FAILED +14 14 STEP-THREE PROCESS FAILED IN GENERAL +15 15 POLARIZATION CORRECTION ACCURACY ALERT +16 16 RADIANCE OR IRRADIANCE LESS OR EQUAL TO ZERO +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33075.table b/definitions/bufr/tables/0/wmo/42/codetables/33075.table new file mode 100644 index 000000000..23edae628 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33075.table @@ -0,0 +1,5 @@ +1 1 GAP IN RAW DATA RECORD (RDR) DATA DETECTED (I.E., MISSING SCAN(S) PRECEDING THE CURRENT SCAN) +2 2 RECORDED TIME IS NOT IN SEQUENCE (I.E., THE SCAN START TIME IS OUT OF SEQUENCE) +3 3 LAMBDA MONITORED CALCULATION CANNOT BE UPDATED +4 4 THE MEASURED TEMPERATURES OF ANY INSTRUMENT COMPONENTS (E.G., BEAM-SPLITTER, SCAN MIRROR, SCAN BAFFLE) ARE OUTSIDE THE ALLOWABLE RANGES +5 5 AT LEAST ONE OF THE MONITORED INSTRUMENT TEMPERATURES HAS DRIFTED MORE THAN A SPECIFIED TOLERANCE VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33076.table b/definitions/bufr/tables/0/wmo/42/codetables/33076.table new file mode 100644 index 000000000..7100c4a0d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33076.table @@ -0,0 +1,2 @@ +1 1 LUNAR INTRUSION ON FIRST DEEP SPACE VIEW +2 2 LUNAR INTRUSION ON SECOND DEEP SPACE VIEW diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33077.table b/definitions/bufr/tables/0/wmo/42/codetables/33077.table new file mode 100644 index 000000000..769be02f2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33077.table @@ -0,0 +1,12 @@ +1 1 DEGRADED SDR QUALITY +2 2 INVALID SDR QUALITY +3 3 INVALID SDR GEOLOCATION INFORMATION +4 4 DEGRADED RADIOMETRIC CALIBRATION +5 5 INVALID RADIOMETRIC CALIBRATION +6 6 DEGRADED SPECTRAL CALIBRATION +7 7 INVALID SPECTRAL CALIBRATION +8 8 FRINGE COUNT ERROR DETECTED AND CORRECTED +9 9 DAY/NIGHT INDICATOR +10 10 INVALID RDR DATA +11 11 SIGNIFICANT FRINGE COUNT ERROR DETECTED +12 12 BIT TRIM FAILED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33078.table b/definitions/bufr/tables/0/wmo/42/codetables/33078.table new file mode 100644 index 000000000..f3a218067 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33078.table @@ -0,0 +1,5 @@ +0 0 NOMINAL - ALTITUDE AND EPHEMERIS DATA AVAILABLE +1 1 MISSING AT MOST A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA +2 2 MISSING MORE THAN A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA, BUT NO MORE THAN A GRANULE BOUNDARY +3 3 MISSING MORE THAN A GRANULE BOUNDARY OF ALTITUDE AND EPHEMERIS DATA +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33079.table b/definitions/bufr/tables/0/wmo/42/codetables/33079.table new file mode 100644 index 000000000..08751431e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33079.table @@ -0,0 +1,10 @@ +6 6 THE NO. 1-NO. 7 HEALTH CHECKS FAILED +7 7 THE NO. 8-NO. 15 HEALTH CHECKS FAILED +8 8 THE NO. 16-NO. 23 HEALTH CHECKS FAILED +9 9 THE NO. 24-NO. 31 HEALTH CHECKS FAILED +10 10 THE NO. 32-NO. 39 HEALTH CHECKS FAILED +11 11 THE NO. 40-NO. 47 HEALTH CHECKS FAILED +12 12 THE NO. 48-NO. 55 HEALTH CHECKS FAILED +13 13 THE NO. 56-NO. 63 HEALTH CHECKS FAILED +14 14 THE NO. 64-NO. 70 HEALTH CHECKS FAILED +15 15 QUADRATIC CORRECTION APPLIED TO THE RADIOMETRIC TRANSFER FUNCTION FOR NON-LINEARITY CORRECTION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33080.table b/definitions/bufr/tables/0/wmo/42/codetables/33080.table new file mode 100644 index 000000000..a39dd47ea --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33080.table @@ -0,0 +1,13 @@ +7 7 DIVIDE-BY-ZERO CONDITION OR COMPUTATION LOOP FAILED TO CONVERGE IN THE K/KA AND V (KAV) BAND PRT +8 8 DIVIDE-BY-ZERO CONDITION OR COMPUTATION LOOP FAILED TO CONVERGE IN THE WG BAND PRT +9 9 DIVIDE-BY-ZERO CONDITION OR COMPUTATION LOOP FAILED TO CONVERGE IN THE K/KA, V, W, G BAND RECEIVER SHELF PRT K TEMPERATURE COMPUTATION +10 10 OUT OF RANGE CONDITION FOR THE K/KA AND V BAND PRT +11 11 OUT OF RANGE CONDITION FOR THE WG BAND PRT +12 12 KAV PRT TEMPERATURE INCONSISTENCY +13 13 WG PRT TEMPERATURE INCONSISTENCY +14 14 TIME SEQUENCE ERROR +15 15 DATA GAP - MISSING SCAN(S) PRECEDING THE CURRENT SCAN +16 16 KAV PRT SUFFICIENCY - INSUFFICIENT KAV PRT DATA ARE AVAILABLE +17 17 WG PRT SUFFICIENCY - INSUFFICIENT WG PRT DATA ARE AVAILABLE +18 18 SPACE VIEW ANTENNA POSITION ERROR +19 19 BLACKBODY ANTENNA POSITION ERROR diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33081.table b/definitions/bufr/tables/0/wmo/42/codetables/33081.table new file mode 100644 index 000000000..f8759e0ef --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33081.table @@ -0,0 +1,9 @@ +3 3 MOON IN SPACE VIEW +4 4 GAIN ERROR - THE LOWEST BLACKBODY COUNT IS SMALLER THAN OR EQUAL TO THE HIGHEST SPACE VIEW COUNT IN A SCAN +5 5 CALIBRATION WITH FEWER THAN PREFERRED SAMPLES +6 6 SPACE VIEW DATA SUFFICIENCY CHECK - INSUFFICIENT SPACE VIEW SAMPLES ARE AVAILABLE +7 7 BLACKBODY VIEW DATA SUFFICIENCY CHECK - INSUFFICIENT BLACKBODY VIEW SAMPLES ARE AVAILABLE +8 8 OUT OF RANGE CONDITION FOR THE SPACE VIEW +9 9 OUT OF RANGE CONDITION FOR THE BLACKBODY VIEW +10 10 SPACE VIEW INCONSISTENCY +11 11 BLACKBODY VIEW INCONSISTENCY diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33082.table b/definitions/bufr/tables/0/wmo/42/codetables/33082.table new file mode 100644 index 000000000..467157461 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33082.table @@ -0,0 +1,10 @@ +6 6 WITHIN SOUTH ATLANTIC ANOMALY +7 7 INVALID INPUT DATA (INDICATES THAT ANY OF THE SPACECRAFT EPHEMERIS OR ATTITUDE DATA ARE INVALID) +8 8 BAD POINTING (INDICATES THAT THE SENSOR LOS DOES NOT INTERSECT THE GEOID, IS NEAR THE LIMB, HAS INVALID SENSOR ANGLES OR OTHER SIMILAR CONDITION) +9 9 BAD TERRAIN (INDICATES THAT THE ALGORITHM COULD NOT OBTAIN A VALID TERRAIN VALUE) +10 10 INVALID SOLAR ANGLES +11 11 MISSING AT MOST A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA +12 12 MISSING MORE THAN A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA, BUT NO MORE THAN A GRANULE BOUNDARY +13 13 MISSING MORE THAN A GRANULE BOUNDARY OF ALTITUDE AND EPHEMERIS DATA +14 14 THE NUMBER OF ENCODER PULSE VALUES PER DELTA TIME IS NOT AS EXPECTED +15 15 SOLAR ECLIPSE DURING EARTH VIEW SCAN diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33083.table b/definitions/bufr/tables/0/wmo/42/codetables/33083.table new file mode 100644 index 000000000..ecd8a1abf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33083.table @@ -0,0 +1,10 @@ +6 6 PIXEL IS AFFECTED BY RADIO-FREQUENCY INTERFERENCE +7 7 POOR CALIBRATION QUALITY DUE TO BAD SPACE VIEW OFFSETS, OBC VIEW OFFSETS, ETC. OR USE OF A PREVIOUS CALIBRATION VIEW +8 8 SATURATED PIXEL +9 9 MISSING DATA -DATA REQUIRED FOR CALIBRATION PROCESSING ARE NOT AVAILABLE FOR PROCESSING +10 10 CALIBRATED PIXEL RADIANCE OUT OF RANGE +11 11 CALIBRATED PIXEL REFLECTANCE OR EBBT OUT OF RANGE +12 12 THE MOON HAS CORRUPTED THE SPACE VIEW +13 13 SCAN DATA IS NOT PRESENT (NO VALID DATA) +14 14 QUALITY FOR THIS SCAN-LINE IS REDUCED. THE VALUE IS DETERMINED BY THE COMBINED NUMBER OF STEPS REQUIRED TO FIND A REPLACEMENT FOR THERMISTOR OR CALIBRATION SOURCE DATA +15 15 BAD DETECTOR diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33084.table b/definitions/bufr/tables/0/wmo/42/codetables/33084.table new file mode 100644 index 000000000..accb209c5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33084.table @@ -0,0 +1,10 @@ +6 6 BULK SST OUTSIDE OF VALIDATION RANGE +7 7 SKIN SST OUTSIDE OF VALIDATION RANGE +8 8 SENSOR ZENITH ANGLE > 40 DEGREES (PIXEL IS NOT WITHIN 40 DEGREES OF NADIR AND THEREFORE IS NOT OF HIGH QUALITY) +9 9 DEGRADATION - HORIZONTAL CELL SIZE (HCS) > 1.3 KM (HCS > 1.3 KM, SWATH WIDTH > 1 700 KM, SENSOR ZENITH ANGLE > 50.3 DEGREES) +10 10 EXCLUSION: NO OCEAN IN PIXEL +11 11 DEGRADATION: AEROSOL OPTICAL THICKNESS (AOT) > 0.6 (AOT IN HORIZONTAL CELL > 0.6 ON THE SLANT PATH (AOT @550 NM)) +12 12 EXCLUSION: AOT > 1.0 (AOT IN HORIZONTAL CELL > 1.0 ON THE SLANT PATH (AOT @550 NM)) +13 13 SUN GLINT PRESENT IN PIXEL +14 14 ICE CONCENTRATION THRESHOLD EXCEEDED (SST NOT RETRIEVED DUE TO ICE CONCENTRATION EXCEEDING THRESHOLD IN SYSTEM SPEC) +15 15 THIN CIRRUS DETECTED IN PIXEL diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33085.table b/definitions/bufr/tables/0/wmo/42/codetables/33085.table new file mode 100644 index 000000000..844157b20 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33085.table @@ -0,0 +1,14 @@ +4 4 ANGSTROM EXPONENT IS OUTSIDE OF THE SYSTEM SPECIFICATION RANGE +5 5 EXCLUDED, ANGSTROM EXPONENT FOR AOT AT 550 NM < 0.15 +6 6 BRIGHT SURFACE IN CELL (IF OVER LAND), OR SHALLOW OR TURBID WATER IN CELL (IF OVER OCEAN) +7 7 LOW SUN, EXCLUDED, SOLAR ZENITH ANGLE > 80 DEGREES +8 8 LOW SUN, DEGRADED, 65 DEGREES < SOLAR ZENITH ANGLE =< 80 DEGREES +9 9 FIRE DETECTED IN CELL +10 10 SNOW/ICE IN CELL +11 11 CLOUD SHADOW IN CELL +12 12 SUN GLINT IN CELL +13 13 BAD SDR DATA PRESENT IN HORIZONTAL CELL (QUALITY OF AOT/APSP DEGRADED OR AOT/APSP NOT RETRIEVED DUE TO BAD SDR DATA IN HORIZONTAL CELL) +14 14 CIRRUS CONTAMINATION IN CELL +15 15 CLOUD ADJACENT TO CELL +16 16 CLOUD CONTAMINATION IN CELL +17 17 AOT IS OUTSIDE OF THE SYSTEM SPECIFICATION RANGE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33086.table b/definitions/bufr/tables/0/wmo/42/codetables/33086.table new file mode 100644 index 000000000..b7cda3212 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33086.table @@ -0,0 +1,5 @@ +0 0 NOT RETRIEVED +1 1 EXCLUDED +2 2 DEGRADED +3 3 HIGH QUALITY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33087.table b/definitions/bufr/tables/0/wmo/42/codetables/33087.table new file mode 100644 index 000000000..f3000e258 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33087.table @@ -0,0 +1,10 @@ +0 0 LESS THAN OR EQUAL TO 10% +1 1 GREATER THAN 10% BUT LESS THAN OR EQUAL TO 20% +2 2 GREATER THAN 20% BUT LESS THAN OR EQUAL TO 30% +3 3 GREATER THAN 30% BUT LESS THAN OR EQUAL TO 40% +4 4 GREATER THAN 40% BUT LESS THAN OR EQUAL TO 50% +5 5 GREATER THAN 50% BUT LESS THAN OR EQUAL TO 60% +6 6 GREATER THAN 60% BUT LESS THAN OR EQUAL TO 70% +7 7 GREATER THAN 70% BUT LESS THAN OR EQUAL TO 80% +8 8 GREATER THAN 80% +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33088.table b/definitions/bufr/tables/0/wmo/42/codetables/33088.table new file mode 100644 index 000000000..744a5d31b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33088.table @@ -0,0 +1,12 @@ +6 6 SURFACE REFLECTIVITY OUT OF RANGE +7 7 RESIDUAL TOO LARGE +8 8 AEROSOL INDEX LIMIT EXCEEDED +9 9 SOLAR ECLIPSE PRESENT (ALL OR PART OF THE IFOV IS AFFECTED BY A SOLAR ECLIPSE, UMBRA OR PENUMBRA VIEWING) +10 10 SUN GLINT PRESENT WITHIN IFOV +11 11 SNOW OR ICE SURFACE IS WITHIN THE IFOV +12 12 SOLAR ZENITH ANGLE IN EXCLUDED (NIGHT) CONDITION (SOLAR ZENITH ANGLE >= 88 DEGREES) +13 13 SOLAR ZENITH ANGLE IN DEGRADED CONDITION (80 DEGREES =< SOLAR ZENITH ANGLE < 88 DEGREES) +14 14 SO2 INDEX > 6 DU (DEGRADED CONDITION) +15 15 RESIDUES ARE NOT CONSISTENT (INDICATES WHETHER THE RESIDUES FROM THE 22 WAVELENGTHS ARE CONSISTENT) +16 16 O3 TRIPLET SELECTION IS NOT CONSISTENT WITHIN RETRIEVAL (OZONE TRIPLET CONSISTENCY) +17 17 INPUT DATA QUALITY IS NOT GOOD diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33092.table b/definitions/bufr/tables/0/wmo/42/codetables/33092.table new file mode 100644 index 000000000..2a9557582 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33092.table @@ -0,0 +1,2 @@ +1 1 ALTIMETER OPERATING +2 2 MICROWAVE RADIOMETER (MWR) OPERATING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33093.table b/definitions/bufr/tables/0/wmo/42/codetables/33093.table new file mode 100644 index 000000000..d872dc664 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33093.table @@ -0,0 +1,19 @@ +1 1 PATH DELAY QUALITY IS CONSIDERED POOR +2 2 GALILEO SATELLITES USED +3 3 GLONASS SATELLITES USED +4 4 GPS SATELLITES USED +5 5 BEIDOU SATELLITES USED +9 9 METEOROLOGICAL DATA APPLIED +10 10 ATMOSPHERIC LOADING CORRECTION APPLIED +11 11 OCEAN TIDE LOADING APPLIED +12 12 SECOND ORDER IONOSPHERE CORRECTIONS APPLIED +13 13 THIRD ORDER IONOSPHERE CORRECTIONS APPLIED +14 14 PPP SOLUTION +15 15 GRADIENTS APPLIED TO PATH DELAY +16 16 MULTIPATH CORRECTIONS APPLIED TO PATH DELAY +17 17 RESIDUAL APPLIED TO PATH DELAY +18 18 CLIMATE QUALITY DATA PROCESSING +19 19 RE-PROCESSING +20 20 POST-PROCESSING +21 21 NEAR-REAL TIME DATA PROCESSING +22 22 REAL TIME DATA PROCESSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33094.table b/definitions/bufr/tables/0/wmo/42/codetables/33094.table new file mode 100644 index 000000000..1365228b2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33094.table @@ -0,0 +1,8 @@ +16 16 NON-OCEAN +17 17 LUNAR OR SOLAR INTRUSION +18 18 SPACECRAFT MANOEUVRE +19 19 COLD CALIBRATION CONSISTENCY +20 20 WARM CALIBRATION CONSISTENCY +21 21 DESCENDING +22 22 NIGHT +23 23 PAYLOAD REAR ORIENTATION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33095.table b/definitions/bufr/tables/0/wmo/42/codetables/33095.table new file mode 100644 index 000000000..67328ecfd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33095.table @@ -0,0 +1,7 @@ +1 1 PRT OR THM TEMPERATURES ARE MISSING OR WITH ANOMALOUS READINGS +2 2 PRT TEMPERATURES OF OBCT USED IN THE RADIOMETRIC CALIBRATIONS ARE MISSING OR WITH ANOMALOUS READINGS +3 3 THM TEMPERATURES OF SVR USED IN THE RADIOMETRIC CALIBRATIONS ARE MISSING OR WITH ANOMALOUS READINGS +4 4 THM TEMPERATURES OF MAIN REFLECTOR ARE MISSING OR WITH ANOMALOUS READINGS +5 5 THM TEMPERATURES OF THE RACETRACK ARE MISSING OR WITH ANOMALOUS READINGS +6 6 THM TEMPERATURES OF THE RECEIVERS ARE MISSING OR WITH ANOMALOUS READINGS +7 7 RESERVED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33096.table b/definitions/bufr/tables/0/wmo/42/codetables/33096.table new file mode 100644 index 000000000..3bdfe18bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33096.table @@ -0,0 +1,15 @@ +1 1 RADIOMETRIC CALIBRATION FAILED OR IS DEGRADED +2 2 OBCT VIEW COUNTS AVERAGED VALUE OVER SCANS IS MISSING (THIS IS VALID FOR THE HIGH-REFERENCE CALIBRATION LOAD WHEN THE BACK-UP CALIBRATION IS APPLIED FOR CHANNELS MWI-1 TO MWI-3) +3 3 COLD SPACE VIEW COUNTS AVERAGED VALUE OVER SCANS IS MISSING (THIS IS VALID FOR THE LOW-REFERENCE CALIBRATION LOAD WHEN THE BACK-UP CALIBRATION IS APPLIED FOR CHANNELS MWI-1 TO MWI-3) +4 4 OBCT VIEW COUNTS AVERAGED VALUE OVER SCANS IS DEGRADED DUE TO MISSING OR ANOMALOUS COUNTS VALUES (THIS IS VALID FOR THE HIGH-REFERENCE CALIBRATION LOAD WHEN THE BACK-UP CALIBRATION IS APPLIED FOR CHANNELS MWI-1 TO MWI-3) +5 5 COLD SPACE VIEW COUNTS AVERAGED VALUE OVER SCANS IS DEGRADED DUE TO MISSING OR ANOMALOUS COUNTS VALUES (THIS IS VALID FOR THE LOW-REFERENCE CALIBRATION LOAD WHEN THE BACK-UP CALIBRATION IS APPLIED FOR CHANNELS MWI-1 TO MWI-3) +6 6 OBCT VIEW RADIANCE AVERAGED VALUE OVER SCANS IS MISSING (THIS IS VALID FOR THE HIGH-REFERENCE CALIBRATION LOAD WHEN THE BACK-UP CALIBRATION IS APPLIED FOR CHANNELS MWI-1 TO MWI-3) +7 7 COLD SPACE VIEW RADIANCE AVERAGED VALUE OVER SCANS IS MISSING (THIS IS VALID FOR THE LOW-REFERENCE CALIBRATION LOAD WHEN THE BACK-UP CALIBRATION IS APPLIED FOR CHANNELS MWI-1 TO MWI-3) +8 8 OBCT VIEW RADIANCE AVERAGED VALUE OVER SCANS IS DEGRADED DUE TO MISSING OR ANOMALOUS VALUES (THIS IS VALID FOR THE HIGH-REFERENCE CALIBRATION LOAD WHEN THE BACK-UP CALIBRATION IS APPLIED FOR CHANNELS MWI-1 TO MWI-3) +9 9 COLD SPACE VIEW RADIANCE AVERAGED VALUE OVER SCANS IS DEGRADED DUE TO MISSING OR ANOMALOUS VALUES (THIS IS VALID FOR THE LOW-REFERENCE CALIBRATION LOAD WHEN THE BACK-UP CALIBRATION IS APPLIED FOR CHANNELS MWI-1 TO MWI-3) +10 10 NON-LINEARITY PARAMETER COMPUTED USING NOISE DIODES IS MISSING (MEANINGFUL ONLY FOR CHANNELS MWI-1 TO MWI-3) +11 11 NON-LINEARITY PARAMETER COMPUTED USING NOISE DIODES IS DEGRADED (MEANINGFUL ONLY FOR CHANNELS MWI-1 TO MWI-3) +12 12 PRT OR THM TEMPERATURES OF CURRENT SCAN ARE MISSING OR WITH ANOMALOUS READINGS +13 13 MOON INTRUSION IN COLD SPACE DEGRADED CALIBRATION (LESS THAN NVALID_C VALID SAMPLES ARE NOT AFFECTED BY MOON FOR THE CONSIDERED CHANNEL AND SCAN) +14 14 BACK-UP CALIBRATION WITH NOISE DIODES PERFORMED (MEANINGFUL ONLY FOR MWI-1 TO MWI-3) +15 15 DEGRADED RECEIVER TEMPERATURES LEAD TO DEGRADED CALIBRATION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33097.table b/definitions/bufr/tables/0/wmo/42/codetables/33097.table new file mode 100644 index 000000000..4a5ac50f1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33097.table @@ -0,0 +1,10 @@ +1 1 SCAN IS DEGRADED IN RAW DATA RECORD +2 2 TIME SEQUENCE ERROR +3 3 CURRENT SCAN IS ACQUIRED AFTER A GAP +4 4 SCAN IS IN PERIOD OF INITIALIZATION OF CALIBRATION OF DATA AVERAGES OVER SCANS (BECAUSE OF COLD START/COLD END, MISSING WARM/COLD L0 PACKETS OR DATA GAPS). +5 5 MOON INTRUSION ANGLE IN SPACE VIEW BELOW THRESHOLD FOR AT LEAST ONE CHANNEL +6 6 MOON CORRECTION IS APPLIED BUT IS DEGRADED FOR AT LEAST ONE CHANNEL +7 7 SUN GLINT ANGLE BELOW THRESHOLD FOR AT LEAST ONE CHANNEL +8 8 RFI CONTAMINATION IN THE EARTH VIEW OR RFI PACKET MISSING FOR THE CONSIDERED SCAN (ONLY FOR MWI-1V AND MWI-1H) +9 9 SATELLITE MANOEUVRE OCCURS IN CURRENT SCAN +10 10 MISSING WARM OR COLD L0 PACKETS FOR THE CONSIDERED SCAN diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33098.table b/definitions/bufr/tables/0/wmo/42/codetables/33098.table new file mode 100644 index 000000000..51170985b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33098.table @@ -0,0 +1,8 @@ +1 1 MWI SPECTRAL RADIANCE DATA OF CHANNEL IS MISSING OR DEGRADED +2 2 EARTH VIEW COUNTS OF CHANNEL WITHIN SCAN ARE MISSING OR OUT OF BOUNDS +3 3 RADIOMETRIC CALIBRATION FAILED OR IS DEGRADED +4 4 GEOLOCATION OF CHANNEL IS ERRONEOUS OR DEGRADED +5 5 NEΔT OF THIS DATA GRANULE IS ABOVE THRESHOLD +6 6 MR EMISSIVITY AND SPILLOVER CORRECTION FAILED OR DEGRADED +7 7 MR SIDELOBE CORRECTION FAILED OR DEGRADED +8 8 CHANNEL IS DEFECTIVE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33099.table b/definitions/bufr/tables/0/wmo/42/codetables/33099.table new file mode 100644 index 000000000..0db9cfd52 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33099.table @@ -0,0 +1,15 @@ +1 1 GEOLOCATION OF CHANNEL IS ERRONEOUS OR DEGRADED +2 2 TIME SEQUENCE ERROR +3 3 MISSING OR CORRUPTED NAVATT FILE LED TO THE USE OF PREDICTED ORBIT FILES +4 4 NAVATT ATTITUDE DATA IS DEGRADED +5 5 TIME CORRELATION ERROR (MISSING IERS BULLETIN) +6 6 INVALID EPHEMERIS OR ATTITUDE DATA +7 7 SATELLITE MANOEUVRE OCCURS IN CURRENT SCAN +8 8 NON-NOMINAL ATTITUDE WITH YAW, PITCH, ROLL ERROR ABOVE THRESHOLD DELTA_YPR (NOMINALLY THESE ANGLES ARE 0.0 DEG FOR YSM) +9 9 SAMPLING TIME NOT WITHIN PRESCRIBED LIMITS +10 10 SCAN VELOCITY NOT WITHIN PRESCRIBED LIMITS +11 11 BAD POINTING (SENSOR LOS DOES NOT INTERSECT ELLIPSOID OR NOT COMPLIANT WITH OBSERVATION AZIMUTH/ELEVATION LIMITS) +12 12 INVALID SOLAR AZIMUTH/ZENITH ANGLES COMPUTED +13 13 DEM GEOLOCATION NOT PERFORMED (WITH USE_DEM_FLAG = 1) +14 14 ERROR IN LAND FRACTION COMPUTATION +15 15 PREDICTED ORBIT FILE NOT AVAILABLE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33100.table b/definitions/bufr/tables/0/wmo/42/codetables/33100.table new file mode 100644 index 000000000..0a5f9f64b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33100.table @@ -0,0 +1,7 @@ +1 1 PRT OR THM TEMPERATURES ARE MISSING OR WITH ANOMALOUS READINGS +2 2 PRT TEMPERATURES OF OBCT USED IN THE RADIOMETRIC CALIBRATIONS IS MISSING OR WITH ANOMALOUS READINGS +3 3 PRT TEMPERATURES OF SVR USED IN THE RADIOMETRIC CALIBRATIONS ARE MISSING OR WITH ANOMALOUS READINGS +4 4 PRT TEMPERATURES OF IRP AND SUN SHIELD ARE MISSING OR WITH ANOMALOUS READINGS +5 5 THM TEMPERATURE OF BACK-END ARE MISSING OR WITH ANOMALOUS READINGS +6 6 THM TEMPERATURE OF FRONT-END ARE MISSING OR WITH ANOMALOUS READINGS +7 7 PRT TEMPERATURES OF MAIN REFLECTOR ARE MISSING OR WITH ANOMALOUS READINGS diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33101.table b/definitions/bufr/tables/0/wmo/42/codetables/33101.table new file mode 100644 index 000000000..7257ef9e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33101.table @@ -0,0 +1,12 @@ +1 1 RADIOMETRIC CALIBRATION FAILED OR IS DEGRADED +2 2 OBCT VIEW COUNTS AVERAGED VALUE OVER SCANS IS MISSING +3 3 COLD SPACE VIEW COUNTS AVERAGED VALUE OVER SCANS IS MISSING +4 4 OBCT VIEW COUNTS AVERAGED VALUE OVER SCANS IS DEGRADED DUE TO MISSING OR ANOMALOUS COUNTS VALUES +5 5 COLD SPACE VIEW COUNTS AVERAGED VALUE OVER SCANS IS DEGRADED DUE TO MISSING OR ANOMALOUS COUNTS VALUES +6 6 OBCT VIEW RADIANCE AVERAGED VALUE OVER SCANS IS MISSING +7 7 COLD SPACE VIEW RADIANCE AVERAGED VALUE OVER SCANS IS MISSING +8 8 OBCT VIEW RADIANCE AVERAGED VALUE OVER SCANS IS DEGRADED DUE TO MISSING OR ANOMALOUS VALUES +9 9 COLD SPACE VIEW RADIANCE AVERAGED VALUE OVER SCANS IS DEGRADED DUE TO MISSING OR ANOMALOUS VALUES +10 10 PRT OR THM TEMPERATURES OF CURRENT SCAN ARE MISSING OR WITH ANOMALOUS READINGS +11 11 MOON INTRUSION IN COLD SPACE DEGRADED CALIBRATION (LESS THAN NVALID_C VALID SAMPLES ARE NOT AFFECTED BY MOON FOR THE CONSIDERED CHANNEL AND SCAN) +12 12 DEGRADED OR MISSING BACK-END TEMPERATURES LEAD TO DEGRADED CALIBRATION diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33102.table b/definitions/bufr/tables/0/wmo/42/codetables/33102.table new file mode 100644 index 000000000..cc406573d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33102.table @@ -0,0 +1,9 @@ +1 1 SCAN IS DEGRADED IN RAW DATA RECORDS +2 2 TIME SEQUENCE ERROR +3 3 CURRENT SCAN IS ACQUIRED AFTER A GAP +4 4 SCAN IS IN PERIOD OF INITIALIZATION OF CALIBRATION OF DATA AVERAGES OVER SCANS (BECAUSE OF COLD START/COLD END, MISSING WARM/COLD L0 PACKETS OR DATA GAPS) +5 5 MOON INTRUSION ANGLE IN SPACE VIEW BELOW THRESHOLD FOR AT LEAST ONE CHANNEL +6 6 MOON CORRECTION IS APPLIED BUT IS DEGRADED FOR AT LEAST ONE CHANNEL +7 7 SUN GLINT ANGLE BELOW THRESHOLD FOR AT LEAST ONE CHANNEL +8 8 SATELLITE MANOEUVRE OCCURS IN CURRENT SCAN +9 9 MISSING WARM OR COLD L0 PACKETS FOR THE CONSIDERED SCAN diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33103.table b/definitions/bufr/tables/0/wmo/42/codetables/33103.table new file mode 100644 index 000000000..7683c6afa --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33103.table @@ -0,0 +1,8 @@ +1 1 ICI SPECTRAL RADIANCE DATA OF CHANNEL IS MISSING OR DEGRADED +2 2 EARTH VIEW COUNTS OF CHANNEL WITHIN SCAN ARE MISSING OR OUT OF BOUNDS +3 3 RADIOMETRIC CALIBRATION FAILED OR IS DEGRADED +4 4 GEOLOCATION OF CHANNEL IS ERRONEOUS OR DEGRADED +5 5 NEΔT OF THIS DATA GRANULE IS ABOVE THRESHOLD +6 6 MR EMISSIVITY AND SPILLOVER CORRECTION FAILED OR DEGRADED +7 7 MR SIDELOBE CORRECTION FAILED OR DEGRADED +8 8 CHANNEL IS DEFECTIVE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33104.table b/definitions/bufr/tables/0/wmo/42/codetables/33104.table new file mode 100644 index 000000000..56852332e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33104.table @@ -0,0 +1,15 @@ +1 1 GEOLOCATION OF CHANNELS IS ERRONEOUS OR DEGRADED +2 2 TIME SEQUENCE ERROR +3 3 MISSING OR CORRUPTED NAVATT FILE LED TO THE USE OF PREDICTED ORBIT FILES +4 4 NAVATT ATTITUDE DATA IS DEGRADED +5 5 TIME CORRELATION ERROR (MISSING IERS BULLETIN) +6 6 INVALID EPHEMERIS OR ATTITUDE DATA +7 7 SATELLITE MANOEUVRE OCCURS IN CURRENT SCAN +8 8 NON-NOMINAL ATTITUDE WITH YAW, PITCH, ROLL ERROR ABOVE THRESHOLD DELTA_YPR (NOMINALLY THESE ANGLES ARE 0.0 DEG FOR YSM) +9 9 SAMPLING TIME NOT WITHIN PRESCRIBED LIMITS +10 10 SCAN VELOCITY NOT WITHIN PRESCRIBED LIMITS +11 11 BAD POINTING (SENSOR LOS DOES NOT INTERSECT ELLIPSOID OR NOT COMPLIANT WITH OBSERVATION AZIMUTH/ELEVATION LIMITS) +12 12 INVALID SOLAR AZIMUTH/ZENITH ANGLES COMPUTED +13 13 DEM GEOLOCATION NOT PERFORMED (WITH USE_DEM_FLAG = 1) +14 14 ERROR IN LAND FRACTION COMPUTATION +15 15 PREDICTED ORBIT FILE NOT AVAILABLE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33105.table b/definitions/bufr/tables/0/wmo/42/codetables/33105.table new file mode 100644 index 000000000..e4a8ce397 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33105.table @@ -0,0 +1,9 @@ +1 1 MOON CONTAMINATION CORRECTION ON COLD SPACE VIEW COUNTS IS NOT APPLIED +2 2 MR SPILLOVER CORRECTION RELATIVE TO EMISSION BY INSTRUMENT PLATFORM IS NOT APPLIED +3 3 SVR SPILLOVER CORRECTION RELATIVE TO EMISSION BY INSTRUMENT PLATFORM IS NOT APPLIED +4 4 SVR SIDELOBE CORRECTION IS NOT APPLIED +5 5 FULL CROSS-POLARIZATION CORRECTION INCLUDING SMALL ANGLE CORRECTION IS APPLIED +6 6 DYNAMIC SIDELOBE CORRECTION IS NOT APPLIED FOR ICI-1 +7 7 DYNAMIC SIDELOBE CORRECTION IS NOT APPLIED FOR ICI-2 +8 8 DYNAMIC SIDELOBE CORRECTION IS NOT APPLIED FOR ICI-3 +9 9 DYNAMIC SIDELOBE CORRECTION IS NOT APPLIED FOR ICI-4 V AND ICI-4 H diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33106.table b/definitions/bufr/tables/0/wmo/42/codetables/33106.table new file mode 100644 index 000000000..9171a2f1a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33106.table @@ -0,0 +1,12 @@ +1 1 MOON CONTAMINATION CORRECTION ON COLD SPACE VIEW COUNTS IS NOT APPLIED +2 2 CALIBRATION WITH NOISE DIODES IS NOT APPLIED FOR AT LEAST ONE CHANNEL AMONG MWI-1 TO MWI-3 +3 3 MR SPILLOVER CORRECTION RELATIVE TO EMISSION BY INSTRUMENT PLATFORM IS NOT APPLIED +4 4 SVR SPILLOVER CORRECTION RELATIVE TO EMISSION BY INSTRUMENT PLATFORM IS NOT APPLIED +5 5 SVR SIDELOBE CORRECTION IS NOT APPLIED +6 6 FULL CROSS-POLARIZATION CORRECTION INCLUDING SMALL ANGLE CORRECTION IS APPLIED +7 7 RFI CORRECTION IN THE EARTH VIEW IS NOT APPLIED +8 8 DYNAMIC SIDELOBE CORRECTION IS NOT APPLIED FOR MWI-1 +9 9 DYNAMIC SIDELOBE CORRECTION IS NOT APPLIED FOR MWI-2 +10 10 DYNAMIC SIDELOBE CORRECTION IS NOT APPLIED FOR MWI-3 +11 11 DYNAMIC SIDELOBE CORRECTION IS NOT APPLIED FOR MWI-4 +12 12 DYNAMIC SIDELOBE CORRECTION IS NOT APPLIED FOR MWI-8 diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33107.table b/definitions/bufr/tables/0/wmo/42/codetables/33107.table new file mode 100644 index 000000000..8487a7300 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33107.table @@ -0,0 +1,15 @@ +1 1 NON-NOMINAL SCAN DUE TO GAP +2 2 NON-NOMINAL WARM TARGET TEMPERATURE +3 3 NON-NOMINAL ALONG-TRACK AVERAGING OF WARM TARGET TEMPERATURES +4 4 NON-NOMINAL INSTRUMENT TEMPERATURE +5 5 NON-NOMINAL ALONG-TRACK AVERAGING OF INSTRUMENT TEMPERATURES +6 6 NON-NOMINAL ROTATING REFLECTOR TEMPERATURE +7 7 NON-NOMINAL ALONG-TRACK AVERAGING OF ROTATING REFLECTOR TEMPERATURES +8 8 NON-NOMINAL ANTENNA SCAN ANGLE EARTH VIEW +9 9 NON-NOMINAL ANTENNA SCAN ANGLE COLD VIEW +10 10 NON-NOMINAL ANTENNA SCAN ANGLE WARM VIEW +11 11 NON-NOMINAL GEOLOCATION +12 12 NON-NOMINAL LSM AND DEM ASSIGNMENT +13 13 ONGOING SATELLITE MANOEUVRE +14 14 REDUNDANT 50GHZ REC AND PRT SET IN USE +15 15 RESERVED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33108.table b/definitions/bufr/tables/0/wmo/42/codetables/33108.table new file mode 100644 index 000000000..70f883e37 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33108.table @@ -0,0 +1,12 @@ +1 1 NON-NOMINAL CONDITION +2 2 SCAN NOT PROCESSED +3 3 GEOLOCATION NOT SUCCESSFUL +4 4 ORBIT NOT INITIALIZED WITH NAVATT +5 5 ATTITUDE NOT INITIALIZED WITH NAVATT +6 6 PREDICTED ORBIT FILE INGEST ERROR +7 7 MANOEUVRE +8 8 IERS BULLETIN A INGEST ERROR +9 9 TIME CORRELATION AND EOP INITIALIZED WITH PREDICTED ORBIT FILE +10 10 FULL ACCURACY OF NAVATT INITIALIZED ATTITUDE NOT REACHED +11 11 POINTING MODE NOT YSM +12 12 NAVATT INGEST ERROR diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33109.table b/definitions/bufr/tables/0/wmo/42/codetables/33109.table new file mode 100644 index 000000000..467f6c0ae --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33109.table @@ -0,0 +1,6 @@ +1 1 MISSING INPUT PRODUCT(S) +2 2 DATA GAP(S) +3 3 CORRUPTED INPUT PRODUCT(S) +4 4 INSTRUMENT ANOMALY +5 5 MISSING OR DEGRADED AUXILIARY DATA +6 6 DEGRADED DUE TO MANOEUVRE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33110.table b/definitions/bufr/tables/0/wmo/42/codetables/33110.table new file mode 100644 index 000000000..ac33f50c9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33110.table @@ -0,0 +1,8 @@ +1 1 CHANNEL IS OFF +2 2 NON-NOMINAL MEAN WARM VIEW COUNT +3 3 NON-NOMINAL ALONG-TRACK AVERAGING OF WARM VIEW COUNTS +4 4 NON-NOMINAL MEAN COLD VIEW COUNT +5 5 NON-NOMINAL ALONG-TRACK AVERAGING OF COLD VIEW COUNTS +6 6 NON-NOMINAL CALIBRATION COEFFICIENTS +7 7 MOON INTRUSION IN SOME OF THE COLD VIEW FOVS +8 8 NON-NOMINAL PROCESSING OR EXCESSIVE VALUE FOR NEDT (COLD OR WARM) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33111.table b/definitions/bufr/tables/0/wmo/42/codetables/33111.table new file mode 100644 index 000000000..bbaa5b5ed --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33111.table @@ -0,0 +1,31 @@ +1 1 PREDICTED ORBIT FILE USED +2 2 MANOEUVRE TAKING PLACE +3 3 RESERVED +4 4 SATELLITE IS NOT IN YAW STEERING MODE +5 5 TRANSPONDER SIGNAL IS PRESENT +6 6 NOISE ESTIMATE IS POOR +7 7 NOISE ESTIMATE IS VERY POOR +8 8 NOISE OUTLIER IS PRESENT +9 9 ANCILLARY DATA IS POOR +10 10 ANCILLARY DATA IS VERY POOR +11 11 CHARACTERIZATION TABLE LIMITS EXCEEDED +12 12 POWER-GAIN ESTIMATE IS POOR +13 13 POWER-GAIN ESTIMATE IS VERY POOR +14 14 POWER-GAIN OUT OF LIMITS +15 15 WAVEGUIDE LOSS ESTIMATE IS POOR +16 16 WAVEGUIDE LOSS ESTIMATE IS VERY POOR +17 17 WAVEGUIDE TABLE LIMITS EXCEEDED +18 18 ECHO IS OUT OF ADC RANGE +19 19 RESERVED +20 20 MISSING NORMALIZATION TABLES +21 21 NUMBER OF SAMPLES IN WINDOW IS LOW +22 22 NUMBER OF SAMPLES IN WINDOW IS VERY LOW +23 23 NEGATIVE BACKSCATTER IN RESAMPLED DATA +24 24 POSSIBLE INTERFERENCE FROM SOLAR ARRAY +25 25 RESERVED +26 26 RESERVED +27 27 RESERVED +28 28 LAND +29 29 WATER +30 30 ASCENDING PASS +31 31 DESCENDING PASS diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33113.table b/definitions/bufr/tables/0/wmo/42/codetables/33113.table new file mode 100644 index 000000000..a8f4ce101 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33113.table @@ -0,0 +1,11 @@ +1 1 GENERAL QUALITY (0 IF BITS 2 TO 11 ARE ALL 0, 1 OTHERWISE) +2 2 SOUNDER RADIOMETRIC +3 3 SOUNDER SPECTRAL +4 4 IMAGER GEOMETRIC +5 5 IMAGER CLASSIFICATION +6 6 IMAGER RADIOMETRIC +7 7 GENERAL SOUNDER +8 8 PRESENCE OF MATHEMATICAL ERRORS +9 9 TM DATA MISSING +10 10 TM DATA CORRUPT +11 11 TM INTEGRITY INSTRUMENT diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33114.table b/definitions/bufr/tables/0/wmo/42/codetables/33114.table new file mode 100644 index 000000000..576d09d85 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33114.table @@ -0,0 +1,16 @@ +1 1 TEMPERATURE PROFILE +2 2 WATER VAPOUR PROFILE +3 3 OZONE PROFILE +4 4 SURFACE SKIN TEMPERATURE +5 5 SURFACE AIR TEMPERATURE +6 6 SURFACE AIR DEW POINT TEMPERATURE +7 7 SURFACE PRESSURE +8 8 SURFACE SKIN TEMPERATURE ERROR ESTIMATE (QUALITY INDICATOR) +9 9 SURFACE AIR TEMPERATURE ERROR ESTIMATE (QUALITY INDICATOR) +10 10 SURFACE AIR DEW POINT TEMPERATURE ERROR ESTIMATE (QUALITY INDICATOR) +11 11 SURFACE PRESSURE ERROR ESTIMATE (QUALITY INDICATOR) +12 12 SURFACE EMISSIVITY COARSE INFRARED SPECTRUM +13 13 SURFACE EMISSIVITY MICROWAVE SPECTRUM +14 14 CO2 PROFILE +15 15 CH4 PROFILE +16 16 N2O PROFILE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33115.table b/definitions/bufr/tables/0/wmo/42/codetables/33115.table new file mode 100644 index 000000000..911a3c2e7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33115.table @@ -0,0 +1,6 @@ +0 0 GOOD +1 1 CLOUDY NADIR +2 2 CLOUDY OBLIQUE +3 3 GLINT NADIR +4 4 GLINT OBLIQUE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33116.table b/definitions/bufr/tables/0/wmo/42/codetables/33116.table new file mode 100644 index 000000000..576d09d85 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33116.table @@ -0,0 +1,16 @@ +1 1 TEMPERATURE PROFILE +2 2 WATER VAPOUR PROFILE +3 3 OZONE PROFILE +4 4 SURFACE SKIN TEMPERATURE +5 5 SURFACE AIR TEMPERATURE +6 6 SURFACE AIR DEW POINT TEMPERATURE +7 7 SURFACE PRESSURE +8 8 SURFACE SKIN TEMPERATURE ERROR ESTIMATE (QUALITY INDICATOR) +9 9 SURFACE AIR TEMPERATURE ERROR ESTIMATE (QUALITY INDICATOR) +10 10 SURFACE AIR DEW POINT TEMPERATURE ERROR ESTIMATE (QUALITY INDICATOR) +11 11 SURFACE PRESSURE ERROR ESTIMATE (QUALITY INDICATOR) +12 12 SURFACE EMISSIVITY COARSE INFRARED SPECTRUM +13 13 SURFACE EMISSIVITY MICROWAVE SPECTRUM +14 14 CO2 PROFILE +15 15 CH4 PROFILE +16 16 N2O PROFILE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/33117.table b/definitions/bufr/tables/0/wmo/42/codetables/33117.table new file mode 100644 index 000000000..576d09d85 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/33117.table @@ -0,0 +1,16 @@ +1 1 TEMPERATURE PROFILE +2 2 WATER VAPOUR PROFILE +3 3 OZONE PROFILE +4 4 SURFACE SKIN TEMPERATURE +5 5 SURFACE AIR TEMPERATURE +6 6 SURFACE AIR DEW POINT TEMPERATURE +7 7 SURFACE PRESSURE +8 8 SURFACE SKIN TEMPERATURE ERROR ESTIMATE (QUALITY INDICATOR) +9 9 SURFACE AIR TEMPERATURE ERROR ESTIMATE (QUALITY INDICATOR) +10 10 SURFACE AIR DEW POINT TEMPERATURE ERROR ESTIMATE (QUALITY INDICATOR) +11 11 SURFACE PRESSURE ERROR ESTIMATE (QUALITY INDICATOR) +12 12 SURFACE EMISSIVITY COARSE INFRARED SPECTRUM +13 13 SURFACE EMISSIVITY MICROWAVE SPECTRUM +14 14 CO2 PROFILE +15 15 CH4 PROFILE +16 16 N2O PROFILE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/35000.table b/definitions/bufr/tables/0/wmo/42/codetables/35000.table new file mode 100644 index 000000000..8c57023e3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/35000.table @@ -0,0 +1 @@ +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/35001.table b/definitions/bufr/tables/0/wmo/42/codetables/35001.table new file mode 100644 index 000000000..bba0c812e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/35001.table @@ -0,0 +1,4 @@ +0 0 REAL TIME +1 1 NEAR-REAL TIME +2 2 NON-REAL TIME +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/35030.table b/definitions/bufr/tables/0/wmo/42/codetables/35030.table new file mode 100644 index 000000000..5b83f8b81 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/35030.table @@ -0,0 +1,10 @@ +0 0 NO DISCREPANCIES +1 1 NON-COMPLIANCE WITH STANDARD AND RECOMMENDED PRACTICES AND PROCEDURES INCLUDING THOSE OF MONITORING +2 2 CATALOGUES OF METEOROLOGICAL BULLETINS NOT UPDATED IN A TIMELY MANNER +3 3 INCORRECT ROUTING DIRECTORIES +4 4 LACK OF FLEXIBILITY IN THE ROUTING ARRANGEMENTS +5 5 DEFICIENCIES IN THE OPERATION OF GTS CENTRES AND CIRCUITS +6 6 LOSS OF DATA OR DELAYS IN RELAYING DATA ON THE GTS +7 7 ROUTING OF DATA DIFFERENT FROM THE ROUTING PROVIDED IN THE PLAN +8 8 VARIOUS MALPRACTICES +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/35031.table b/definitions/bufr/tables/0/wmo/42/codetables/35031.table new file mode 100644 index 000000000..bdd705ddd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/35031.table @@ -0,0 +1,20 @@ +1 1 SUFFICIENT AND ALL OF ACCEPTABLE QUALITY +2 2 SUFFICIENT BUT PARTLY OF ACCEPTABLE QUALITY +3 3 INSUFFICIENT BUT ALL OF ACCEPTABLE QUALITY +4 4 INSUFFICIENT AND OF UNACCEPTABLE QUALITY +5 5 SOME MESSAGES NOT COMPLETE +6 6 SUSPECT OR WRONGLY CODED GROUPS COULD NOT BE INTERPRETED CONFIDENTLY +7 7 GROSS CODING ERRORS +8 8 TRANSMISSION SEQUENTIAL ORDER NOT OBSERVED +9 9 REPORT COMPLETELY GARBLED AND THUS DISCARDED +10 10 DEFICIENCIES IDENTIFIED AND RECTIFIED +11 11 DEFICIENCIES IDENTIFIED BUT NOT RECTIFIED +12 12 DEFICIENCIES NOT IDENTIFIED +13 13 MEASURING ERRORS +14 14 MUTUAL INCONSISTENCY +15 15 TEMPORAL INCONSISTENCY +16 16 FORECAST ERROR +17 17 BIAS +18 18 IMPROVE SYSTEM OF QUALITY CONTROL +19 19 EXPAND TRAINING PROGRAMMES +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/35032.table b/definitions/bufr/tables/0/wmo/42/codetables/35032.table new file mode 100644 index 000000000..7f53a05f9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/35032.table @@ -0,0 +1,10 @@ +1 1 DATA GROUPS MISSING DUE TO RADIO FADING +2 2 DATA GROUPS MISSING DUE TO OUTAGE OF CENTRE +3 3 DATA GROUPS MISSING DUE TO OUTAGE OF CIRCUIT +4 4 NON-IMPLEMENTATION OR MAINTENANCE OF REQUIRED RBSN DENSITY +5 5 SHORTAGE OF QUALIFIED STAFF TO MAN STATIONS +6 6 LACK OF CONSUMABLES +7 7 INSTRUMENT FAILURE +8 8 NON-ADHERENCE TO TELECOMMUNICATION PROCEDURES +9 9 SOME OBSERVING PROGRAMMES CEASED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/35033.table b/definitions/bufr/tables/0/wmo/42/codetables/35033.table new file mode 100644 index 000000000..86e9592ef --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/35033.table @@ -0,0 +1,12 @@ +1 1 NO DEFICIENCY +2 2 OBSERVATIONS NOT MADE REGULARLY +3 3 OBSERVATIONS NOT MADE AT RIGHT TIME +4 4 OBSERVATIONS MADE BUT NOT DISSEMINATED +5 5 OBSERVATIONS MADE AND SENT TO INCORRECT USERS +6 6 COLLECTION NOT RECEIVED +7 7 COLLECTION TRANSMITTED LATE +8 8 COLLECTION NOT TRANSMITTED +9 9 DIFFICULTIES IN HF PROPAGATION AND SELECTION OF SUITABLE FREQUENCY +10 10 DIFFICULTIES IN MAINTENANCE OF COMMUNICATION EQUIPMENT AT REMOTE STATIONS +11 11 NO ALTERNATIVE ARRANGEMENT FOR ROUTING METEOROLOGICAL OBSERVATION +123 123 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/35034.table b/definitions/bufr/tables/0/wmo/42/codetables/35034.table new file mode 100644 index 000000000..7297664cf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/35034.table @@ -0,0 +1,7 @@ +1 1 SLIGHT IMPROVEMENT +2 2 SIGNIFICANT IMPROVEMENT +3 3 MOST SIGNIFICANT IMPROVEMENT +4 4 STEADY +5 5 DECREASING +6 6 EFFORTS REQUIRED TO IMPROVE NIGHT-TIME OBSERVATIONS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/35035.table b/definitions/bufr/tables/0/wmo/42/codetables/35035.table new file mode 100644 index 000000000..0fce6ddb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/35035.table @@ -0,0 +1,20 @@ +0 0 RESERVED +1 1 BALLOON BURST +2 2 BALLOON FORCED DOWN BY ICING +3 3 LEAKING OR FLOATING BALLOON +4 4 WEAK OR FADING SIGNAL +5 5 BATTERY FAILURE +6 6 GROUND EQUIPMENT FAILURE +7 7 SIGNAL INTERFERENCE +8 8 RADIOSONDE FAILURE +9 9 EXCESSIVE MISSING DATA FRAMES +10 10 RESERVED +11 11 EXCESSIVE MISSING TEMPERATURE +12 12 EXCESSIVE MISSING PRESSURE +13 13 USER TERMINATED +14 14 SUDDEN LOSS OF SIGNAL +15 15 TRACKING LOST +16 16 INCREASING PRESSURE +17 17 INVALID AND/OR MISSED DATA TIME LIMITS EXCEEDED +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40005.table b/definitions/bufr/tables/0/wmo/42/codetables/40005.table new file mode 100644 index 000000000..045a4f1b1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40005.table @@ -0,0 +1,5 @@ +1 1 SOIL MOISTURE BETWEEN -20% AND 0% +2 2 SOIL MOISTURE BETWEEN 100% AND 120% +3 3 CORRECTION OF WET BACKSCATTER REFERENCE +4 4 CORRECTION OF DRY BACKSCATTER REFERENCE +5 5 CORRECTION OF VOLUME SCATTERING IN SAND diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40006.table b/definitions/bufr/tables/0/wmo/42/codetables/40006.table new file mode 100644 index 000000000..d53382eff --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40006.table @@ -0,0 +1,8 @@ +1 1 NOT SOIL +2 2 SENSITIVITY TO SOIL MOISTURE BELOW LIMIT +3 3 AZIMUTHAL NOISE ABOVE LIMIT +4 4 BACKSCATTER FORE-AFT BEAM OUT OF RANGE +5 5 SLOPE MID-FORE BEAM OUT OF RANGE +6 6 SLOPE MID-AFT BEAM OUT OF RANGE +7 7 SOIL MOISTURE BELOW -20% +8 8 SOIL MOISTURE ABOVE 120% diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40011.table b/definitions/bufr/tables/0/wmo/42/codetables/40011.table new file mode 100644 index 000000000..ddc7e8672 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40011.table @@ -0,0 +1,4 @@ +1 1 MEAN SEA-SURFACE (MSS) INTERPOLATION FLAG +2 2 OCEAN TIDE SOLUTION 1 INTERPOLATION FLAG (0 = 4 POINTS OVER OCEAN, 1 = LESS THAN 4 POINTS) +3 3 OCEAN TIDE SOLUTION 2 INTERPOLATION FLAG (0 = 4 POINTS OVER OCEAN, 1 = LESS THAN 4 POINTS) +4 4 METEOROLOGICAL DATA INTERPOLATION FLAG (0 = 4 POINTS OVER OCEAN, 1 = LESS THAN 4 POINTS) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40012.table b/definitions/bufr/tables/0/wmo/42/codetables/40012.table new file mode 100644 index 000000000..d8ce14d86 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40012.table @@ -0,0 +1,3 @@ +1 1 18.7 GHZ BRIGHTNESS TEMPERATURE +2 2 23.8 GHZ BRIGHTNESS TEMPERATURE +3 3 34 GHZ BRIGHTNESS TEMPERATURE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40013.table b/definitions/bufr/tables/0/wmo/42/codetables/40013.table new file mode 100644 index 000000000..766e93f79 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40013.table @@ -0,0 +1,5 @@ +0 0 INTERPOLATION WITH NO GAP BETWEEN JMR DATA +1 1 INTERPOLATION WITH GAPS BETWEEN JMR DATA +2 2 EXTRAPOLATION OF JMR DATA +3 3 FAILURE OF EXTRAPOLATION AND INTERPOLATION +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40020.table b/definitions/bufr/tables/0/wmo/42/codetables/40020.table new file mode 100644 index 000000000..fa1d1f5c5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40020.table @@ -0,0 +1,16 @@ +1 1 NZPD AND COMPLEX CALIBRATION ERROR +2 2 BAND 3 AFFECTED BY SPIKE +3 3 BAND 3 AFFECTED BY SATURATION +4 4 BAND 2 AFFECTED BY SPIKE +5 5 BAND 1 AFFECTED BY SPIKE +6 6 OVERFLOW/UNDER FLOW +7 7 ON-BOARD PROCESSING ERROR +8 8 SPECTRAL CALIBRATION ERROR +9 9 RADIOMETRIC CALIBRATION ERROR +10 10 MISSING AVHRR DATA +11 11 MISSING IIS DATA +12 12 MISSING SOUNDER DATA +13 13 GQISFLAGQUAL SUMMARY FLAG FOR ALL BANDS +14 14 ON-GROUND PROCESSING ERROR +15 15 INTER-CALIBRATION ERROR IASI/AVHRR +16 16 SPARE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40023.table b/definitions/bufr/tables/0/wmo/42/codetables/40023.table new file mode 100644 index 000000000..2e4cbfb69 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40023.table @@ -0,0 +1,4 @@ +1 1 BAND SEQUENCE (0 = 3KU_1C_3KU, 1 = 2KU_1C_2KU) +2 2 C BAND FREQUENCY (0 = 320 MHZ, 1 = 100 MHZ) +3 3 C BAND STATUS (0 = ON, 1 = OFF) +4 4 KU BAND STATUS (0 = ON, 1 = OFF) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40024.table b/definitions/bufr/tables/0/wmo/42/codetables/40024.table new file mode 100644 index 000000000..c8421e5af --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40024.table @@ -0,0 +1,5 @@ +0 0 2 MAPS AVAILABLE (6 HOURS APART) +1 1 2 MAPS AVAILABLE (> 6 HOURS APART) +2 2 1 MAP AVAILABLE; DATA EXTRAPOLATED +3 3 NO MAPS USED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40025.table b/definitions/bufr/tables/0/wmo/42/codetables/40025.table new file mode 100644 index 000000000..741430292 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40025.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 BAD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40028.table b/definitions/bufr/tables/0/wmo/42/codetables/40028.table new file mode 100644 index 000000000..e094f29dc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40028.table @@ -0,0 +1,16 @@ +0 0 GOOD DATA +1 1 POSSIBLE SUN GLINT +2 2 POSSIBLE RADIO-FREQUENCY INTERFERENCE +3 3 DEGRADED GEOLOCATION DATA +4 4 DATA CORRECTED FOR WARM LOAD INTRUSION +5 5 SCAN BLANKING ON +6 6 DATA IS MISSING FROM FILE OR UNREADABLE +7 7 UNPHYSICAL BRIGHTNESS TEMPERATURE +8 8 ERROR IN GEOLOCATION DATA +9 9 DATA MISSING IN ONE CHANNEL +10 10 DATA MISSING IN MULTIPLE CHANNELS +11 11 LAT/LON VALUES ARE OUT OF RANGE +12 12 NON-NORMAL STATUS MODES +13 13 DISTANCE TO CORRESPONDING LOW FREQUENCY PIXEL > 7 KM +14 14 RESERVED +15 15 MISSING VALUE (NO QUALITY INFORMATION AVAILABLE) diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40036.table b/definitions/bufr/tables/0/wmo/42/codetables/40036.table new file mode 100644 index 000000000..1ee4ab203 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40036.table @@ -0,0 +1,6 @@ +0 0 CLEAR +1 1 CLOUD +2 2 AEROSOL +3 3 ATTENUATED +4 4 SURFACE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40043.table b/definitions/bufr/tables/0/wmo/42/codetables/40043.table new file mode 100644 index 000000000..859484624 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40043.table @@ -0,0 +1,4 @@ +0 0 THE PLATFORM IS NOT UNDERGOING A MANOEUVRE +1 1 THE PLATFORM IS UNDERGOING A MANOEUVRE, NOMINAL PROCESSING +2 2 THE PLATFORM IS UNDERGOING A MANOEUVRE, NO PROCESSING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40045.table b/definitions/bufr/tables/0/wmo/42/codetables/40045.table new file mode 100644 index 000000000..08b600150 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40045.table @@ -0,0 +1,4 @@ +1 1 CLOUD PRODUCTS RETRIEVED WITH THE CHI-SQUARED METHOD +2 2 CLOUD PRODUCTS RETRIEVED WITH THE CO2-SLICING +3 3 HEIGHT ASSIGNMENT PERFORMED WITH STATISTICAL FIRST GUESS RETRIEVAL +4 4 HEIGHT ASSIGNMENT PERFORMED WITH NWP FORECASTS diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40046.table b/definitions/bufr/tables/0/wmo/42/codetables/40046.table new file mode 100644 index 000000000..31077db10 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40046.table @@ -0,0 +1,5 @@ +0 0 THE IASI IFOV IS CLEAR +1 1 SMALL CLOUD CONTAMINATION POSSIBLE +2 2 THE IASI IFOV IS PARTIALLY COVERED BY CLOUDS +3 3 HIGH OR FULL CLOUD COVERAGE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40047.table b/definitions/bufr/tables/0/wmo/42/codetables/40047.table new file mode 100644 index 000000000..f7f29c7b8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40047.table @@ -0,0 +1,4 @@ +0 0 THE MEASUREMENTS AND SIDE INFORMATION ARE AVAILABLE AND OF GOOD QUALITY FOR L2 PROCESSING +1 1 THE L1C PRODUCTS ARE OF DEGRADED QUALITY ACCORDING TO L1C FLAGS, NO L2 PROCESSING +2 2 QUALITY CONTROL INDICATES THAT THE L1C DATA ARE OF DEGRADED QUALITY (NOT INDICATED BY THE IASI L1C FLAGS), NO L2 PROCESSING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40048.table b/definitions/bufr/tables/0/wmo/42/codetables/40048.table new file mode 100644 index 000000000..ee5d4fe0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40048.table @@ -0,0 +1,4 @@ +0 0 THE EXPECTED AMSU MEASUREMENTS ARE AVAILABLE, OF GOOD QUALITY AND COLLOCATED WITH IASI FOR PROCESSING +1 1 AMSU-A DATA ARE AVAILABLE BUT OF DEGRADED QUALITY (ACCORDING TO AMSU L1 FLAGS OR QC TESTS) AND NOT USED FOR PROCESSING +2 2 NO COINCIDENT (TIME AND SPACE) AMSU MEASUREMENTS AVAILABLE FOR PROCESSING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40049.table b/definitions/bufr/tables/0/wmo/42/codetables/40049.table new file mode 100644 index 000000000..19d1fe9d8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40049.table @@ -0,0 +1,12 @@ +4 4 IASI CLOUD OPTICAL THICKNESS INDICATES A CLOUD +5 5 IASI CLOUD OPTICAL THICKNESS COMPUTED +6 6 AVHRR HETEROGENEITY TEST INDICATES A CLOUD +7 7 AVHRR HETEROGENEITY TEST EXECUTED +8 8 IASI-AVHRR ANN CLOUD TEST INDICATES A CLOUD +9 9 IASI-AVHRR ANN CLOUD TEST EXECUTED +10 10 AVHRR INTEGRATED CLOUD FRACTION INDICATES A CLOUD +11 11 AVHRR INTEGRATED CLOUD FRACTION ASSESSED +12 12 AMSU CLOUD TEST INDICATES A CLOUD +13 13 AMSU CLOUD TEST EXECUTED +14 14 IASI WINDOW CLOUD TEST INDICATES A CLOUD +15 15 IASI WINDOW CLOUD TEST EXECUTED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40050.table b/definitions/bufr/tables/0/wmo/42/codetables/40050.table new file mode 100644 index 000000000..503ab1443 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40050.table @@ -0,0 +1,3 @@ +5 5 MHS INCLUDED +6 6 AMSU INCLUDED +7 7 IASI INCLUDED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40051.table b/definitions/bufr/tables/0/wmo/42/codetables/40051.table new file mode 100644 index 000000000..60542bc0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40051.table @@ -0,0 +1,8 @@ +0 0 OPTIMAL ESTIMATION METHODS (OEM) NOT ATTEMPTED +1 1 OEM ABORTED BECAUSE FIRST GUESS RESIDUALS TOO HIGH +2 2 THE MINIMIZATION DID NOT CONVERGE, SOUNDING REJECTED +3 3 THE MINIMIZATION DID NOT CONVERGE, SOUNDING ACCEPTED +4 4 THE MINIMIZATION CONVERGED BUT SOUNDING REJECTED +5 5 THE MINIMIZATION CONVERGED, SOUNDING ACCEPTED +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40052.table b/definitions/bufr/tables/0/wmo/42/codetables/40052.table new file mode 100644 index 000000000..1f48809c0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40052.table @@ -0,0 +1,4 @@ +4 4 SUPERSATURATION CONDITIONS IN THE OEM RETRIEVAL +5 5 SUPERADIABATIC CONDITIONS IN THE OEM RETRIEVAL +6 6 SUPERSATURATION CONDITIONS IN THE FIRST GUESS +7 7 SUPERADIABATIC CONDITIONS IN THE FIRST GUESS diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40054.table b/definitions/bufr/tables/0/wmo/42/codetables/40054.table new file mode 100644 index 000000000..a034bc322 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40054.table @@ -0,0 +1,12 @@ +1 1 AN ERROR HAS BEEN DETECTED +2 2 MESSAGE FROM L1 +3 3 MESSAGE FROM L2 +4 4 MESSAGE FROM ANCILLARY DATA +5 5 MESSAGE FROM FITTING PROCEDURE +6 6 FILE OPENING +7 7 FILE READING +8 8 QUALITY FLAG +9 9 LEVEL 2 FROM LINEAR REGRESSION(F_QUAL), REPORT A PIXEL WHERE L2 ARE NOT FULLY TRUSTED +10 10 EMPTY FIELD OR DATA +11 11 MISSING SURFACE PRESSURE VALUE +12 12 RADIANCE FILTERING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40055.table b/definitions/bufr/tables/0/wmo/42/codetables/40055.table new file mode 100644 index 000000000..7aa99d433 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40055.table @@ -0,0 +1,20 @@ +1 1 RADIANCE FILTERING +2 2 POLAR REGIONS +3 3 LOCATION IN THE NIGHT +4 4 NEGATIVE ALTITUDE SURFACE BELOW MEAN SEA LEVEL +5 5 CLOUD COVERED SCENE +6 6 SCENE ABOVE THE SEA +7 7 SCENE ABOVE DESERT +8 8 SKIN TEMPERATURE +9 9 SKIN TEMPERATURE DIFFERENTIAL +10 10 SPECTRAL LINE CONTRAST TOO WEAK +11 11 MAXIMUM NUMBER OF ITERATIONS EXCEEDED +12 12 NEGATIVE PARTIAL COLUMNS +13 13 MATRIX ILL CONDITIONED +14 14 FIT DIVERGED +15 15 ERROR IN GNU SCIENTIFIC LIBRARY (GSL) USAGE +16 16 RESIDUALS BIASED +17 17 RESIDUALS SLOPED +18 18 RESIDUALS ROOT MEAN SQUARE (RMS) ERROR IS LARGE +19 19 WEIRD AVERAGING KERNELS +20 20 ICE PRESENCE DETECTED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40056.table b/definitions/bufr/tables/0/wmo/42/codetables/40056.table new file mode 100644 index 000000000..f4a31d340 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40056.table @@ -0,0 +1,4 @@ +0 0 USE NOT RECOMMENDED +1 1 USE WITH CAUTION +2 2 BEST QUALITY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40057.table b/definitions/bufr/tables/0/wmo/42/codetables/40057.table new file mode 100644 index 000000000..c8a50e778 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40057.table @@ -0,0 +1,30 @@ +1 1 AN ERROR HAS BEEN DETECTED +2 2 MESSAGE FROM L1 +3 3 MESSAGE FROM L2 +4 4 MESSAGE FROM ANCILLARY DATA +5 5 MESSAGE FROM FITTING PROCEDURE +6 6 RESERVED +7 7 BAD L1 OR L2 FLAG RAISED +8 8 LEVEL 2 NOT FULLY TRUSTED +9 9 MISSING TEMPERATURE OR HUMIDITY LEVELS IN THE VERTICAL PROFILE +10 10 MISSING SURFACE PRESSURE VALUE +11 11 RADIANCE FILTERING +12 12 POLAR REGIONS +13 13 LOCATION IN THE NIGHT +14 14 NEGATIVE ALTITUDE +15 15 CLOUD COVERED SCENE +16 16 SCENE ABOVE THE SEA +17 17 SCENE ABOVE DESERT +18 18 MISSING SKIN TEMPERATURE +19 19 RETRIEVED SKIN TEMPERATURE TOO DIFFERENT FROM MODEL +20 20 SPECTRAL LINE CONTRAST TOO WEAK +21 21 MAXIMUM NUMBER OF ITERATIONS EXCEEDS +22 22 NEGATIVE PARTIAL COLUMNS +23 23 MATRIX ILL CONDITIONED +24 24 FIT DIVERGED +25 25 ERROR IN GSL USAGE +26 26 RESIDUALS BIASED +27 27 RESIDUALS SLOPED +28 28 RESIDUALS RMS ERROR IS LARGE +29 29 WEIRD AVERAGING KERNELS +30 30 ICE PRESENCE DETECTED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40068.table b/definitions/bufr/tables/0/wmo/42/codetables/40068.table new file mode 100644 index 000000000..0b1484e0b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40068.table @@ -0,0 +1,4 @@ +0 0 VALUES CALCULATED WITH IASI L2 +1 1 PRESSURE AND TEMPERATURE PROFILES MISSING IN IASI L2 DATA; MODEL/FORECAST DATA USED INSTEAD +2 2 BEST QUALITY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40074.table b/definitions/bufr/tables/0/wmo/42/codetables/40074.table new file mode 100644 index 000000000..911a95245 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40074.table @@ -0,0 +1,10 @@ +1 1 INCOMPATIBILITY OF A SCAN ANGLE FOR ELECTROENCEPHALOGRAM +2 2 CALIBRATION FAILURE (LIMIT OF BLACK BODY TEMPERATURE REACHED, NOT ENOUGH SOURCES FOR INTERFEROMETRY, ETC.) +3 3 GEOLOCATION EXECUTED TAKING INTO ACCOUNT THE ORIENTATION OF THE SPACECRAFT AND USING THE STAR CATALOGUE +4 4 HIGH LEVEL OF CRYOGENIC SEDIMENT REACHED, REQUIRING OUTGASSING OF THE RADIATION COOLER. SET WHEN NESR LEVEL OF THE ICE COVER THRESHOLD CROSSED +5 5 INTERFEROMETRY PACKAGE FLAG +6 6 GENERAL ACCURACY FLAG +7 7 NOISE PRESENT DURING THE INTERFEROMETRY +8 8 OUTGASSING OF THE RADIATION COOLER +9 9 FLAG PRECEDING THE FIRST 24 HOURS/DAY MARK (SET TO ON AS A RULE) +10 10 TELEMETRY PACKAGE FLAG diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40077.table b/definitions/bufr/tables/0/wmo/42/codetables/40077.table new file mode 100644 index 000000000..4c778cdba --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40077.table @@ -0,0 +1,4 @@ +1 1 SEA SURFACE TEMPERATURE NOT OK +2 2 SEA SURFACE WIND SPEED NOT OK +3 3 ATMOSPHERIC WATER VAPOUR CONTENT NOT OK +4 4 CLOUD LIQUID WATER CONTENT NOT OK diff --git a/definitions/bufr/tables/0/wmo/42/codetables/40080.table b/definitions/bufr/tables/0/wmo/42/codetables/40080.table new file mode 100644 index 000000000..b62c5f888 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/40080.table @@ -0,0 +1,4 @@ +1 1 THIN CIRRUS DETECTION EXECUTED +2 2 THIN CIRRUS DETECTION INDICATES A CLOUD +3 3 AEROSOL DUST DETECTION EXECUTED +4 4 AEROSOL DUST DETECTED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/4059.table b/definitions/bufr/tables/0/wmo/42/codetables/4059.table new file mode 100644 index 000000000..91fc6f4f9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/4059.table @@ -0,0 +1,5 @@ +1 1 0000 UTC +2 2 0600 UTC +3 3 1200 UTC +4 4 1800 UTC +5 5 OTHER HOURS diff --git a/definitions/bufr/tables/0/wmo/42/codetables/4080.table b/definitions/bufr/tables/0/wmo/42/codetables/4080.table new file mode 100644 index 000000000..84caf2108 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/4080.table @@ -0,0 +1,6 @@ +0 0 SPOT VALUES +1 1 LESS THAN 15 MINUTES +2 2 FROM 15 TO 45 MINUTES +3 3 MORE THAN 45 MINUTES +9 9 DATA NOT AVAILABLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/42004.table b/definitions/bufr/tables/0/wmo/42/codetables/42004.table new file mode 100644 index 000000000..15a91da16 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/42004.table @@ -0,0 +1,3 @@ +0 0 WAVE DIRECTION RESOLVED +1 1 180-DEGREE AMBIGUITY NOT RESOLVED +15 15 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/42017.table b/definitions/bufr/tables/0/wmo/42/codetables/42017.table new file mode 100644 index 000000000..d2eb790f0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/42017.table @@ -0,0 +1,5 @@ +0 0 GOOD +1 1 MEDIUM +2 2 LOW +3 3 POOR +15 15 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/42018.table b/definitions/bufr/tables/0/wmo/42/codetables/42018.table new file mode 100644 index 000000000..7999d0aed --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/42018.table @@ -0,0 +1,6 @@ +0 0 VERY GOOD +1 1 GOOD +2 2 MEDIUM +3 3 LOW +4 4 POOR +15 15 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/5069.table b/definitions/bufr/tables/0/wmo/42/codetables/5069.table new file mode 100644 index 000000000..24c2f5bbb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/5069.table @@ -0,0 +1,4 @@ +0 0 MIE +1 1 RAYLEIGH +2 2 CROSS POLAR +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8001.table b/definitions/bufr/tables/0/wmo/42/codetables/8001.table new file mode 100644 index 000000000..6210da3b3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8001.table @@ -0,0 +1,6 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 MAXIMUM WIND LEVEL +5 5 SIGNIFICANT LEVEL, TEMPERATURE AND/OR RELATIVE HUMIDITY +6 6 SIGNIFICANT LEVEL, WIND diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8002.table b/definitions/bufr/tables/0/wmo/42/codetables/8002.table new file mode 100644 index 000000000..6ab4fd72d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8002.table @@ -0,0 +1,19 @@ +0 0 OBSERVING RULES FOR BASE OF LOWEST CLOUD AND CLOUD TYPES OF FM 12 SYNOP AND FM 13 SHIP APPLY +1 1 FIRST NON-CUMULONIMBUS SIGNIFICANT LAYER +2 2 SECOND NON-CUMULONIMBUS SIGNIFICANT LAYER +3 3 THIRD NON-CUMULONIMBUS SIGNIFICANT LAYER +4 4 CUMULONIMBUS LAYER +5 5 CEILING +6 6 CLOUDS NOT DETECTED BELOW THE FOLLOWING HEIGHT(S) +7 7 LOW CLOUD +8 8 MIDDLE CLOUD +9 9 HIGH CLOUD +10 10 CLOUD LAYER WITH BASE BELOW AND TOP ABOVE THE STATION +11 11 CLOUD LAYER WITH BASE AND TOP BELOW THE STATION LEVEL +20 20 NO CLOUDS DETECTED BY THE CLOUD DETECTION SYSTEM +21 21 FIRST INSTRUMENT DETECTED CLOUD LAYER +22 22 SECOND INSTRUMENT DETECTED CLOUD LAYER +23 23 THIRD INSTRUMENT DETECTED CLOUD LAYER +24 24 FOURTH INSTRUMENT DETECTED CLOUD LAYER +62 62 VALUE NOT APPLICABLE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8003.table b/definitions/bufr/tables/0/wmo/42/codetables/8003.table new file mode 100644 index 000000000..373135140 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8003.table @@ -0,0 +1,12 @@ +0 0 SURFACE +1 1 BASE OF SATELLITE SOUNDING +2 2 CLOUD TOP +3 3 TROPOPAUSE +4 4 PRECIPITABLE WATER +5 5 SOUNDING RADIANCES +6 6 MEAN TEMPERATURES +7 7 OZONE +8 8 LOW CLOUD +9 9 MED CLOUD +10 10 HIGH CLOUD +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8004.table b/definitions/bufr/tables/0/wmo/42/codetables/8004.table new file mode 100644 index 000000000..2a8925eeb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8004.table @@ -0,0 +1,6 @@ +2 2 UNSTEADY (UNS) +3 3 LEVEL FLIGHT, ROUTINE OBSERVATION (LVR) +4 4 LEVEL FLIGHT, HIGHEST WIND ENCOUNTERED (LVW) +5 5 ASCENDING (ASC) +6 6 DESCENDING (DES) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8005.table b/definitions/bufr/tables/0/wmo/42/codetables/8005.table new file mode 100644 index 000000000..587ea9924 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8005.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 STORM CENTRE +2 2 OUTER LIMIT OR EDGE OF STORM +3 3 LOCATION OF MAXIMUM WIND +4 4 LOCATION OF THE STORM IN THE PERTURBED ANALYSIS +5 5 LOCATION OF THE STORM IN THE ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8006.table b/definitions/bufr/tables/0/wmo/42/codetables/8006.table new file mode 100644 index 000000000..9f56c628d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8006.table @@ -0,0 +1,8 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 PROMINENT MAXIMUM LEVEL +5 5 PROMINENT MINIMUM LEVEL +6 6 MINIMUM PRESSURE LEVEL +7 7 RESERVED +8 8 LEVEL OF UNDETERMINED SIGNIFICANCE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8007.table b/definitions/bufr/tables/0/wmo/42/codetables/8007.table new file mode 100644 index 000000000..3e4d2cc3c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8007.table @@ -0,0 +1,5 @@ +0 0 POINT +1 1 LINE +2 2 AREA +3 3 VOLUME +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8008.table b/definitions/bufr/tables/0/wmo/42/codetables/8008.table new file mode 100644 index 000000000..2714b5aa2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8008.table @@ -0,0 +1,8 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 LEVEL OF BETA RADIATION MAXIMUM +5 5 LEVEL OF GAMMA RADIATION MAXIMUM +6 6 MINIMUM PRESSURE LEVEL +7 7 RESERVED +8 8 LEVEL OF UNDETERMINED SIGNIFICANCE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8009.table b/definitions/bufr/tables/0/wmo/42/codetables/8009.table new file mode 100644 index 000000000..b03398230 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8009.table @@ -0,0 +1,16 @@ +0 0 LEVEL FLIGHT, ROUTINE OBSERVATION, UNSTEADY +1 1 LEVEL FLIGHT, HIGHEST WIND ENCOUNTERED, UNSTEADY +2 2 UNSTEADY (UNS) +3 3 LEVEL FLIGHT, ROUTINE OBSERVATION (LVR) +4 4 LEVEL FLIGHT, HIGHEST WIND ENCOUNTERED (LVW) +5 5 ASCENDING (ASC) +6 6 DESCENDING (DES) +7 7 ASCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS +8 8 ASCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS, UNSTEADY +9 9 ASCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS +10 10 ASCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS, UNSTEADY +11 11 DESCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS +12 12 DESCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS, UNSTEADY +13 13 DESCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS +14 14 DESCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS, UNSTEADY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8010.table b/definitions/bufr/tables/0/wmo/42/codetables/8010.table new file mode 100644 index 000000000..3c5fe71f3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8010.table @@ -0,0 +1,14 @@ +0 0 RESERVED +1 1 BARE SOIL +2 2 BARE ROCK +3 3 LAND GRASS COVER +4 4 WATER (LAKE, SEA) +5 5 FLOOD WATER UNDERNEATH +6 6 SNOW +7 7 ICE +8 8 RUNWAY OR ROAD +9 9 SHIP OR PLATFORM DECK IN STEEL +10 10 SHIP OR PLATFORM DECK IN WOOD +11 11 SHIP OR PLATFORM DECK PARTLY COVERED WITH RUBBER MAT +12 12 BUILDING ROOF +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8011.table b/definitions/bufr/tables/0/wmo/42/codetables/8011.table new file mode 100644 index 000000000..e7a822114 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8011.table @@ -0,0 +1,27 @@ +0 0 QUASI-STATIONARY FRONT AT THE SURFACE +1 1 QUASI-STATIONARY FRONT ABOVE THE SURFACE +2 2 WARM FRONT AT THE SURFACE +3 3 WARM FRONT ABOVE THE SURFACE +4 4 COLD FRONT AT THE SURFACE +5 5 COLD FRONT ABOVE THE SURFACE +6 6 OCCLUSION +7 7 INSTABILITY LINE +8 8 INTERTROPICAL FRONT +9 9 CONVERGENCE LINE +10 10 JET STREAM +11 11 CLOUD CLEAR +12 12 CLOUD +13 13 TURBULENCE +14 14 STORM +15 15 AIRFRAME ICING +16 16 PHENOMENON +17 17 VOLCANO +18 18 ATMOSPHERICS +19 19 RESERVED +20 20 SPECIAL CLOUDS +21 21 THUNDERSTORM +22 22 TROPICAL CYCLONE +23 23 MOUNTAIN WAVE +24 24 DUSTSTORM +25 25 SANDSTORM +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8012.table b/definitions/bufr/tables/0/wmo/42/codetables/8012.table new file mode 100644 index 000000000..769bc0bb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8012.table @@ -0,0 +1,4 @@ +0 0 LAND +1 1 SEA +2 2 COAST +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8013.table b/definitions/bufr/tables/0/wmo/42/codetables/8013.table new file mode 100644 index 000000000..e18d2959b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8013.table @@ -0,0 +1,4 @@ +0 0 NIGHT +1 1 DAY +2 2 TWILIGHT +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8014.table b/definitions/bufr/tables/0/wmo/42/codetables/8014.table new file mode 100644 index 000000000..e6f2e46b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8014.table @@ -0,0 +1,10 @@ +0 0 10-MINUTE MEAN VALUE - NORMAL VALUE +1 1 10-MINUTE MEAN VALUE - ABOVE THE UPPER LIMIT FOR ASSESSMENTS OF RVR (P) +2 2 10-MINUTE MEAN VALUE - BELOW THE LOWER LIMIT FOR ASSESSMENTS OF RVR (M) +3 3 ONE-MINUTE MINIMUM VALUE - NORMAL VALUE +4 4 ONE-MINUTE MINIMUM VALUE - ABOVE THE UPPER LIMIT FOR ASSESSMENTS OF RVR (P) +5 5 ONE-MINUTE MINIMUM VALUE - BELOW THE LOWER LIMIT FOR ASSESSMENTS OF RVR (M) +6 6 ONE-MINUTE MAXIMUM VALUE - NORMAL VALUE +7 7 ONE-MINUTE MAXIMUM VALUE - ABOVE THE UPPER LIMIT FOR ASSESSMENTS OF RVR (P) +8 8 ONE-MINUTE MAXIMUM VALUE - BELOW THE LOWER LIMIT FOR ASSESSMENTS OF RVR (M) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8015.table b/definitions/bufr/tables/0/wmo/42/codetables/8015.table new file mode 100644 index 000000000..6830b9591 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8015.table @@ -0,0 +1,4 @@ +0 0 SINGLE SENSOR +1 1 PRIMARY SENSOR +2 2 SECONDARY SENSOR (BACKUP) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8016.table b/definitions/bufr/tables/0/wmo/42/codetables/8016.table new file mode 100644 index 000000000..6b8a1fa66 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8016.table @@ -0,0 +1,5 @@ +0 0 NOSIG +1 1 BECMG +2 2 TEMPO +3 3 FM +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8017.table b/definitions/bufr/tables/0/wmo/42/codetables/8017.table new file mode 100644 index 000000000..b3156f87e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8017.table @@ -0,0 +1,4 @@ +0 0 FM +1 1 TL +2 2 AT +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8018.table b/definitions/bufr/tables/0/wmo/42/codetables/8018.table new file mode 100644 index 000000000..f91e554ea --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8018.table @@ -0,0 +1,4 @@ +1 1 LAND IS PRESENT +2 2 SURFACE ICE MAP INDICATES ICE IS PRESENT +11 11 ICE MAP DATA NOT AVAILABLE +12 12 ATTENUATION MAP DATA NOT AVAILABLE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8019.table b/definitions/bufr/tables/0/wmo/42/codetables/8019.table new file mode 100644 index 000000000..4ed413301 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8019.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 ATS (AIR TRAFFIC SERVICE) UNIT SERVING FIR (FLIGHT INFORMATION REGION) +2 2 FIR (FLIGHT INFORMATION REGION) +3 3 UIR (UPPER FLIGHT INFORMATION REGION) +4 4 CTA (CONTROL AREA) +5 5 VAAC (VOLCANIC ASH ADVISORY CENTRE) +6 6 MWO (METEOROLOGICAL WATCH OFFICE) ISSUING SIGMET +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8021.table b/definitions/bufr/tables/0/wmo/42/codetables/8021.table new file mode 100644 index 000000000..8fbd35dd4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8021.table @@ -0,0 +1,32 @@ +0 0 RESERVED +1 1 TIME SERIES +2 2 TIME AVERAGED +3 3 ACCUMULATED +4 4 FORECAST +5 5 FORECAST TIME SERIES +6 6 FORECAST TIME AVERAGED +7 7 FORECAST ACCUMULATED +8 8 ENSEMBLE MEAN +9 9 ENSEMBLE MEAN TIME SERIES +10 10 ENSEMBLE MEAN TIME AVERAGED +11 11 ENSEMBLE MEAN ACCUMULATED +12 12 ENSEMBLE MEAN FORECAST +13 13 ENSEMBLE MEAN FORECAST TIME SERIES +14 14 ENSEMBLE MEAN FORECAST TIME AVERAGED +15 15 ENSEMBLE MEAN FORECAST ACCUMULATED +16 16 ANALYSIS +17 17 START OF PHENOMENON +18 18 RADIOSONDE LAUNCH TIME +19 19 START OF ORBIT +20 20 END OF ORBIT +21 21 TIME OF ASCENDING NODE +22 22 TIME OF OCCURRENCE OF WIND SHIFT +23 23 MONITORING PERIOD +24 24 AGREED TIME LIMIT FOR REPORT RECEPTION +25 25 NOMINAL REPORTING TIME +26 26 TIME OF LAST KNOWN POSITION +27 27 FIRST GUESS +28 28 START OF SCAN +29 29 END OF SCAN OR TIME OF ENDING +30 30 TIME OF OCCURRENCE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8023.table b/definitions/bufr/tables/0/wmo/42/codetables/8023.table new file mode 100644 index 000000000..4f78743a5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8023.table @@ -0,0 +1,15 @@ +2 2 MAXIMUM VALUE +3 3 MINIMUM VALUE +4 4 MEAN VALUE +5 5 MEDIAN VALUE +6 6 MODAL VALUE +7 7 MEAN ABSOLUTE ERROR +8 8 RESERVED +9 9 BEST ESTIMATE OF STANDARD DEVIATION (N-1) +10 10 STANDARD DEVIATION (N) +11 11 HARMONIC MEAN +12 12 ROOT-MEAN-SQUARE VECTOR ERROR +13 13 ROOT-MEAN-SQUARE +14 14 ROOT-MEAN-SQUARE ERROR +32 32 VECTOR MEAN +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8024.table b/definitions/bufr/tables/0/wmo/42/codetables/8024.table new file mode 100644 index 000000000..377858bb1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8024.table @@ -0,0 +1,12 @@ +2 2 OBSERVED MINUS MAXIMUM +3 3 OBSERVED MINUS MINIMUM +4 4 OBSERVED MINUS MEAN +5 5 OBSERVED MINUS MEDIAN +6 6 OBSERVED MINUS MODE +11 11 OBSERVED MINUS CLIMATOLOGY (ANOMALY) +12 12 OBSERVED MINUS ANALYSED VALUE +13 13 OBSERVED MINUS INITIALIZED ANALYSED VALUE +14 14 OBSERVED MINUS FORECAST VALUE +21 21 OBSERVED MINUS INTERPOLATED VALUE +22 22 OBSERVED MINUS HYDROSTATICALLY CALCULATED VALUE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8025.table b/definitions/bufr/tables/0/wmo/42/codetables/8025.table new file mode 100644 index 000000000..1d88fa54f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8025.table @@ -0,0 +1,5 @@ +0 0 UNIVERSAL TIME COORDINATED (UTC) MINUS LOCAL STANDARD TIME (LST) +1 1 LOCAL STANDARD TIME +2 2 UNIVERSAL TIME COORDINATED (UTC) MINUS SATELLITE CLOCK +5 5 TIME DIFFERENCE FROM EDGE OF PROCESSING SEGMENT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8026.table b/definitions/bufr/tables/0/wmo/42/codetables/8026.table new file mode 100644 index 000000000..9bcef7864 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8026.table @@ -0,0 +1,5 @@ +0 0 AVERAGING KERNEL MATRIX +1 1 CORRELATION MATRIX (C) +2 2 LOWER TRIANGULAR CORRELATION MATRIX SQUARE ROOT (L FROM C=LLT) +3 3 INVERSE OF LOWER TRIANGULAR CORRELATION MATRIX SQUARE ROOT (L-1) +63 63 MISSING OR UNDEFINED SIGNIFICANCE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8029.table b/definitions/bufr/tables/0/wmo/42/codetables/8029.table new file mode 100644 index 000000000..ef493dbde --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8029.table @@ -0,0 +1,24 @@ +0 0 OPEN OCEAN OR SEMI-ENCLOSED SEA +1 1 ENCLOSED SEA OR LAKE +2 2 CONTINENTAL ICE +3 3 LAND +4 4 LOW INLAND (BELOW SEA LEVEL) +5 5 MIX OF LAND AND WATER +6 6 MIX OF LAND AND LOW INLAND +11 11 RIVER +12 12 LAKE +13 13 SEA +14 14 GLACIER +15 15 URBAN LAND +16 16 RURAL LAND +17 17 SUBURBAN LAND +18 18 SEA ICE +19 19 FOREST +20 20 SHRUBLANDS +21 21 SAVANNA +22 22 DESERT +23 23 GRASSLANDS +24 24 WETLANDS +25 25 SNOW/ICE +26 26 COAST +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8032.table b/definitions/bufr/tables/0/wmo/42/codetables/8032.table new file mode 100644 index 000000000..712400dd1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8032.table @@ -0,0 +1,7 @@ +0 0 ROUTINE OPERATION +1 1 EVENT TRIGGERED BY STORM SURGE +2 2 EVENT TRIGGERED BY TSUNAMI +3 3 EVENT TRIGGERED MANUALLY +4 4 INSTALLATION TESTING +5 5 MAINTENANCE TESTING +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8033.table b/definitions/bufr/tables/0/wmo/42/codetables/8033.table new file mode 100644 index 000000000..1c695372b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8033.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 PERCENTAGE CONFIDENCE CALCULATED USING CLOUD FRACTION +2 2 PERCENTAGE CONFIDENCE CALCULATED USING STANDARD DEVIATION OF TEMPERATURE +3 3 PERCENTAGE CONFIDENCE CALCULATED USING PROBABILITY OF CLOUD CONTAMINATION +4 4 PERCENTAGE CONFIDENCE CALCULATED USING NORMALITY OF DISTRIBUTION +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8034.table b/definitions/bufr/tables/0/wmo/42/codetables/8034.table new file mode 100644 index 000000000..879f27400 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8034.table @@ -0,0 +1,10 @@ +0 0 SECONDARY SAMPLING: AVERAGED +1 1 SECONDARY SAMPLING: DISCRETE +2 2 SECONDARY SAMPLING: MIXED +3 3 NEAR-SURFACE SAMPLING: AVERAGED, PUMPED +4 4 NEAR-SURFACE SAMPLING: AVERAGED, UNPUMPED +5 5 NEAR-SURFACE SAMPLING: DISCRETE, PUMPED +6 6 NEAR-SURFACE SAMPLING: DISCRETE, UNPUMPED +7 7 NEAR-SURFACE SAMPLING: MIXED, PUMPED +8 8 NEAR-SURFACE SAMPLING: MIXED, UNPUMPED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8035.table b/definitions/bufr/tables/0/wmo/42/codetables/8035.table new file mode 100644 index 000000000..3d641fd15 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8035.table @@ -0,0 +1,8 @@ +0 0 GLOBAL +1 1 REGIONAL +2 2 NATIONAL +3 3 SPECIAL +4 4 BILATERAL +5 5 RESERVED +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8036.table b/definitions/bufr/tables/0/wmo/42/codetables/8036.table new file mode 100644 index 000000000..6436989e6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8036.table @@ -0,0 +1,8 @@ +0 0 WMO SECRETARIAT +1 1 WMO +2 2 RSMC +3 3 NMC +4 4 RTH +5 5 OBSERVING SITE +6 6 OTHER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8037.table b/definitions/bufr/tables/0/wmo/42/codetables/8037.table new file mode 100644 index 000000000..a5f9be382 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8037.table @@ -0,0 +1,4 @@ +0 0 MANUFACTURER'S BASELINE CHECK UNIT +1 1 WEATHER SCREEN +2 2 GRUAN STANDARD HUMIDITY CHAMBER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8038.table b/definitions/bufr/tables/0/wmo/42/codetables/8038.table new file mode 100644 index 000000000..aa4d7b77b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8038.table @@ -0,0 +1,3 @@ +0 0 VERIFIED INSTRUMENT READING +1 1 REFERENCE INSTRUMENT READING +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8039.table b/definitions/bufr/tables/0/wmo/42/codetables/8039.table new file mode 100644 index 000000000..f4403c63d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8039.table @@ -0,0 +1,8 @@ +0 0 ISSUE TIME OF FORECAST +1 1 TIME OF COMMENCEMENT OF PERIOD OF THE FORECAST +2 2 TIME OF ENDING OF PERIOD OF THE FORECAST +3 3 FORECAST TIME OF MAXIMUM TEMPERATURE +4 4 FORECAST TIME OF MINIMUM TEMPERATURE +5 5 TIME OF BEGINNING OF THE FORECAST CHANGE +6 6 TIME OF ENDING OF THE FORECAST CHANGE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8040.table b/definitions/bufr/tables/0/wmo/42/codetables/8040.table new file mode 100644 index 000000000..42c5af0e5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8040.table @@ -0,0 +1,49 @@ +0 0 HIGH-RESOLUTION DATA SAMPLE +1 1 WITHIN 20 HPA OF SURFACE +2 2 PRESSURE LESS THAN 10 HPA (I.E., 9, 8, 7, ETC.) WHEN NO OTHER REASON APPLIES +3 3 BASE PRESSURE LEVEL FOR STABILITY INDEX +4 4 BEGIN DOUBTFUL TEMPERATURE, HEIGHT DATA +5 5 BEGIN MISSING DATA (ALL ELEMENTS) +6 6 BEGIN MISSING RELATIVE HUMIDITY DATA +7 7 BEGIN MISSING TEMPERATURE DATA +8 8 HIGHEST LEVEL REACHED BEFORE BALLOON DESCENT BECAUSE OF ICING OR TURBULENCE +9 9 END DOUBTFUL TEMPERATURE, HEIGHT DATA +10 10 END MISSING DATA (ALL ELEMENTS) +11 11 END MISSING RELATIVE HUMIDITY DATA +12 12 END MISSING TEMPERATURE DATA +13 13 ZERO DEGREES CELSIUS CROSSING(S) FOR RADAT +14 14 STANDARD PRESSURE LEVEL +15 15 OPERATOR-ADDED LEVEL +16 16 OPERATOR-DELETED LEVEL +17 17 BALLOON RE-ASCENDED BEYOND PREVIOUS HIGHEST ASCENT LEVEL +18 18 SIGNIFICANT RELATIVE HUMIDITY LEVEL +19 19 RELATIVE HUMIDITY LEVEL SELECTION TERMINATED +20 20 SURFACE LEVEL +21 21 SIGNIFICANT TEMPERATURE LEVEL +22 22 MANDATORY TEMPERATURE LEVEL +23 23 FLIGHT TERMINATION LEVEL +24 24 TROPOPAUSE(S) +25 25 AIRCRAFT REPORT +26 26 INTERPOLATED (GENERATED) LEVEL +27 27 MANDATORY WIND LEVEL +28 28 SIGNIFICANT WIND LEVEL +29 29 MAXIMUM WIND LEVEL +30 30 INCREMENTAL WIND LEVEL (FIXED REGIONAL) +31 31 INCREMENTAL HEIGHT LEVEL (GENERATED) +32 32 WIND TERMINATION LEVEL +33 33 PRESSURE 100 TO 110 HPA, WHEN NO OTHER REASON APPLIES +34 34 FREEZING LEVEL BASE +35 35 FREEZING LEVEL TOP +36 36 FLIGHT LEVEL BASE +37 37 FLIGHT LEVEL TOP +38 38 TOP OF WIND SOUNDING +39 39 BOTTOM OF WIND SOUNDING +40 40 SIGNIFICANT THERMODYNAMIC LEVEL (INVERSION) +41 41 SIGNIFICANT RELATIVE HUMIDITY LEVEL (ACCORDING TO NCDC CRITERIA) +42 42 SIGNIFICANT TEMPERATURE LEVEL (ACCORDING TO NCDC) +43 43 BEGIN MISSING WIND DATA +44 44 END MISSING WIND DATA +60 60 LEVEL OF 80-KNOT ISOTACH ABOVE JET +61 61 LEVEL OF 80-KNOT ISOTACH BELOW JET +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8041.table b/definitions/bufr/tables/0/wmo/42/codetables/8041.table new file mode 100644 index 000000000..1f48fbedc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8041.table @@ -0,0 +1,15 @@ +0 0 PARENT SITE +1 1 OBSERVATION SITE +2 2 BALLOON MANUFACTURE DATE +3 3 BALLOON LAUNCH POINT +4 4 SURFACE OBSERVATION +5 5 SURFACE OBSERVATION DISPLACEMENT FROM LAUNCH POINT +6 6 FLIGHT LEVEL OBSERVATION +7 7 FLIGHT LEVEL TERMINATION POINT +8 8 IFR CEILING AND VISIBILITY +9 9 MOUNTAIN OBSCURATION +10 10 STRONG SURFACE WIND +11 11 FREEZING LEVEL +12 12 MULTIPLE FREEZING LEVEL +13 13 INSTRUMENT MANUFACTURE DATE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8042.table b/definitions/bufr/tables/0/wmo/42/codetables/8042.table new file mode 100644 index 000000000..c71709a4c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8042.table @@ -0,0 +1,17 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 MAXIMUM WIND LEVEL +5 5 SIGNIFICANT TEMPERATURE LEVEL +6 6 SIGNIFICANT HUMIDITY LEVEL +7 7 SIGNIFICANT WIND LEVEL +8 8 BEGINNING OF MISSING TEMPERATURE DATA +9 9 END OF MISSING TEMPERATURE DATA +10 10 BEGINNING OF MISSING HUMIDITY DATA +11 11 END OF MISSING HUMIDITY DATA +12 12 BEGINNING OF MISSING WIND DATA +13 13 END OF MISSING WIND DATA +14 14 TOP OF WIND SOUNDING +15 15 LEVEL DETERMINED BY REGIONAL DECISION +16 16 FREEZING LEVEL +17 17 PRESSURE LEVEL ORIGINALLY INDICATED BY HEIGHT AS THE VERTICAL COORDINATE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8043.table b/definitions/bufr/tables/0/wmo/42/codetables/8043.table new file mode 100644 index 000000000..b6975ed39 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8043.table @@ -0,0 +1,20 @@ +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 VOLCANIC SULPHUR DIOXIDE +25 25 PARTICULATE MATTER < 1.0 MICRONS +26 26 PARTICULATE MATTER < 2.5 MICRONS +27 27 PARTICULATE MATTER < 10 MICRONS +28 28 AEROSOLS (GENERIC) +29 29 SMOKE (GENERIC) +30 30 CRUSTAL MATERIAL (GENERIC DUST) +31 31 VOLCANIC ASH +32 32 CLOUD +33 33 CLOUD AND AEROSOLS +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8045.table b/definitions/bufr/tables/0/wmo/42/codetables/8045.table new file mode 100644 index 000000000..18cf53d29 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8045.table @@ -0,0 +1,5 @@ +0 0 AEROSOLS ALL TYPES +1 1 DESERT DUST +2 2 BLACK CARBON +3 3 SEA SALT +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8046.table b/definitions/bufr/tables/0/wmo/42/codetables/8046.table new file mode 100644 index 000000000..6bd87c416 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8046.table @@ -0,0 +1,587 @@ +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 CATION +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 DIHYDROGEN +21 21 ATOMIC NITROGEN +22 22 SULPHATE ANION +23 23 ATOMIC RADON +24 24 MERCURY VAPOUR +25 25 MERCURY(II) CATION +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 38 DIOXYGEN +39 39 NITRYL CHLORIDE +40 40 SULPHURIC ACID +41 41 HYDROGEN SULPHIDE +42 42 SULPHUR TRIOXIDE +43 43 BROMINE +44 44 HYDROFLUORIC ACID +45 45 SULPHUR HEXAFLUORIDE +46 46 CHLORINE +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 BUTANE (ALL ISOMERS) +10017 10017 ISOPRENE +10018 10018 ALPHA PINENE +10019 10019 BETA PINENE +10020 10020 LIMONENE +10021 10021 BENZENE +10022 10022 TOLUENE +10023 10023 XYLENE +10024 10024 METHANESULPHONIC ACID +10025 10025 METHYLGLYOXAL (2-OXOPROPANAL) +10026 10026 PEROXYACETYL RADICAL +10027 10027 METHACRYLIC ACID (2-METHYLPROP-2-ENOIC ACID) +10028 10028 METHACROLEIN (2-METHYLPROP-2-ENAL) +10029 10029 ACETONE (PROPAN-2-ONE) +10030 10030 ETHYL DIOXIDANYL RADICAL +10031 10031 BUTADIENE (BUTA-1,3-DIENE) +10032 10032 ACETALDEHYDE (ETHANAL) +10033 10033 GLYCOLALDEHYDE (HYDROXYETHANAL) +10034 10034 CRESOL (METHYLPHENOL), ALL ISOMERS +10035 10035 PERACETIC ACID (ETHANEPEROXOIC ACID) +10036 10036 2-HYDROXYETHYL OXIDANYL RADICAL +10037 10037 2-HYDROXYETHYL DIOXIDANYL RADICAL +10038 10038 GLYOXAL (OXALDEHYDE) +10039 10039 ISOPROPYL DIOXIDANYL RADICAL +10040 10040 ISOPROPYL HYDROPEROXIDE (2-HYDROPEROXYPROPANE) +10041 10041 HYDROXYACETONE (1-HYDROXYPROPAN-2-ONE) +10042 10042 PEROXYACETIC ACID (ETHANEPEROXOIC ACID) +10043 10043 METHYL VINYL KETONE (BUT-3-EN-2-ONE) +10044 10044 PHENOXY RADICAL +10045 10045 METHYL RADICAL +10046 10046 CARBONYL SULPHIDE (CARBON OXIDE SULPHIDE) +10047 10047 DIBROMOMETHANE +10048 10048 METHOXY RADICAL +10049 10049 TRIBROMOMETHANE +10050 10050 FORMYL RADICAL (OXOMETHYL RADICAL) +10051 10051 HYDROXYMETHYL DIOXIDANYL RADICAL +10052 10052 ETHYL HYDROPEROXIDE +10053 10053 3-HYDROXYPROPYL DIOXIDANYL RADICAL +10054 10054 3-HYDROXYPROPYL HYDROPEROXIDE +10055 10055 METHYL-PEROXY-NITRATE (NITROPEROXY-METHANE) +10056 10056 2-LAMBDA^1-OXIDANYLOXY-2-METHYLBUT-3-EN-1-OL (4-HYDROXY-3-METHYL-1-BUTENE-3-YLPEROXY RADICAL) +10057 10057 2-LAMBDA^1-OXIDANYLOXY-3-METHYLBUT-3-EN-1-OL (2-HYDROXY-1-ISOPROPENYLETHYLPEROXY RADICAL) +10058 10058 (Z)-4-HYDROPEROXY-2-METHYL-2-BUTENAL +10059 10059 (Z)-4-HYDROPEROXY-3-METHYL-2-BUTENAL +10500 10500 DIMETHYL SULPHIDE +10501 10501 DMSO (DIMETHYL SULFOXIDE) +20001 20001 HYDROGEN CHLORIDE +20002 20002 CFC-11 (TRICHLOROFLUOROMETHANE) +20003 20003 CFC-12 (DICHLORODIFLUOROMETHANE) +20004 20004 CFC-113 (1,1,2-TRICHLORO-1,2,2-TRIFLUOROETHANE) +20005 20005 CFC-113A (1,1,1-TRICHLORO-2,2,2-TRIFLUOROETHANE) +20006 20006 CFC-114 (1,2-DICHLORO-1,1,2,2-TETRAFLUOROETHANE) +20007 20007 CFC-115 (1-CHLORO-1,1,2,2,2-PENTAFLUOROETHANE) +20008 20008 HCFC-22 (CHLORODIFLUOROMETHANE) +20009 20009 HCFC-141B (1,1-DICHLORO-1-FLUOROETHANE) +20010 20010 HCFC-142B (1-CHLORO-1,1-DIFLUOROETHANE) +20011 20011 HALON-1202 (DIBROMODIFLUOROMETHANE) +20012 20012 HALON-1211 (BROMOCHLORODIFLUOROMETHANE) +20013 20013 HALON-1301 (BROMOTRIFLUOROMETHANE) +20014 20014 HALON-2402 (1,2-DIBROMO-1,1,2,2-TETRAFLUOROETHANE) +20015 20015 HCC-40 (METHYL CHLORIDE) +20016 20016 HCC-10 (CARBON TETRACHLORIDE) +20017 20017 HCC-140A (1,1,1-TRICHLOROETHANE) +20018 20018 HBC-40B1 (METHYL BROMIDE) +20019 20019 HCH (HEXACHLOROCYCLOHEXANE) ALL ISOMERS +20020 20020 ALPHA-HCH (ALPHA-HEXACHLOROCYCLOHEXANE) BOTH ENANTIOMERS +20021 20021 PCB-153 (2,2',4,4',5,5'-HEXACHLOROBIPHENYL) +20022 20022 HCFC-141A (1,1-DICHLORO-2-FLUOROETHANE) +30000 30000 RADIOACTIVE POLLUTANT (TRACER, DEFINED BY ORIGINATING CENTRE) +30010 30010 TRITIUM (HYDROGEN 3) +30011 30011 TRITIUM ORGANIC BOUNDED +30012 30012 TRITIUM INORGANIC +30013 30013 BERYLLIUM 7 +30014 30014 BERYLLIUM 10 +30015 30015 CARBON 14 +30016 30016 CARBON 14 CO2 +30017 30017 CARBON 14 OTHER GASES +30018 30018 NITROGEN 13 +30019 30019 NITROGEN 16 +30020 30020 FLUORINE 18 +30021 30021 SODIUM 22 +30022 30022 PHOSPHATE 32 +30023 30023 PHOSPHATE 33 +30024 30024 SULPHUR 35 +30025 30025 CHLORINE 36 +30026 30026 POTASSIUM 40 +30027 30027 ARGON 41 +30028 30028 CALCIUM 41 +30029 30029 CALCIUM 45 +30030 30030 TITANIUM 44 +30031 30031 SCANDIUM 46 +30032 30032 VANADIUM 48 +30033 30033 VANADIUM 49 +30034 30034 CHROME 51 +30035 30035 MANGANESE 52 +30036 30036 MANGANESE 54 +30037 30037 IRON 55 +30038 30038 IRON 59 +30039 30039 COBALT 56 +30040 30040 COBALT 57 +30041 30041 COBALT 58 +30042 30042 COBALT 60 +30043 30043 NICKEL 59 +30044 30044 NICKEL 63 +30045 30045 ZINC 65 +30046 30046 GALLIUM 67 +30047 30047 GALLIUM 68 +30048 30048 GERMANIUM 68 +30049 30049 GERMANIUM 69 +30050 30050 ARSENIC 73 +30051 30051 SELENIUM 75 +30052 30052 SELENIUM 79 +30053 30053 RUBIDIUM 81 +30054 30054 RUBIDIUM 83 +30055 30055 RUBIDIUM 84 +30056 30056 RUBIDIUM 86 +30057 30057 RUBIDIUM 87 +30058 30058 RUBIDIUM 88 +30059 30059 KRYPTON 85 +30060 30060 KRYPTON 85 METASTABLE +30061 30061 KRYPTON 87 +30062 30062 KRYPTON 88 +30063 30063 KRYPTON 89 +30064 30064 STRONTIUM 85 +30065 30065 STRONTIUM 89 +30066 30066 STRONTIUM 89/90 +30067 30067 STRONTIUM 90 +30068 30068 STRONTIUM 91 +30069 30069 STRONTIUM 92 +30070 30070 YTTRIUM 87 +30071 30071 YTTRIUM 88 +30072 30072 YTTRIUM 90 +30073 30073 YTTRIUM 91 +30074 30074 YTTRIUM 91 METASTABLE +30075 30075 YTTRIUM 92 +30076 30076 YTTRIUM 93 +30077 30077 ZIRCONIUM 89 +30078 30078 ZIRCONIUM 93 +30079 30079 ZIRCONIUM 95 +30080 30080 ZIRCONIUM 97 +30081 30081 NIOBIUM 93 METASTABLE +30082 30082 NIOBIUM 94 +30083 30083 NIOBIUM 95 +30084 30084 NIOBIUM 95 METASTABLE +30085 30085 NIOBIUM 97 +30086 30086 NIOBIUM 97 METASTABLE +30087 30087 MOLYBDENUM 93 +30088 30088 MOLYBDENUM 99 +30089 30089 TECHNETIUM 95 METASTABLE +30090 30090 TECHNETIUM 96 +30091 30091 TECHNETIUM 99 +30092 30092 TECHNETIUM 99 METASTABLE +30093 30093 RHODIUM 99 +30094 30094 RHODIUM 101 +30095 30095 RHODIUM 102 METASTABLE +30096 30096 RHODIUM 103 METASTABLE +30097 30097 RHODIUM 105 +30098 30098 RHODIUM 106 +30099 30099 PALLADIUM 100 +30100 30100 PALLADIUM 103 +30101 30101 PALLADIUM 107 +30102 30102 RUTHENIUM 103 +30103 30103 RUTHENIUM 105 +30104 30104 RUTHENIUM 106 +30105 30105 SILVER 108 METASTABLE +30106 30106 SILVER 110 METASTABLE +30107 30107 CADMIUM 109 +30108 30108 CADMIUM 113 METASTABLE +30109 30109 CADMIUM 115 METASTABLE +30110 30110 INDIUM 114 METASTABLE +30111 30111 TIN 113 +30112 30112 TIN 119 METASTABLE +30113 30113 TIN 121 METASTABLE +30114 30114 TIN 122 +30115 30115 TIN 123 +30116 30116 TIN 126 +30117 30117 ANTIMONY 124 +30118 30118 ANTIMONY 125 +30119 30119 ANTIMONY 126 +30120 30120 ANTIMONY 127 +30121 30121 ANTIMONY 129 +30122 30122 TELLURIUM 123 METASTABLE +30123 30123 TELLURIUM 125 METASTABLE +30124 30124 TELLURIUM 127 +30125 30125 TELLURIUM 127 METASTABLE +30126 30126 TELLURIUM 129 +30127 30127 TELLURIUM 129 METASTABLE +30128 30128 TELLURIUM 131 METASTABLE +30129 30129 TELLURIUM 132 +30130 30130 IODINE 123 +30131 30131 IODINE 124 +30132 30132 IODINE 125 +30133 30133 IODINE 126 +30134 30134 IODINE 129 +30135 30135 IODINE 129 ELEMENTARY GASEOUS +30136 30136 IODINE 129 ORGANIC BOUNDED +30137 30137 IODINE 131 +30138 30138 IODINE 131 ELEMENTARY GASEOUS +30139 30139 IODINE 131 ORGANIC BOUNDED +30140 30140 IODINE 131 GASEOUS ELEMENTARY AND ORGANIC BOUNDED +30141 30141 IODINE 131 AEROSOL +30142 30142 IODINE 132 +30143 30143 IODINE 132 ELEMENTARY GASEOUS +30144 30144 IODINE 132 ORGANIC BOUNDED +30145 30145 IODINE 132 GASEOUS ELEMENTARY AND ORGANIC BOUNDED +30146 30146 IODINE 132 AEROSOL +30147 30147 IODINE 133 +30148 30148 IODINE 133 ELEMENTARY GASEOUS +30149 30149 IODINE 133 ORGANIC BOUNDED +30150 30150 IODINE 133 GASEOUS ELEMENTARY AND ORGANIC BOUNDED +30151 30151 IODINE 133 AEROSOL +30152 30152 IODINE 134 +30153 30153 IODINE 134 ELEMENTARY GASEOUS +30154 30154 IODINE 134 ORGANIC BOUNDED +30155 30155 IODINE 135 +30156 30156 IODINE 135 ELEMENTARY GASEOUS +30157 30157 IODINE 135 ORGANIC BOUNDED +30158 30158 IODINE 135 GASEOUS ELEMENTARY AND ORGANIC BOUNDED +30159 30159 IODINE 135 AEROSOL +30160 30160 XENON 131 METASTABLE +30161 30161 XENON 133 +30162 30162 XENON 133 METASTABLE +30163 30163 XENON 135 +30164 30164 XENON 135 METASTABLE +30165 30165 XENON 137 +30166 30166 XENON 138 +30167 30167 XENON SUM OF ALL XENON ISOTOPES +30168 30168 CAESIUM 131 +30169 30169 CAESIUM 134 +30170 30170 CAESIUM 135 +30171 30171 CAESIUM 136 +30172 30172 CAESIUM 137 +30173 30173 BARIUM 133 +30174 30174 BARIUM 137 METASTABLE +30175 30175 BARIUM 140 +30176 30176 CERIUM 139 +30177 30177 CERIUM 141 +30178 30178 CERIUM 143 +30179 30179 CERIUM 144 +30180 30180 LANTHANUM 140 +30181 30181 LANTHANUM 141 +30182 30182 PRASEODYMIUM 143 +30183 30183 PRASEODYMIUM 144 +30184 30184 PRASEODYMIUM 144 METASTABLE +30185 30185 SAMARIUM 145 +30186 30186 SAMARIUM 147 +30187 30187 SAMARIUM 151 +30188 30188 NEODYMIUM 147 +30189 30189 PROMETHIUM 146 +30190 30190 PROMETHIUM 147 +30191 30191 PROMETHIUM 151 +30192 30192 EUROPIUM 152 +30193 30193 EUROPIUM 154 +30194 30194 EUROPIUM 155 +30195 30195 GADOLINIUM 153 +30196 30196 TERBIUM 160 +30197 30197 HOLMIUM 166 METASTABLE +30198 30198 THULIUM 170 +30199 30199 YTTERBIUM 169 +30200 30200 HAFNIUM 175 +30201 30201 HAFNIUM 181 +30202 30202 TANTALUM 179 +30203 30203 TANTALUM 182 +30204 30204 RHENIUM 184 +30205 30205 IRIDIUM 192 +30206 30206 MERCURY 203 +30207 30207 THALLIUM 204 +30208 30208 THALLIUM 207 +30209 30209 THALLIUM 208 +30210 30210 THALLIUM 209 +30211 30211 BISMUTH 205 +30212 30212 BISMUTH 207 +30213 30213 BISMUTH 210 +30214 30214 BISMUTH 211 +30215 30215 BISMUTH 212 +30216 30216 BISMUTH 213 +30217 30217 BISMUTH 214 +30218 30218 POLONIUM 208 +30219 30219 POLONIUM 210 +30220 30220 POLONIUM 212 +30221 30221 POLONIUM 213 +30222 30222 POLONIUM 214 +30223 30223 POLONIUM 215 +30224 30224 POLONIUM 216 +30225 30225 POLONIUM 218 +30226 30226 LEAD 209 +30227 30227 LEAD 210 +30228 30228 LEAD 211 +30229 30229 LEAD 212 +30230 30230 LEAD 214 +30231 30231 ASTATINE 217 +30232 30232 RADON 219 +30233 30233 RADON 220 +30234 30234 RADON 222 +30235 30235 FRANCIUM 221 +30236 30236 FRANCIUM 223 +30237 30237 RADIUM 223 +30238 30238 RADIUM 224 +30239 30239 RADIUM 225 +30240 30240 RADIUM 226 +30241 30241 RADIUM 228 +30242 30242 ACTINIUM 225 +30243 30243 ACTINIUM 227 +30244 30244 ACTINIUM 228 +30245 30245 THORIUM 227 +30246 30246 THORIUM 228 +30247 30247 THORIUM 229 +30248 30248 THORIUM 230 +30249 30249 THORIUM 231 +30250 30250 THORIUM 232 +30251 30251 THORIUM 234 +30252 30252 PROTACTINIUM 231 +30253 30253 PROTACTINIUM 233 +30254 30254 PROTACTINIUM 234 METASTABLE +30255 30255 URANIUM 232 +30256 30256 URANIUM 233 +30257 30257 URANIUM 234 +30258 30258 URANIUM 235 +30259 30259 URANIUM 236 +30260 30260 URANIUM 237 +30261 30261 URANIUM 238 +30262 30262 PLUTONIUM 236 +30263 30263 PLUTONIUM 238 +30264 30264 PLUTONIUM 239 +30265 30265 PLUTONIUM 240 +30266 30266 PLUTONIUM 241 +30267 30267 PLUTONIUM 242 +30268 30268 PLUTONIUM 244 +30269 30269 NEPTUNIUM 237 +30270 30270 NEPTUNIUM 238 +30271 30271 NEPTUNIUM 239 +30272 30272 AMERICIUM 241 +30273 30273 AMERICIUM 242 +30274 30274 AMERICIUM 242 METASTABLE +30275 30275 AMERICIUM 243 +30276 30276 CURIUM 242 +30277 30277 CURIUM 243 +30278 30278 CURIUM 244 +30279 30279 CURIUM 245 +30280 30280 CURIUM 246 +30281 30281 CURIUM 247 +30282 30282 CURIUM 248 +30283 30283 CURIUM 243/244 +30284 30284 PLUTONIUM 238/AMERICIUM 241 +30285 30285 PLUTONIUM 239/240 +30286 30286 BERKELIUM 249 +30287 30287 CALIFORNIUM 249 +30288 30288 CALIFORNIUM 250 +30289 30289 CALIFORNIUM 252 +30290 30290 SUM AEROSOL PARTICULATES +30291 30291 SUM IODINE +30292 30292 SUM NOBLE GAS +30293 30293 ACTIVATION GAS +30294 30294 CS-137 EQUIVALENT +30295 30295 CARBON-13 +30296 30296 LEAD +30297 30297 TELLURIUM 131 +30298 30298 NEODYMIUM 137 +30299 30299 PSEUDO RADIONUCLIDE +30300 30300 SILVER 112 +30301 30301 SILVER 115 +30302 30302 BARIUM 139 +30303 30303 BARIUM 141 +30304 30304 BARIUM 142 +30305 30305 BROMINE 84 +30306 30306 CADMINUM 115 +30307 30307 CADMINUM 117 +30308 30308 CADMINUM 117 METASTABLE +30309 30309 CERIUM 145 +30310 30310 CERIUM 146 +30311 30311 COBALT 58 METASTABLE +30312 30312 CEASIUM 138 +30313 30313 CEASIUM 139 +30314 30314 IODINE 130 AEROSOL +30315 30315 IODINE 130 ELEMENTARY GASEOUS +30316 30316 IODINE 130 ORGANIC BOUNDED +30317 30317 IODINE 132 METASTABLE +30318 30318 IODINE 134 METASTABLE +30319 30319 INDIUM 115 METASTABLE +30320 30320 INDIUM 117 METASTABLE +30321 30321 KRYPTON 83 METASTABLE +30322 30322 LANTHANUM 142 +30323 30323 LANTHANUM 143 +30324 30324 MANGANESE 56 +30325 30325 MOLYBDENUM 101 +30326 30326 MOLYBDENUM 102 +30327 30327 NEODYMIUM 149 +30328 30328 NEODYMIUM 151 +30329 30329 PALLADIUM 109 +30330 30330 PALLADIUM 112 +30331 30331 PRASEODYMIUM 145 +30332 30332 PRASEODYMIUM 146 +30333 30333 PRASEODYMIUM 147 +30334 30334 RUBIDIUM 89 +30335 30335 RUBIDIUM 90 +30336 30336 RUBIDIUM 90 METASTABLE +30337 30337 RHODIUM 105 METASTABLE +30338 30338 RHODIUM 107 +30339 30339 ANTIMONY 128 +30340 30340 ANTIMONY 128 METASTABLE +30341 30341 ANTIMONY 129 METASTABLE +30342 30342 ANTIMONY 130 +30343 30343 ANTIMONY 130 METASTABLE +30344 30344 ANTIMONY 131 +30345 30345 ANTIMONY 132 +30346 30346 ANTIMONY 132 METASTABLE +30347 30347 ANTIMONY 133 +30348 30348 SELENIUM 83 +30349 30349 TIN 127 +30350 30350 TIN 127 METASTABLE +30351 30351 TIN 128 +30352 30352 TIN 129 METASTABLE +30353 30353 TIN 130 +30354 30354 STRONTIUM 93 +30355 30355 TECHNETIUM 101 +30356 30356 TECHNETIUM 102 +30357 30357 TECHNETIUM 104 +30358 30358 TECHNETIUM 105 +30359 30359 TELLURIUM 133 +30360 30360 TELLURIUM 133 METASTABLE +30361 30361 TELLURIUM 134 +30362 30362 YTTRIUM 93 METASTABLE +30363 30363 YTTRIUM 94 +30364 30364 YTTRIUM 95 +30365 30365 ZIRCONIUM 96 +40000 40000 SINGLET SIGMA OXYGEN (DIOXYGEN (SIGMA SINGLET)) +40001 40001 SINGLET DELTA OXYGEN (DIOXYGEN (DELTA SINGLET)) +40002 40002 SINGLET EXCITED OXYGEN ATOM +40003 40003 TRIPLET GROUND STATE OXYGEN ATOM +60000 60000 HOX RADICAL (OH+HO2) +60001 60001 TOTAL INORGANIC AND ORGANIC PEROXY RADICALS (HOO* + ROO*) +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 +60017 60017 NOX EXPRESSED AS NITROGEN DIOXIDE (NO2) +60018 60018 ORGANIC ALDEHYDES +60019 60019 ORGANIC PEROXIDES +60020 60020 ORGANIC NITRATES +60021 60021 ETHERS +60022 60022 AMINES +60023 60023 KETONES +60024 60024 DICARBONYLS UNSATURATED +60025 60025 HYDROXY DICARBONYLS UNSATURATED +60026 60026 HYDROXY KETONES +60027 60027 OXIDES +60028 60028 PEROXYACYL NITRATES +60029 60029 AROMATIC PEROXIDE RADICAL (ARYL DIOXYDANYL RADICALS) +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 O2 +60033 60033 ANTHROPOGENIC VOLATILE ORGANIC COMPOUNDS +60034 60034 BIOMASS BURNING VOLATILE ORGANIC COMPOUNDS +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 +62024 62024 RESERVED +62025 62025 VOLCANIC ASH +62026 62026 PARTICULATE MATTER (PM) +62027 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 62034 RAIN WATER +62035 62035 CLOUD WATER +62036 62036 BROWN CARBON DRY +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 +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/definitions/bufr/tables/0/wmo/42/codetables/8050.table b/definitions/bufr/tables/0/wmo/42/codetables/8050.table new file mode 100644 index 000000000..4b401f1d2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8050.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 PRESSURE +2 2 TEMPERATURE +3 3 EXTREME TEMPERATURE +4 4 VAPOUR PRESSURE +5 5 PRECIPITATION +6 6 SUNSHINE DURATION +7 7 MAXIMUM TEMPERATURE +8 8 MINIMUM TEMPERATURE +9 9 WIND +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8051.table b/definitions/bufr/tables/0/wmo/42/codetables/8051.table new file mode 100644 index 000000000..5249fe6a2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8051.table @@ -0,0 +1,7 @@ +1 1 PRESSURE +2 2 TEMPERATURE +3 3 EXTREME TEMPERATURE +4 4 VAPOUR PRESSURE +5 5 PRECIPITATION +6 6 SUNSHINE DURATION +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8052.table b/definitions/bufr/tables/0/wmo/42/codetables/8052.table new file mode 100644 index 000000000..46dcbbe21 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8052.table @@ -0,0 +1,26 @@ +0 0 MEAN WIND SPEED OVER A 10-MINUTE PERIOD OBSERVED OR RECORDED EQUAL TO OR MORE THAN 10 M S-1 OR 20 KNOTS +1 1 MEAN WIND SPEED OVER A 10-MINUTE PERIOD OBSERVED OR RECORDED EQUAL TO OR MORE THAN 20 M S-1 OR 40 KNOTS +2 2 MEAN WIND SPEED OVER A 10-MINUTE PERIOD OBSERVED OR RECORDED EQUAL TO OR MORE THAN 30 M S-1 OR 60 KNOTS +3 3 MAXIMUM TEMPERATURE LESS THAN 273.15 K +4 4 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 298.15 K +5 5 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 303.15 K +6 6 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 308.15 K +7 7 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 313.15 K +8 8 MINIMUM TEMPERATURE LESS THAN 273.15 K +9 9 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 273.15 K +10 10 PRECIPITATION EQUAL TO OR MORE THAN 1.0 KG M-2 +11 11 PRECIPITATION EQUAL TO OR MORE THAN 5.0 KG M-2 +12 12 PRECIPITATION EQUAL TO OR MORE THAN 10.0 KG M-2 +13 13 PRECIPITATION EQUAL TO OR MORE THAN 50.0 KG M-2 +14 14 PRECIPITATION EQUAL TO OR MORE THAN 100.0 KG M-2 +15 15 PRECIPITATION EQUAL TO OR MORE THAN 150.0 KG M-2 +16 16 SNOW DEPTH MORE THAN 0.00 M +17 17 SNOW DEPTH MORE THAN 0.01 M +18 18 SNOW DEPTH MORE THAN 0.10 M +19 19 SNOW DEPTH MORE THAN 0.50 M +20 20 HORIZONTAL VISIBILITY LESS THAN 50 M +21 21 HORIZONTAL VISIBILITY LESS THAN 100 M +22 22 HORIZONTAL VISIBILITY LESS THAN 1000 M +23 23 HAIL +24 24 THUNDERSTORM +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8053.table b/definitions/bufr/tables/0/wmo/42/codetables/8053.table new file mode 100644 index 000000000..cbc11c9a7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8053.table @@ -0,0 +1,4 @@ +0 0 VALUE OCCURRED ON ONLY ONE DAY IN THE MONTH +1 1 VALUE OCCURRED ON MORE THAN ONE DAY IN THE MONTH +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8054.table b/definitions/bufr/tables/0/wmo/42/codetables/8054.table new file mode 100644 index 000000000..51b908e08 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8054.table @@ -0,0 +1,3 @@ +0 0 WIND SPEED OR GUST IS AS REPORTED +1 1 WIND SPEED IS GREATER THAN THAT REPORTED (P IN METAR/TAF/SPECI) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8060.table b/definitions/bufr/tables/0/wmo/42/codetables/8060.table new file mode 100644 index 000000000..2865fece5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8060.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 RANGE +2 2 AZIMUTH +3 3 HORIZONTAL +4 4 VERTICAL +5 5 NORTH/SOUTH +6 6 EAST/WEST +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8065.table b/definitions/bufr/tables/0/wmo/42/codetables/8065.table new file mode 100644 index 000000000..69b80ea33 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8065.table @@ -0,0 +1,4 @@ +0 0 NO SUN-GLINT +1 1 SUN-GLINT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8066.table b/definitions/bufr/tables/0/wmo/42/codetables/8066.table new file mode 100644 index 000000000..fcc0252c9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8066.table @@ -0,0 +1,4 @@ +0 0 OPAQUE +1 1 SEMI-TRANSPARENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8070.table b/definitions/bufr/tables/0/wmo/42/codetables/8070.table new file mode 100644 index 000000000..f58061757 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8070.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 RESERVED +2 2 EARTH LOCATED INSTRUMENT COUNTS, CALIBRATION COEFFICIENTS AND HOUSEKEEPING (LEVEL 1B) +3 3 EARTH LOCATED CALIBRATED RADIANCES (LEVEL 1C) +4 4 MAPPED TO A COMMON FOOTPRINT, EARTH LOCATED CALIBRATED RADIANCES (LEVEL 1D) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8071.table b/definitions/bufr/tables/0/wmo/42/codetables/8071.table new file mode 100644 index 000000000..8890d5739 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8071.table @@ -0,0 +1,4 @@ +0 0 FIRST GUESS +1 1 Y VECTOR +2 2 X VECTOR +7 7 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8072.table b/definitions/bufr/tables/0/wmo/42/codetables/8072.table new file mode 100644 index 000000000..033dd5850 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8072.table @@ -0,0 +1,8 @@ +0 0 MIXED +1 1 CLEAR +2 2 CLOUDY +3 3 PROBABLY CLEAR +4 4 PROBABLY CLOUDY +5 5 ASH +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8074.table b/definitions/bufr/tables/0/wmo/42/codetables/8074.table new file mode 100644 index 000000000..5778e6552 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8074.table @@ -0,0 +1,4 @@ +0 0 OPEN OCEAN OR SEMI-ENCLOSED SEA +1 1 NON-OCEAN LIKE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8075.table b/definitions/bufr/tables/0/wmo/42/codetables/8075.table new file mode 100644 index 000000000..5f5e3a24c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8075.table @@ -0,0 +1,4 @@ +0 0 ASCENDING ORBIT +1 1 DESCENDING ORBIT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8076.table b/definitions/bufr/tables/0/wmo/42/codetables/8076.table new file mode 100644 index 000000000..431496fbc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8076.table @@ -0,0 +1,9 @@ +0 0 KU +1 1 C +2 2 LONG-WAVE INFRARED +3 3 MEDIUM-WAVE INFRARED +4 4 SHORT-WAVE INFRARED +5 5 M +6 6 I +7 7 DAY/NIGHT +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8077.table b/definitions/bufr/tables/0/wmo/42/codetables/8077.table new file mode 100644 index 000000000..2c7902bd7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8077.table @@ -0,0 +1,7 @@ +0 0 LAND +1 1 SEA +2 2 COASTAL +3 3 OPEN OCEAN OR SEMI-ENCLOSED SEA +4 4 ENCLOSED SEA OR LAKE +5 5 CONTINENTAL ICE +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8079.table b/definitions/bufr/tables/0/wmo/42/codetables/8079.table new file mode 100644 index 000000000..735a09c37 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8079.table @@ -0,0 +1,9 @@ +0 0 NORMAL ISSUE +1 1 CORRECTION TO A PREVIOUSLY ISSUED PRODUCT (COR) +2 2 AMENDMENT TO A PREVIOUSLY ISSUED PRODUCT (AMD) +3 3 CORRECTION TO A PREVIOUSLY ISSUED AMENDED PRODUCT (COR AMD) +4 4 CANCELLATION OF A PREVIOUSLY ISSUED PRODUCT (CNL) +5 5 NO PRODUCT AVAILABLE (NIL) +6 6 SPECIAL REPORT (SPECI) +7 7 CORRECTED SPECIAL REPORT (SPECI COR) +15 15 MISSING OR NOT APPLICABLE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8080.table b/definitions/bufr/tables/0/wmo/42/codetables/8080.table new file mode 100644 index 000000000..596dfc676 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8080.table @@ -0,0 +1,20 @@ +0 0 TOTAL WATER PRESSURE PROFILE +1 1 TOTAL WATER TEMPERATURE PROFILE +2 2 TOTAL WATER SALINITY PROFILE +3 3 TOTAL WATER CONDUCTIVITY PROFILE +4 4 TOTAL WATER DEPTH +10 10 WATER PRESSURE AT A LEVEL +11 11 WATER TEMPERATURE AT A LEVEL +12 12 SALINITY AT A LEVEL +13 13 WATER DEPTH AT A LEVEL +14 14 SEA/WATER CURRENT SPEED AT A LEVEL +15 15 SEA/WATER CURRENT DIRECTION AT A LEVEL +16 16 DISSOLVED OXYGEN AT A LEVEL +20 20 POSITION +21 21 CHLOROPHYLL-A AT A LEVEL +22 22 NITRATE AT A LEVEL +23 23 PH AT A LEVEL +24 24 BBP700 AT A LEVEL +25 25 WATER CONDUCTIVITY AT A LEVEL +26 26 SEA WATER POTENTIAL DENSITY REFERENCED TO SEA SURFACE AT A LEVEL +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8081.table b/definitions/bufr/tables/0/wmo/42/codetables/8081.table new file mode 100644 index 000000000..75d288732 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8081.table @@ -0,0 +1,5 @@ +0 0 SENSOR +1 1 TRANSMITTER +2 2 RECEIVER +3 3 OBSERVING PLATFORM +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8082.table b/definitions/bufr/tables/0/wmo/42/codetables/8082.table new file mode 100644 index 000000000..1f24db866 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8082.table @@ -0,0 +1,3 @@ +0 0 SENSOR HEIGHT IS NOT MODIFIED +1 1 SENSOR HEIGHT IS MODIFIED TO STANDARD LEVEL +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8083.table b/definitions/bufr/tables/0/wmo/42/codetables/8083.table new file mode 100644 index 000000000..174ef3428 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8083.table @@ -0,0 +1,9 @@ +1 1 ADJUSTED TO OR WITH RESPECT TO REPRESENTATIVE HEIGHT OF SENSOR ABOVE LOCAL GROUND (OR DECK OF MARINE PLATFORM) +2 2 ADJUSTED TO OR WITH RESPECT TO REPRESENTATIVE HEIGHT OF SENSOR ABOVE WATER SURFACE +3 3 ADJUSTED WITH RESPECT TO STANDARD SURFACE ROUGHNESS +4 4 ADJUSTED WITH RESPECT TO WIND SPEED +5 5 ADJUSTED WITH RESPECT TO TEMPERATURE +6 6 ADJUSTED WITH RESPECT TO PRESSURE +7 7 ADJUSTED WITH RESPECT TO HUMIDITY +8 8 ADJUSTED WITH RESPECT TO EVAPORATION +9 9 ADJUSTED WITH RESPECT TO WETTING LOSSES diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8085.table b/definitions/bufr/tables/0/wmo/42/codetables/8085.table new file mode 100644 index 000000000..79e1a3d90 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8085.table @@ -0,0 +1,4 @@ +0 0 FORE BEAM +1 1 MID BEAM +2 2 AFT BEAM +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8086.table b/definitions/bufr/tables/0/wmo/42/codetables/8086.table new file mode 100644 index 000000000..a9ecd0351 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8086.table @@ -0,0 +1,11 @@ +1 1 MODEL GROUND SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 MAXIMUM WIND LEVEL +5 5 SIGNIFICANT TEMPERATURE LEVEL +6 6 SIGNIFICANT HUMIDITY LEVEL +7 7 SIGNIFICANT WIND LEVEL +8 8 VERTICALLY INTERPOLATED LEVEL (THIS SHOULD BE SET TO 1 FOR POINTS ON THE VERTICAL PROFILE THAT FALL BETWEEN THE MODEL'S NATIVE VERTICAL LEVELS.) +9 9 VIRTUAL STATION HEIGHT +10 10 LEVEL OF BEST FIT +11 11 RESERVED diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8087.table b/definitions/bufr/tables/0/wmo/42/codetables/8087.table new file mode 100644 index 000000000..d556c98de --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8087.table @@ -0,0 +1,5 @@ +0 0 UPPER LEFT +1 1 UPPER RIGHT +2 2 LOWER RIGHT +3 3 LOWER LEFT +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8088.table b/definitions/bufr/tables/0/wmo/42/codetables/8088.table new file mode 100644 index 000000000..d6f51be70 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8088.table @@ -0,0 +1,4 @@ +0 0 TOP VIEW (GEOGRAPHICAL LONGITUDE ON X-AXIS AND LATITUDE ON Y-AXIS) +1 1 NORTH-SOUTH VIEW (TRANSECT WITH GEOGRAPHICAL LONGITUDE ON X-AXIS AND VERTICAL HEIGHT ON Y-AXIS) +2 2 EAST-WEST VIEW (TRANSECT WITH GEOGRAPHICAL LATITUDE ON X-AXIS AND VERTICAL HEIGHT ON Y-AXIS) +63 63 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8091.table b/definitions/bufr/tables/0/wmo/42/codetables/8091.table new file mode 100644 index 000000000..3a8c44df1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8091.table @@ -0,0 +1,11 @@ +0 0 SATELLITE COORDINATES +1 1 OBSERVATION COORDINATES +2 2 START OF OBSERVATION +3 3 END OF OBSERVATION +4 4 HORIZONTAL CENTRE OF GRAVITY OF THE OBSERVATION +5 5 VERTICAL CENTRE OF GRAVITY OF THE OBSERVATION +6 6 TOP OF THE OBSERVATION +7 7 BOTTOM OF THE OBSERVATION +8 8 PROJECTION ORIGIN +9 9 COORDINATES OF TRUE SCALE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8092.table b/definitions/bufr/tables/0/wmo/42/codetables/8092.table new file mode 100644 index 000000000..e40754f8e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8092.table @@ -0,0 +1,3 @@ +0 0 STANDARD UNCERTAINTY +1 1 COMBINED STANDARD UNCERTAINTY +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8093.table b/definitions/bufr/tables/0/wmo/42/codetables/8093.table new file mode 100644 index 000000000..74f5c3a63 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8093.table @@ -0,0 +1,4 @@ +0 0 TOTAL UNCERTAINTY +1 1 SYSTEMATIC COMPONENT OF UNCERTAINTY +2 2 RANDOM COMPONENT OF UNCERTAINTY +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8094.table b/definitions/bufr/tables/0/wmo/42/codetables/8094.table new file mode 100644 index 000000000..e2ead0bc9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8094.table @@ -0,0 +1,8 @@ +0 0 AVERAGE OF MAXIMUM AND MINIMUM VALUES: TM = (TX + TN)/2 +1 1 AVERAGE OF THE 8 OBSERVATIONS TAKEN EVERY THREE HOURS +2 2 AVERAGE OF THE 24 HOURLY OBSERVATIONS +3 3 WEIGHTED AVERAGE OF 3 OBSERVATIONS: TM = (AT1 +BT2 + CT3) +4 4 WEIGHTED AVERAGE OF 3 OBSERVATIONS AND ALSO MAXIMUM AND MINIMUM VALUES: TM= (AT1 +BT2 + CT3 +DTX + ETN) +5 5 AUTOMATIC WEATHER STATION COMPLETE INTEGRATION FROM MINUTE DATA +6 6 AVERAGE OF THE 4 OBSERVATIONS TAKEN EVERY SIX HOURS +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8095.table b/definitions/bufr/tables/0/wmo/42/codetables/8095.table new file mode 100644 index 000000000..f9d14f75f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8095.table @@ -0,0 +1,36 @@ +0 0 RESERVED +1 1 1A +2 2 1B +3 3 1C +4 4 1D +5 5 RESERVED +6 6 2A +7 7 2B +8 8 2C +9 9 2D +10 10 RESERVED +11 11 3A +12 12 3B +13 13 3C +14 14 3D +15 15 RESERVED +16 16 4A +17 17 4B +18 18 4C +19 19 4D +20 20 RESERVED +21 21 5A +22 22 5B +23 23 5C +24 24 5D +25 25 RESERVED +26 26 1 +27 27 2 +28 28 3 +29 29 4 +30 30 5 +31 31 A +32 32 B +33 33 C +34 34 D +255 255 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8096.table b/definitions/bufr/tables/0/wmo/42/codetables/8096.table new file mode 100644 index 000000000..f9d14f75f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8096.table @@ -0,0 +1,36 @@ +0 0 RESERVED +1 1 1A +2 2 1B +3 3 1C +4 4 1D +5 5 RESERVED +6 6 2A +7 7 2B +8 8 2C +9 9 2D +10 10 RESERVED +11 11 3A +12 12 3B +13 13 3C +14 14 3D +15 15 RESERVED +16 16 4A +17 17 4B +18 18 4C +19 19 4D +20 20 RESERVED +21 21 5A +22 22 5B +23 23 5C +24 24 5D +25 25 RESERVED +26 26 1 +27 27 2 +28 28 3 +29 29 4 +30 30 5 +31 31 A +32 32 B +33 33 C +34 34 D +255 255 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8097.table b/definitions/bufr/tables/0/wmo/42/codetables/8097.table new file mode 100644 index 000000000..1107d7b19 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8097.table @@ -0,0 +1,4 @@ +0 0 THE AVERAGE OF SIX TEMPERATURE SENSORS PLACED THROUGHOUT THE PAYLOAD +1 1 AVERAGE OF WF-BAND IFP AND RFE SENSORS FOR CHANNELS 1 TO 8 +2 2 AVERAGE OF G-BAND RFE SENSOR FOR CHANNELS 9 TO 12 +127 127 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8098.table b/definitions/bufr/tables/0/wmo/42/codetables/8098.table new file mode 100644 index 000000000..63fb59bb9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8098.table @@ -0,0 +1,7 @@ +0 0 ON-BOARD CALIBRATION TARGET +1 1 SPACE VIEW REFLECTOR +2 2 MAIN REFLECTOR +3 3 RACETRACK +4 4 SUN SHIELD +5 5 ROTATING REFLECTOR +15 15 MISSING diff --git a/definitions/bufr/tables/0/wmo/42/codetables/8099.table b/definitions/bufr/tables/0/wmo/42/codetables/8099.table new file mode 100644 index 000000000..b8c9664c4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/codetables/8099.table @@ -0,0 +1,3 @@ +0 0 NADIR +1 1 OBLIQUE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/42/element.table b/definitions/bufr/tables/0/wmo/42/element.table new file mode 100644 index 000000000..7bedbd981 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/element.table @@ -0,0 +1,1834 @@ +#code|abbreviation|type|name|unit|scale|reference|width|crex_unit|crex_scale|crex_width +000001|tableAEntry|string|TABLE A: ENTRY|CCITT IA5|0|0|24|Character|0|3 +000002|tableALine1|string|TABLE A: DATA CATEGORY DESCRIPTION, LINE 1|CCITT IA5|0|0|256|Character|0|32 +000003|tableALine2|string|TABLE A: DATA CATEGORY DESCRIPTION, LINE 2|CCITT IA5|0|0|256|Character|0|32 +000004|masterTable|string|BUFR/CREX MASTER TABLE|CCITT IA5|0|0|16|Character|0|2 +000005|editionNumber|string|BUFR/CREX EDITION NUMBER|CCITT IA5|0|0|24|Character|0|3 +000006|bufrMasterTableVersionNumber|string|BUFR MASTER TABLE VERSION NUMBER|CCITT IA5|0|0|16|Character|0|2 +000007|crexMasterTableVersionNumber|string|CREX MASTER TABLE VERSION NUMBER|CCITT IA5|0|0|16|Character|0|2 +000008|bufrLocalTableVersionNumber|string|BUFR LOCAL TABLE VERSION NUMBER|CCITT IA5|0|0|16|Character|0|2 +000010|fDescriptorToBeAddedOrDefined|string|F DESCRIPTOR TO BE ADDED OR DEFINED|CCITT IA5|0|0|8|Character|0|1 +000011|xDescriptorToBeAddedOrDefined|string|X DESCRIPTOR TO BE ADDED OR DEFINED|CCITT IA5|0|0|16|Character|0|2 +000012|yDescriptorToBeAddedOrDefined|string|Y DESCRIPTOR TO BE ADDED OR DEFINED|CCITT IA5|0|0|24|Character|0|3 +000013|elementNameLine1|string|ELEMENT NAME, LINE 1|CCITT IA5|0|0|256|Character|0|32 +000014|elementNameLine2|string|ELEMENT NAME, LINE 2|CCITT IA5|0|0|256|Character|0|32 +000015|unitsName|string|UNITS NAME|CCITT IA5|0|0|192|Character|0|24 +000016|unitsScaleSign|string|UNITS SCALE SIGN|CCITT IA5|0|0|8|Character|0|1 +000017|unitsScale|string|UNITS SCALE|CCITT IA5|0|0|24|Character|0|3 +000018|unitsReferenceSign|string|UNITS REFERENCE SIGN|CCITT IA5|0|0|8|Character|0|1 +000019|unitsReferenceValue|string|UNITS REFERENCE VALUE|CCITT IA5|0|0|80|Character|0|10 +000020|elementDataWidth|string|ELEMENT DATA WIDTH|CCITT IA5|0|0|24|Character|0|3 +000024|codeFigure|string|CODE FIGURE|CCITT IA5|0|0|64|Character|0|8 +000025|codeFigureMeaning|string|CODE FIGURE MEANING|CCITT IA5|0|0|496|Character|0|62 +000026|bitNumber|string|BIT NUMBER|CCITT IA5|0|0|48|Character|0|6 +000027|bitNumberMeaning|string|BIT NUMBER MEANING|CCITT IA5|0|0|496|Character|0|62 +000030|descriptorDefiningSequence|string|DESCRIPTOR DEFINING SEQUENCE|CCITT IA5|0|0|48|Character|0|6 +001001|blockNumber|long|WMO BLOCK NUMBER|Numeric|0|0|7|Numeric|0|2 +001002|stationNumber|long|WMO STATION NUMBER|Numeric|0|0|10|Numeric|0|3 +001003|regionNumber|table|WMO REGION NUMBER/GEOGRAPHICAL AREA|CODE TABLE|0|0|3|CODE TABLE|0|1 +001004|wmoRegionSubArea|long|WMO REGION SUB-AREA|Numeric|0|0|3|Numeric|0|1 +001005|buoyOrPlatformIdentifier|long|BUOY/PLATFORM IDENTIFIER|Numeric|0|0|17|Numeric|0|5 +001006|aircraftFlightNumber|string|AIRCRAFT FLIGHT NUMBER|CCITT IA5|0|0|64|Character|0|8 +001007|satelliteIdentifier|table|SATELLITE IDENTIFIER|CODE TABLE|0|0|10|CODE TABLE|0|4 +001008|aircraftRegistrationNumberOrOtherIdentification|string|AIRCRAFT REGISTRATION NUMBER OR OTHER IDENTIFICATION|CCITT IA5|0|0|64|Character|0|8 +001009|commercialAircraftType|string|TYPE OF COMMERCIAL AIRCRAFT|CCITT IA5|0|0|64|Character|0|8 +001010|stationaryBuoyPlatformIdentifierEGCManBuoys|string|STATIONARY BUOY PLATFORM IDENTIFIER; E.G. C-MAN BUOYS|CCITT IA5|0|0|64|Character|0|8 +001011|shipOrMobileLandStationIdentifier|string|SHIP OR MOBILE LAND STATION IDENTIFIER|CCITT IA5|0|0|72|Character|0|9 +001012|directionOfMotionOfMovingObservingPlatform|long|DIRECTION OF MOTION OF MOVING OBSERVING PLATFORM|deg|0|0|9|deg|0|3 +001013|movingObservingPlatformSpeed|long|SPEED OF MOTION OF MOVING OBSERVING PLATFORM|m/s|0|0|10|m/s|0|3 +001014|platformDriftSpeed|double|PLATFORM DRIFT SPEED (HIGH PRECISION)|m/s|2|0|10|m/s|2|4 +001015|stationOrSiteName|string|STATION OR SITE NAME|CCITT IA5|0|0|160|Character|0|20 +001016|satelliteSubIdentifier|long|SATELLITE SUB-IDENTIFIER|Numeric|0|0|16|Numeric|0|5 +001018|shortStationName|string|SHORT STATION OR SITE NAME|CCITT IA5|0|0|40|Character|0|5 +001019|longStationName|string|LONG STATION OR SITE NAME|CCITT IA5|0|0|256|Character|0|32 +001020|wmoRegionSubArea|long|WMO REGION SUB-AREA|Numeric|0|0|4|Numeric|0|2 +001021|synopticFeatureIdentifier|long|SYNOPTIC FEATURE IDENTIFIER|Numeric|0|0|14|Numeric|0|4 +001022|featureName|string|NAME OF FEATURE|CCITT IA5|0|0|224|Character|0|28 +001023|observationSequenceNumber|long|OBSERVATION SEQUENCE NUMBER|Numeric|0|0|9|Numeric|0|3 +001024|windSpeedSource|table|WIND SPEED SOURCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +001025|stormIdentifier|string|STORM IDENTIFIER|CCITT IA5|0|0|24|Character|0|3 +001026|stormName|string|WMO STORM NAME|CCITT IA5|0|0|64|Character|0|8 +001027|longStormName|string|WMO LONG STORM NAME|CCITT IA5|0|0|80|Character|0|10 +001028|aerosolOpticalDepthSource|table|AEROSOL OPTICAL DEPTH (AOD) SOURCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +001029|ssiSource|table|SSI SOURCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +001030|numericalModelIdentifier|string|NUMERICAL MODEL IDENTIFIER|CCITT IA5|0|0|128|Character|0|16 +001031|centre|table|IDENTIFICATION OF ORIGINATING/GENERATING CENTRE|CODE TABLE|0|0|16|CODE TABLE|0|5 +001032|generatingApplication|table|GENERATING APPLICATION|CODE TABLE defined by originating/generating centre|0|0|8|CODE TABLE|0|3 +001033|centre|table|IDENTIFICATION OF ORIGINATING/GENERATING CENTRE|Common CODE TABLE C-1|0|0|8|Common CODE TABLE C-1|0|3 +001034|subCentre|table|IDENTIFICATION OF ORIGINATING/GENERATING SUB-CENTRE|Common CODE TABLE C-12|0|0|8|Common CODE TABLE C-12|0|3 +001035|centre|table|ORIGINATING CENTRE|Common CODE TABLE C-11|0|0|16|Common CODE TABLE C-11|0|5 +001036|agencyInChargeOfOperatingObservingPlatform|table|AGENCY IN CHARGE OF OPERATING THE OBSERVING PLATFORM|CODE TABLE|0|0|20|CODE TABLE|0|7 +001037|sigmetSequenceIdentifier|string|SIGMET SEQUENCE IDENTIFIER|CCITT IA5|0|0|24|Character|0|3 +001038|sourceOfSeaIceFraction|table|SOURCE OF SEA ICE FRACTION|CODE TABLE|0|0|5|CODE TABLE|0|2 +001039|graphicalAreaForecastSequenceIdentifier|string|GRAPHICAL AREA FORECAST (GFA) SEQUENCE IDENTIFIER|CCITT IA5|0|0|40|Character|0|5 +001040|processingCentreIdCode|string|PROCESSING CENTRE ID CODE|CCITT IA5|0|0|48|Character|0|6 +001041|absolutePlatformVelocityFirstComponent|double|ABSOLUTE PLATFORM VELOCITY - FIRST COMPONENT|m/s|5|-1073741824|31|m/s|5|10 +001042|absolutePlatformVelocitySecondComponent|double|ABSOLUTE PLATFORM VELOCITY - SECOND COMPONENT|m/s|5|-1073741824|31|m/s|5|10 +001043|absolutePlatformVelocityThirdComponent|double|ABSOLUTE PLATFORM VELOCITY - THIRD COMPONENT|m/s|5|-1073741824|31|m/s|5|10 +001044|standardGeneratingApplication|table|STANDARD GENERATING APPLICATION|CODE TABLE|0|0|8|CODE TABLE|0|3 +001050|platformTransmitterIdNumber|long|PLATFORM TRANSMITTER ID NUMBER|Numeric|0|0|17|Numeric|0|6 +001051|platformTransmitterIdNumber|string|PLATFORM TRANSMITTER ID NUMBER|CCITT IA5|0|0|96|Character|0|12 +001052|platformTransmitterId|table|PLATFORM TRANSMITTER ID|CODE TABLE|0|0|3|CODE TABLE|0|1 +001053|tsunameterReportSequenceNumber|long|TSUNAMETER REPORT SEQUENCE NUMBER TRIGGERED BY A TSUNAMI EVENT|Numeric|0|0|7|Numeric|0|2 +001060|aircraftReportingPointBeaconIdentifier|string|AIRCRAFT REPORTING POINT (BEACON IDENTIFIER)|CCITT IA5|0|0|64|Character|0|8 +001062|shortIcaoLocationIndicator|string|SHORT ICAO LOCATION INDICATOR|CCITT IA5|0|0|32|Character|0|4 +001063|icaoLocationIndicator|string|ICAO LOCATION INDICATOR|CCITT IA5|0|0|64|Character|0|8 +001064|runwayDesignator|string|RUNWAY DESIGNATOR|CCITT IA5|0|0|32|Character|0|4 +001065|icaoRegionIdentifier|string|ICAO REGION IDENTIFIER|CCITT IA5|0|0|256|Character|0|32 +001075|tideStationIdentification|string|TIDE STATION IDENTIFICATION|CCITT IA5|0|0|40|Character|0|5 +001079|uniqueIdentifierForProfile|string|UNIQUE IDENTIFIER FOR THE PROFILE|CCITT IA5|0|0|64|Character|0|8 +001080|shipLineNumberAccordingToSoop|string|SHIP LINE NUMBER ACCORDING TO SOOP|CCITT IA5|0|0|32|Character|0|4 +001081|radiosondeSerialNumber|string|RADIOSONDE SERIAL NUMBER|CCITT IA5|0|0|160|Character|0|20 +001082|radiosondeAscensionNumber|long|RADIOSONDE ASCENSION NUMBER|Numeric|0|0|14|Numeric|0|4 +001083|radiosondeReleaseNumber|long|RADIOSONDE RELEASE NUMBER|Numeric|0|0|3|Numeric|0|1 +001085|observingPlatformManufacturerModel|string|OBSERVING PLATFORM MANUFACTURER'S MODEL|CCITT IA5|0|0|160|Character|0|20 +001086|observingPlatformManufacturerSerialNumber|string|OBSERVING PLATFORM MANUFACTURER'S SERIAL NUMBER|CCITT IA5|0|0|256|Character|0|32 +001087|marineObservingPlatformIdentifier|long|WMO MARINE OBSERVING PLATFORM EXTENDED IDENTIFIER|Numeric|0|0|23|Numeric|0|7 +001090|techniqueForMakingUpInitialPerturbations|table|TECHNIQUE FOR MAKING UP INITIAL PERTURBATIONS|CODE TABLE|0|0|8|CODE TABLE|0|3 +001091|ensembleMemberNumber|long|ENSEMBLE MEMBER NUMBER|Numeric|0|0|10|Numeric|0|4 +001092|ensembleForecastType|table|TYPE OF ENSEMBLE FORECAST|CODE TABLE|0|0|8|CODE TABLE|0|3 +001093|balloonLotNumber|string|BALLOON LOT NUMBER|CCITT IA5|0|0|96|Character|0|12 +001094|wbanNumber|long|WBAN NUMBER|Numeric|0|0|17|Numeric|0|5 +001095|observerIdentification|string|OBSERVER IDENTIFICATION|CCITT IA5|0|0|32|Character|0|4 +001096|stationAcquisition|string|STATION ACQUISITION|CCITT IA5|0|0|160|Character|0|20 +001099|uniqueProductDefinition|string|UNIQUE PRODUCT DEFINITION|CCITT IA5|0|0|248|Character|0|31 +001101|stateIdentifier|table|STATE IDENTIFIER|CODE TABLE|0|0|10|CODE TABLE|0|3 +001102|nationalStationNumber|long|NATIONAL STATION NUMBER|Numeric|0|0|30|Numeric|0|9 +001103|imoNumber|long|IMO NUMBER. UNIQUE LLOYD'S REGISTER|Numeric|0|0|24|Numeric|0|7 +001104|stateOrFederalStateIdentifier|string|STATE/FEDERAL STATE IDENTIFIER|CCITT IA5|0|0|32|Character|0|4 +001105|highwayDesignator|string|HIGHWAY DESIGNATOR|CCITT IA5|0|0|40|Character|0|5 +001106|locationAlongHighwayAsIndicatedByPositionMarkers|long|LOCATION ALONG HIGHWAY AS INDICATED BY POSITION MARKERS|m|-2|0|14|m|-2|5 +001110|aircraftTailNumber|string|AIRCRAFT TAIL NUMBER|CCITT IA5|0|0|48|Character|0|6 +001111|originationAirport|string|ORIGINATION AIRPORT|CCITT IA5|0|0|24|Character|0|3 +001112|destinationAirport|string|DESTINATION AIRPORT|CCITT IA5|0|0|24|Character|0|3 +001113|templateVersionNumberDefinedByOriginatingCentre|long|TEMPLATE VERSION NUMBER DEFINED BY ORIGINATING CENTRE|Numeric|1|0|9|Numeric|1|3 +001114|encryptedStationIdentifierBase64Encoding|string|ENCRYPTED SHIP OR MOBILE LAND STATION IDENTIFIER (BASE64 ENCODING)|CCITT IA5|0|0|352|Character|0|44 +001115|identifierOfTheCruiseOrMission|string|IDENTIFIER OF THE CRUISE OR MISSION UNDER WHICH THE DATA WERE COLLECTED|CCITT IA5|0|0|160|Character|0|20 +001124|gridPointIdentifier|long|GRID POINT IDENTIFIER|Numeric|0|0|24|Numeric|0|8 +001125|wigosIdentifierSeries|long|WIGOS IDENTIFIER SERIES|Numeric|0|0|4|Numeric|0|2 +001126|wigosIssuerOfIdentifier|long|WIGOS ISSUER OF IDENTIFIER|Numeric|0|0|16|Numeric|0|5 +001127|wigosIssueNumber|long|WIGOS ISSUE NUMBER|Numeric|0|0|16|Numeric|0|5 +001128|wigosLocalIdentifierCharacter|string|WIGOS LOCAL IDENTIFIER (CHARACTER)|CCITT IA5|0|0|128|Character|0|16 +001144|snapshotIdentifier|long|SNAPSHOT IDENTIFIER|Numeric|0|0|31|Numeric|0|10 +001145|lightSourceIdentifier|long|LIGHT SOURCE IDENTIFIER|Numeric|0|-8|20|Numeric|0|7 +001150|coordinateReferenceSystem|table|COORDINATE REFERENCE SYSTEM|CODE TABLE|0|0|16|CODE TABLE|0|5 +001151|fixedMeanSeaLevelReferenceDatum|table|FIXED MEAN SEA-LEVEL REFERENCE DATUM|CODE TABLE|0|0|12|CODE TABLE|0|4 +001152|semiMajorAxisOfRotationEllipsoid|double|SEMI-MAJOR AXIS OF ROTATION ELLIPSOID|m|2|0|31|m|2|11 +001153|semiMinorAxisOfRotationEllipsoid|double|SEMI-MINOR AXIS OF ROTATION ELLIPSOID|m|2|0|31|m|2|11 +001154|sensorIdentifier|long|SENSOR IDENTIFIER|Numeric|0|0|12|Numeric|0|4 +001155|retrievalIdentifier|table|RETRIEVAL IDENTIFIER|CODE TABLE|0|0|8|CODE TABLE|0|3 +002001|stationType|table|TYPE OF STATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002002|instrumentationForWindMeasurement|flag|TYPE OF INSTRUMENTATION FOR WIND MEASUREMENT|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +002003|measuringEquipmentType|table|TYPE OF MEASURING EQUIPMENT USED|CODE TABLE|0|0|4|CODE TABLE|0|2 +002004|typeOfInstrumentationForEvaporationMeasurement|table|TYPE OF INSTRUMENTATION FOR EVAPORATION MEASUREMENT OR TYPE OF CROP FOR WHICH EVAPOTRANSPIRATION IS REPORTED|CODE TABLE|0|0|4|CODE TABLE|0|2 +002005|temperatureObservationPrecision|double|PRECISION OF TEMPERATURE OBSERVATION|K|2|0|7|K|2|3 +002006|upperAirRemoteSensingInstrumentType|table|UPPER AIR REMOTE SENSING INSTRUMENT TYPE|CODE TABLE|0|0|6|CODE TABLE|0|0 +002007|sensorForWaterLevelMeasuringInstrumentType|table|TYPE OF SENSOR FOR WATER LEVEL MEASURING INSTRUMENT|CODE TABLE|0|0|6|CODE TABLE|0|2 +002008|typeOfOffshorePlatform|table|TYPE OF OFFSHORE PLATFORM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002009|modisAerosolAlgorithm|table|MODIS AEROSOL ALGORITHM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002011|radiosondeType|table|RADIOSONDE TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +002012|radiosondeComputationalMethod|table|RADIOSONDE COMPUTATIONAL METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002013|solarAndInfraredRadiationCorrection|table|SOLAR AND INFRARED RADIATION CORRECTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002014|trackingTechniqueOrStatusOfSystem|table|TRACKING TECHNIQUE/STATUS OF SYSTEM USED|CODE TABLE|0|0|7|CODE TABLE|0|3 +002015|radiosondeCompleteness|table|RADIOSONDE COMPLETENESS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002016|radiosondeConfiguration|flag|RADIOSONDE CONFIGURATION|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +002017|correctionAlgorithmsForHumidityMeasurements|table|CORRECTION ALGORITHMS FOR HUMIDITY MEASUREMENTS|CODE TABLE|0|0|5|CODE TABLE|0|2 +002019|satelliteInstruments|table|SATELLITE INSTRUMENTS|CODE TABLE|0|0|11|CODE TABLE|0|4 +002020|satelliteClassification|table|SATELLITE CLASSIFICATION|CODE TABLE|0|0|9|CODE TABLE|0|3 +002021|satelliteInstrumentDataUsedInProcessing|flag|SATELLITE INSTRUMENT DATA USED IN PROCESSING|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +002022|satelliteDataProcessingTechnique|flag|SATELLITE DATA-PROCESSING TECHNIQUE USED|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +002023|satelliteDerivedWindComputationMethod|table|SATELLITE-DERIVED WIND COMPUTATION METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002024|meanHumidityComputationalMethod|table|INTEGRATED MEAN HUMIDITY COMPUTATIONAL METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002025|satelliteChannelsUsedInComputation|flag|SATELLITE CHANNEL(S) USED IN COMPUTATION|FLAG TABLE|0|0|25|FLAG TABLE|0|9 +002026|crossTrackResolution|double|CROSS-TRACK RESOLUTION|m|2|0|12|m|2|4 +002027|alongTrackResolution|double|ALONG-TRACK RESOLUTION|m|2|0|12|m|2|4 +002028|segmentSizeAtNadirInXDirection|long|SEGMENT SIZE AT NADIR IN X-DIRECTION|m|0|0|18|m|0|6 +002029|segmentSizeAtNadirInYDirection|long|SEGMENT SIZE AT NADIR IN Y-DIRECTION|m|0|0|18|m|0|6 +002030|methodOfCurrentMeasurement|table|METHOD OF CURRENT MEASUREMENT|CODE TABLE|0|0|3|CODE TABLE|0|1 +002031|durationAndTimeOfCurrentMeasurement|table|DURATION AND TIME OF CURRENT MEASUREMENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +002032|indicatorForDigitization|table|INDICATOR FOR DIGITIZATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002033|methodOfSalinityOrDepthMeasurement|table|METHOD OF SALINITY/DEPTH MEASUREMENT|CODE TABLE|0|0|3|CODE TABLE|0|1 +002034|drogueType|table|DROGUE TYPE|CODE TABLE|0|0|5|CODE TABLE|0|2 +002035|cableLength|long|CABLE LENGTH|m|0|0|9|m|0|3 +002036|buoyType|table|BUOY TYPE|CODE TABLE|0|0|2|CODE TABLE|0|1 +002037|methodOfTidalObservation|table|METHOD OF TIDAL OBSERVATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +002038|methodOfWaterTemperatureAndOrOrSalinityMeasurement|table|METHOD OF WATER TEMPERATURE AND/OR SALINITY MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002039|methodOfWetBulbTemperatureMeasurement|table|METHOD OF WET-BULB TEMPERATURE MEASUREMENT|CODE TABLE|0|0|3|CODE TABLE|0|1 +002040|methodOfRemovingVelocityAndMotionOfPlatformFromCurrent|table|METHOD OF REMOVING VELOCITY AND MOTION OF PLATFORM FROM CURRENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002041|methodForEstimatingReportsRelatedToSynopticFeatures|table|METHOD FOR ESTIMATING REPORTS RELATED TO SYNOPTIC FEATURES|CODE TABLE|0|0|6|CODE TABLE|0|2 +002042|indicatorForSeaSurfaceCurrentSpeed|table|INDICATOR FOR SEA-SURFACE CURRENT SPEED|CODE TABLE|0|0|2|CODE TABLE|0|1 +002044|indicatorForMethodOfCalculatingSpectralWaveData|table|INDICATOR FOR METHOD OF CALCULATING SPECTRAL WAVE DATA|CODE TABLE|0|0|4|CODE TABLE|0|2 +002045|platformType|table|INDICATOR FOR TYPE OF PLATFORM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002046|waveMeasurementInstrumentation|table|WAVE MEASUREMENT INSTRUMENTATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002047|deepOceanTsunameterType|table|DEEP-OCEAN TSUNAMETER TYPE|CODE TABLE|0|0|7|CODE TABLE|0|2 +002048|satelliteSensorIndicator|table|SATELLITE SENSOR INDICATOR|CODE TABLE|0|0|4|CODE TABLE|0|2 +002049|geostationarySatelliteDataProcessingTechnique|flag|GEOSTATIONARY SATELLITE DATA-PROCESSING TECHNIQUE USED|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +002050|geostationarySounderSatelliteChannels|flag|GEOSTATIONARY SOUNDER SATELLITE CHANNELS USED|FLAG TABLE|0|0|20|FLAG TABLE|0|7 +002051|indicatorToSpecifyObservingMethodForExtremeTemperatures|table|INDICATOR TO SPECIFY OBSERVING METHOD FOR EXTREME TEMPERATURES|CODE TABLE|0|0|4|CODE TABLE|0|2 +002052|geostationaryImagerSatelliteChannels|flag|GEOSTATIONARY IMAGER SATELLITE CHANNELS USED|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +002053|goesBrightnessTemperatureCharacteristics|table|GOES-I/M BRIGHTNESS TEMPERATURE CHARACTERISTICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002054|goesSoundingsParameter|table|GOES-I/M SOUNDINGS PARAMETER CHARACTERISTICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002055|geostationarySoundingsStatisticalParameters|table|GEOSTATIONARY SOUNDINGS STATISTICAL PARAMETERS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002056|geostationarySoundingsAccuracyStatistics|table|GEOSTATIONARY SOUNDINGS ACCURACY STATISTICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002057|originOfFirstGuessInformationForGoesIOrMSoundings|table|ORIGIN OF FIRST-GUESS INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002058|validTimesOfFirstGuessInformationForGoesIOrMSoundings|table|VALID TIMES OF FIRST-GUESS INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002059|originOfAnalysisInformationForGoesIOrMSoundings|table|ORIGIN OF ANALYSIS INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002060|originOfSurfaceInformationForGoesIOrMSoundings|table|ORIGIN OF SURFACE INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002061|aircraftNavigationalSystem|table|AIRCRAFT NAVIGATIONAL SYSTEM|CODE TABLE|0|0|3|CODE TABLE|0|1 +002062|aircraftDataRelaySystemType|table|TYPE OF AIRCRAFT DATA RELAY SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002063|aircraftRollAngle|double|AIRCRAFT ROLL ANGLE|deg|2|-18000|16|deg|2|5 +002064|aircraftRollAngleQuality|table|AIRCRAFT ROLL ANGLE QUALITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +002065|acarsGroundReceivingStation|string|ACARS GROUND-RECEIVING STATION|CCITT IA5|0|0|40|Character|0|5 +002066|radiosondeGroundReceivingSystem|table|RADIOSONDE GROUND RECEIVING SYSTEM|CODE TABLE|0|0|6|CODE TABLE|0|2 +002067|radiosondeOperatingFrequency|long|RADIOSONDE OPERATING FREQUENCY|Hz|-5|0|15|Hz|-5|5 +002070|originalSpecificationOfLatitudeOrLongitude|table|ORIGINAL SPECIFICATION OF LATITUDE/LONGITUDE|CODE TABLE|0|0|4|CODE TABLE|0|2 +002071|spectrographicWavelength|double|SPECTROGRAPHIC WAVELENGTH|m|13|0|30|m|13|10 +002072|spectrographicWidth|double|SPECTROGRAPHIC WIDTH|m|13|0|30|m|13|10 +002080|balloonManufacturer|table|BALLOON MANUFACTURER|CODE TABLE|0|0|6|CODE TABLE|0|2 +002081|balloonType|table|TYPE OF BALLOON|CODE TABLE|0|0|5|CODE TABLE|0|2 +002082|weightOfBalloon|double|WEIGHT OF BALLOON|kg|3|0|12|kg|3|4 +002083|balloonShelterType|table|TYPE OF BALLOON SHELTER|CODE TABLE|0|0|4|CODE TABLE|0|2 +002084|typeOfGasUsedInBalloon|table|TYPE OF GAS USED IN BALLOON|CODE TABLE|0|0|4|CODE TABLE|0|2 +002085|amountOfGasUsedInBalloon|double|AMOUNT OF GAS USED IN BALLOON|kg|3|0|13|kg|3|4 +002086|balloonFlightTrainLength|double|BALLOON FLIGHT TRAIN LENGTH|m|1|0|10|m|1|4 +002087|parachuteSurfaceArea|double|PARACHUTE SURFACE AREA|m2|4|0|15|m2|4|5 +002088|volumeOfGasUsedInBalloon|double|VOLUME OF GAS USED IN BALLOON|m3|3|0|13|m3|3|4 +002090|instrumentWavelength|double|INSTRUMENT WAVELENGTH|m|9|0|16|m|9|5 +002091|entrySensor4Or20Ma|double|ENTRY SENSOR 4/20 MA|A|4|0|10|A|4|3 +002092|ozoneProfileComputationMethod|table|OZONE PROFILE COMPUTATION METHOD|CODE TABLE|0|0|3|CODE TABLE|0|1 +002095|pressureSensorType|table|TYPE OF PRESSURE SENSOR|CODE TABLE|0|0|5|CODE TABLE|0|2 +002096|temperatureSensorType|table|TYPE OF TEMPERATURE SENSOR|CODE TABLE|0|0|5|CODE TABLE|0|2 +002097|humiditySensorType|table|TYPE OF HUMIDITY SENSOR|CODE TABLE|0|0|5|CODE TABLE|0|2 +002099|polarization|table|POLARIZATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +002100|radarConstant|double|RADAR CONSTANT|dB|1|0|12|dB|1|4 +002101|antennaType|table|TYPE OF ANTENNA|CODE TABLE|0|0|4|CODE TABLE|0|2 +002102|antennaHeightAboveTowerBase|long|ANTENNA HEIGHT ABOVE TOWER BASE|m|0|0|8|m|0|3 +002103|radome|flag|RADOME|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +002104|antennaPolarization|table|ANTENNA POLARIZATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002105|maximumAntennaGain|long|MAXIMUM ANTENNA GAIN|dB|0|0|6|dB|0|2 +002106|3DbBeamwidth|double|3-DB BEAMWIDTH|deg|1|0|6|deg|1|2 +002107|sidelobeSuppression|long|SIDELOBE SUPPRESSION|dB|0|0|6|dB|0|2 +002108|crosspolDiscriminationOnAxis|long|CROSSPOL DISCRIMINATION (ON AXIS)|dB|0|0|6|dB|0|2 +002109|antennaSpeedAzimuth|double|ANTENNA SPEED (AZIMUTH)|deg/s|2|0|12|deg/s|2|4 +002110|antennaSpeedElevation|double|ANTENNA SPEED (ELEVATION)|deg/s|2|0|12|deg/s|2|4 +002111|radarIncidenceAngle|double|RADAR INCIDENCE ANGLE|deg|1|0|10|deg|1|4 +002112|radarLookAngle|double|RADAR LOOK ANGLE|deg|1|0|12|deg|1|4 +002113|numberOfAzimuthLooks|long|NUMBER OF AZIMUTH LOOKS|Numeric|0|0|4|Numeric|0|2 +002114|antennaEffectiveSurfaceArea|long|ANTENNA EFFECTIVE SURFACE AREA|m2|0|0|15|m2|0|5 +002115|surfaceObservingEquipmentType|table|TYPE OF SURFACE OBSERVING EQUIPMENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +002116|percentageOf320MhzBandProcessed|long|PERCENTAGE OF 320 MHZ BAND PROCESSED|%|0|0|7|%|0|3 +002117|percentageOf80MhzBandProcessed|long|PERCENTAGE OF 80 MHZ BAND PROCESSED|%|0|0|7|%|0|3 +002118|percentageOf20MhzBandProcessed|long|PERCENTAGE OF 20 MHZ BAND PROCESSED|%|0|0|7|%|0|3 +002119|ra2InstrumentOperations|table|RA-2 INSTRUMENT OPERATIONS|CODE TABLE|0|0|3|CODE TABLE|0|1 +002120|oceanWaveFrequency|double|OCEAN WAVE FREQUENCY|Hz|3|0|10|Hz|3|4 +002121|meanFrequency|long|MEAN FREQUENCY|Hz|-8|0|7|Hz|-8|3 +002122|frequencyAgilityRange|long|FREQUENCY AGILITY RANGE|Hz|-6|-128|8|Hz|-6|3 +002123|peakPower|long|PEAK POWER|W|-4|0|7|W|-4|3 +002124|averagePower|long|AVERAGE POWER|W|-1|0|7|W|-1|3 +002125|pulseRepetitionFrequency|long|PULSE REPETITION FREQUENCY|Hz|-1|0|8|Hz|-1|3 +002126|pulseWidth|double|PULSE WIDTH|s|7|0|6|s|7|2 +002127|receiverIntermediateFrequency|long|RECEIVER INTERMEDIATE FREQUENCY|Hz|-6|0|7|Hz|-6|3 +002128|intermediateFrequencyBandwidth|long|INTERMEDIATE FREQUENCY BANDWIDTH|Hz|-5|0|6|Hz|-5|2 +002129|minimumDetectableSignal|long|MINIMUM DETECTABLE SIGNAL|dB|0|-150|5|dB|0|3 +002130|dynamicRange|long|DYNAMIC RANGE|dB|0|0|7|dB|0|3 +002131|sensitivityTimeControl|flag|SENSITIVITY TIME CONTROL (STC)|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +002132|azimuthPointingAccuracy|double|AZIMUTH POINTING ACCURACY|deg|2|0|6|deg|2|2 +002133|elevationPointingAccuracy|double|ELEVATION POINTING ACCURACY|deg|2|0|6|deg|2|2 +002134|antennaBeamAzimuth|double|ANTENNA BEAM AZIMUTH|deg|2|0|16|deg|2|5 +002135|antennaElevation|double|ANTENNA ELEVATION|deg|2|-9000|15|deg|2|5 +002136|rangeProcessedByRangeAttenuationCorrection|long|RANGE PROCESSED BY RANGE ATTENUATION CORRECTION|m|-3|0|16|m|-3|5 +002137|radarDualPrfRatio|table|RADAR DUAL PRF RATIO|CODE TABLE|0|0|4|CODE TABLE|0|2 +002138|antennaRotationDirection|table|ANTENNA ROTATION DIRECTION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002139|siralInstrumentConfiguration|table|SIRAL INSTRUMENT CONFIGURATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002140|satelliteRadarBeamAzimuthAngle|long|SATELLITE RADAR BEAM AZIMUTH ANGLE|deg|0|0|9|deg|0|3 +002141|measurementType|string|MEASUREMENT TYPE|CCITT IA5|0|0|24|Character|0|3 +002142|ozoneInstrument|string|OZONE INSTRUMENT SERIAL NUMBER/IDENTIFICATION|CCITT IA5|0|0|32|Character|0|4 +002143|ozoneInstrumentType|table|OZONE INSTRUMENT TYPE|CODE TABLE|0|0|7|CODE TABLE|0|3 +002144|lightSourceTypeForBrewerSpectrophotometer|table|LIGHT SOURCE TYPE FOR BREWER SPECTROPHOTOMETER|CODE TABLE|0|0|4|CODE TABLE|0|2 +002145|wavelengthSettingForDobsonInstruments|table|WAVELENGTH SETTING FOR DOBSON INSTRUMENTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002146|sourceConditionsForDobsonInstruments|table|SOURCE CONDITIONS FOR DOBSON INSTRUMENTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002147|methodOfTransmissionToCollectionCentre|table|METHOD OF TRANSMISSION TO COLLECTION CENTRE|CODE TABLE|0|0|6|CODE TABLE|0|2 +002148|dataCollectionLocationSystem|table|DATA COLLECTION AND/OR LOCATION SYSTEM|CODE TABLE|0|0|5|CODE TABLE|0|2 +002149|dataBuoyType|table|TYPE OF DATA BUOY|CODE TABLE|0|0|6|CODE TABLE|0|2 +002150|tovsOrAtovsOrAvhrrInstrumentationChannelNumber|table|TOVS/ATOVS/AVHRR INSTRUMENTATION CHANNEL NUMBER|CODE TABLE|0|0|6|CODE TABLE|0|2 +002151|radiometerIdentifier|table|RADIOMETER IDENTIFIER|CODE TABLE|0|0|11|CODE TABLE|0|4 +002152|satelliteInstrumentUsedInDataProcessing|flag|SATELLITE INSTRUMENT USED IN DATA PROCESSING|FLAG TABLE|0|0|31|FLAG TABLE|0|10 +002153|satelliteChannelCentreFrequency|long|SATELLITE CHANNEL CENTRE FREQUENCY|Hz|-8|0|26|Hz|-8|8 +002154|satelliteChannelBandWidth|long|SATELLITE CHANNEL BAND WIDTH|Hz|-8|0|26|Hz|-8|8 +002155|satelliteChannelWavelength|double|SATELLITE CHANNEL WAVELENGTH|m|9|0|16|m|9|5 +002156|percentageOfValidKuOceanRetrackerMeasurements|long|PERCENTAGE OF VALID KU OCEAN RETRACKER MEASUREMENTS|%|0|0|7|%|0|3 +002157|percentageOfValidSOceanRetrackerMeasurements|long|PERCENTAGE OF VALID S OCEAN RETRACKER MEASUREMENTS|%|0|0|7|%|0|3 +002158|ra2Instrument|flag|RA-2 INSTRUMENT|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +002159|mwrInstrument|flag|MWR INSTRUMENT|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +002160|radarWaveLength|table|WAVELENGTH OF THE RADAR|CODE TABLE|0|0|4|CODE TABLE|0|2 +002161|windProcessingMethod|flag|WIND PROCESSING METHOD|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +002162|extendedHeightAssignmentMethod|table|EXTENDED HEIGHT ASSIGNMENT METHOD|CODE TABLE|0|0|6|CODE TABLE|0|2 +002163|heightAssignmentMethod|table|HEIGHT ASSIGNMENT METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002164|tracerCorrelationMethod|table|TRACER CORRELATION METHOD|CODE TABLE|0|0|3|CODE TABLE|0|1 +002165|radianceTypeFlags|flag|RADIANCE TYPE FLAGS|FLAG TABLE|0|0|15|FLAG TABLE|0|5 +002166|radianceType|table|RADIANCE TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +002167|radianceComputationalMethod|table|RADIANCE COMPUTATIONAL METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002168|hydrostaticPressureOfLowerEndOfCableThermistorString|long|HYDROSTATIC PRESSURE OF LOWER END OF CABLE (THERMISTOR STRING)|Pa|-3|0|16|kPa|0|5 +002169|anemometerType|table|ANEMOMETER TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +002170|aircraftHumiditySensors|table|AIRCRAFT HUMIDITY SENSORS|CODE TABLE|0|0|6|CODE TABLE|0|2 +002171|instrumentSerialNumberForWaterTemperatureProfile|string|INSTRUMENT SERIAL NUMBER FOR WATER TEMPERATURE PROFILE MEASUREMENT|CCITT IA5|0|0|64|Character|0|8 +002172|productTypeForRetrievedAtmosphericGases|table|PRODUCT TYPE FOR RETRIEVED ATMOSPHERIC GASES|CODE TABLE|0|0|8|CODE TABLE|0|3 +002173|squareOfOffNadirAngle|double|SQUARE OF THE OFF-NADIR ANGLE|deg2|4|0|10|deg2|4|4 +002174|meanAcrossTrackPixelNumber|long|MEAN ACROSS TRACK PIXEL NUMBER|Numeric|0|0|9|Numeric|0|3 +002175|methodOfPrecipitationMeasurement|table|METHOD OF PRECIPITATION MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002176|methodOfStateOfGroundMeasurement|table|METHOD OF STATE OF GROUND MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002177|methodOfSnowDepthMeasurement|table|METHOD OF SNOW DEPTH MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002178|methodOfLiquidContentMeasurementOfPrecipitation|table|METHOD OF LIQUID CONTENT MEASUREMENT OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002179|skyConditionAlgorithmType|table|TYPE OF SKY CONDITION ALGORITHM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002180|mainPresentWeatherDetectingSystem|table|MAIN PRESENT WEATHER DETECTING SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002181|supplementaryPresentWeatherSensor|flag|SUPPLEMENTARY PRESENT WEATHER SENSOR|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +002182|visibilityMeasurementSystem|table|VISIBILITY MEASUREMENT SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002183|cloudDetectionSystem|table|CLOUD DETECTION SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002184|lightningDetectionSensorType|table|TYPE OF LIGHTNING DETECTION SENSOR|CODE TABLE|0|0|4|CODE TABLE|0|2 +002185|methodOfEvaporationMeasurement|table|METHOD OF EVAPORATION MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002186|capabilityToDetectPrecipitationPhenomena|flag|CAPABILITY TO DETECT PRECIPITATION PHENOMENA|FLAG TABLE|0|0|30|FLAG TABLE|0|10 +002187|capabilityToDetectOtherWeatherPhenomena|flag|CAPABILITY TO DETECT OTHER WEATHER PHENOMENA|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +002188|capabilityToDetectObscuration|flag|CAPABILITY TO DETECT OBSCURATION|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +002189|capabilityToDiscriminateLightningStrikes|flag|CAPABILITY TO DISCRIMINATE LIGHTNING STRIKES|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +002190|lagrangianDrifterSubmergenceTimeSubmerged|long|LAGRANGIAN DRIFTER SUBMERGENCE (% TIME SUBMERGED)|%|0|0|7|%|0|3 +002191|geopotentialHeightCalculation|table|GEOPOTENTIAL HEIGHT CALCULATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +003001|surfaceStationType|table|SURFACE STATION TYPE|CODE TABLE|0|0|5|CODE TABLE|0|2 +003003|thermometerOrHygrometerHousing|table|THERMOMETER/HYGROMETER HOUSING|CODE TABLE|0|0|4|CODE TABLE|0|2 +003004|typeOfScreenOrShelterOrRadiationShield|table|TYPE OF SCREEN/SHELTER/RADIATION SHIELD|CODE TABLE|0|0|4|CODE TABLE|0|2 +003005|horizontalWidthOfScreenOrShieldX|double|HORIZONTAL WIDTH OF SCREEN OR SHIELD (X)|m|3|0|16|m|3|5 +003006|horizontalDepthOfScreenOrShieldY|double|HORIZONTAL DEPTH OF SCREEN OR SHIELD (Y)|m|3|0|16|m|3|5 +003007|verticalHeightOfScreenOrShieldZ|double|VERTICAL HEIGHT OF SCREEN OR SHIELD (Z)|m|3|0|16|m|3|5 +003008|artificiallyVentilatedScreenOrShield|table|ARTIFICIALLY VENTILATED SCREEN OR SHIELD|CODE TABLE|0|0|3|CODE TABLE|0|1 +003009|amountOfForcedVentilationAtTimeOfReading|double|AMOUNT OF FORCED VENTILATION AT TIME OF READING|m/s|1|0|9|m/s|1|3 +003010|methodOfSeaOrWaterCurrentMeasurement|table|METHOD OF SEA/WATER CURRENT MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +003011|methodOfDepthCalculation|table|METHOD OF DEPTH CALCULATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +003012|instrumentTypeOrSensorForDissolvedOxygenMeasurement|table|INSTRUMENT TYPE/SENSOR FOR DISSOLVED OXYGEN MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +003016|positionOfRoadSensors|table|POSITION OF ROAD SENSORS|CODE TABLE|0|0|4|CODE TABLE|0|2 +003017|extendedTypeOfStation|flag|EXTENDED TYPE OF STATION|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +003018|typeOfRoad|table|TYPE OF ROAD|CODE TABLE|0|0|5|CODE TABLE|0|2 +003019|typeOfConstruction|table|TYPE OF CONSTRUCTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +003020|materialForThermometerOrHygrometerHousing|table|MATERIAL FOR THERMOMETER/HYGROMETER HOUSING|CODE TABLE|0|0|3|CODE TABLE|0|1 +003021|hygrometerHeating|table|HYGROMETER HEATING|CODE TABLE|0|0|2|CODE TABLE|0|1 +003022|instrumentOwner|table|INSTRUMENT OWNER|CODE TABLE|0|0|3|CODE TABLE|0|1 +003023|configurationOfLouversForThermometerOrHygrometerScreen|table|CONFIGURATION OF LOUVERS FOR THERMOMETER/HYGROMETER SCREEN|CODE TABLE|0|0|3|CODE TABLE|0|1 +003024|psychrometricCoefficient|double|PSYCHROMETRIC COEFFICIENT|K-1|6|0|10|K-1|6|3 +003025|crossTrackEstimationAreaSize|long|CROSS-TRACK ESTIMATION AREA SIZE|m|0|5000|16|m|0|5 +003026|alongTrackEstimationAreaSize|long|ALONG-TRACK ESTIMATION AREA SIZE|m|0|5000|16|m|0|5 +003027|typeOfFlightRig|table|TYPE OF FLIGHT RIG|CODE TABLE|0|0|4|CODE TABLE|0|2 +003028|methodOfSnowWaterEquivalentMeasurement|table|METHOD OF SNOW WATER EQUIVALENT MEASUREMENT|CODE TABLE|0|0|6|CODE TABLE|0|2 +003029|swath|table|SWATH|CODE TABLE|0|0|3|CODE TABLE|0|1 +003030|antennaStatus|table|ANTENNA STATUS|CODE TABLE|0|0|3|CODE TABLE|0|1 +003031|channelBandwidthFullWidthHalfMaximum|double|CHANNEL BANDWIDTH, FULL WIDTH HALF MAXIMUM (FWHM)|m|11|0|16|m|11|13 +003032|channelCentreFrequency|long|CHANNEL CENTRE FREQUENCY|Hz|-6|0|26|Hz|-6|10 +003033|channelBandWidth|long|CHANNEL BAND WIDTH|Hz|-6|0|26|Hz|-6|10 +003034|channelWavelength|double|CHANNEL WAVELENGTH|m|9|0|16|m|9|5 +004001|year|long|YEAR|a|0|0|12|a|0|4 +004002|month|long|MONTH|mon|0|0|4|mon|0|2 +004003|day|long|DAY|d|0|0|6|d|0|2 +004004|hour|long|HOUR|h|0|0|5|h|0|2 +004005|minute|long|MINUTE|min|0|0|6|min|0|2 +004006|second|long|SECOND|s|0|0|6|s|0|2 +004007|secondsWithinAMinuteMicrosecond|double|SECONDS WITHIN A MINUTE (MICROSECOND ACCURACY)|s|6|0|26|s|6|8 +004011|timeIncrement|long|TIME INCREMENT|a|0|-1024|11|a|0|4 +004012|timeIncrement|long|TIME INCREMENT|mon|0|-1024|11|mon|0|4 +004013|timeIncrement|long|TIME INCREMENT|d|0|-1024|11|d|0|4 +004014|timeIncrement|long|TIME INCREMENT|h|0|-1024|11|h|0|4 +004015|timeIncrement|long|TIME INCREMENT|min|0|-2048|12|min|0|4 +004016|timeIncrement|long|TIME INCREMENT|s|0|-4096|13|s|0|4 +004017|referenceTimePeriodForAccumulatedOrExtremeData|long|REFERENCE TIME PERIOD FOR ACCUMULATED OR EXTREME DATA|min|0|-1440|12|min|0|4 +004021|timePeriod|long|TIME PERIOD OR DISPLACEMENT|a|0|-1024|11|a|0|4 +004022|timePeriod|long|TIME PERIOD OR DISPLACEMENT|mon|0|-1024|11|mon|0|4 +004023|timePeriod|long|TIME PERIOD OR DISPLACEMENT|d|0|-1024|11|d|0|4 +004024|timePeriod|long|TIME PERIOD OR DISPLACEMENT|h|0|-2048|12|h|0|4 +004025|timePeriod|long|TIME PERIOD OR DISPLACEMENT|min|0|-2048|12|min|0|4 +004026|timePeriod|long|TIME PERIOD OR DISPLACEMENT|s|0|-4096|13|s|0|4 +004031|durationOfTimeRelatingToFollowingValue|long|DURATION OF TIME RELATING TO FOLLOWING VALUE|h|0|0|8|h|0|3 +004032|durationOfTimeRelatingToFollowingValue|long|DURATION OF TIME RELATING TO FOLLOWING VALUE|min|0|0|6|min|0|2 +004041|timeDifferenceUtcLmt|long|TIME DIFFERENCE, UTC - LMT|min|0|-1440|12|min|0|4 +004043|dayOfYear|long|DAY OF THE YEAR|d|0|0|9|d|0|3 +004051|principalTimeOfDailyReadingOfMaximumTemperature|long|PRINCIPAL TIME OF DAILY READING OF MAXIMUM TEMPERATURE|h|0|0|5|h|0|2 +004052|principalTimeOfDailyReadingOfMinimumTemperature|long|PRINCIPAL TIME OF DAILY READING OF MINIMUM TEMPERATURE|h|0|0|5|h|0|2 +004053|numberOfDaysWithPrecipitationEqualToOrMoreThan1Mm|long|NUMBER OF DAYS WITH PRECIPITATION EQUAL TO OR MORE THAN 1 MM|Numeric|0|0|6|Numeric|0|2 +004059|timesOfObservationUsedToComputeReportedMeanValues|flag|TIMES OF OBSERVATION USED TO COMPUTE THE REPORTED MEAN VALUES|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +004065|timeIncrement|long|SHORT TIME INCREMENT|min|0|-128|8|min|0|2 +004066|timeIncrement|long|SHORT TIME INCREMENT|s|0|-128|8|s|0|2 +004073|timePeriod|long|SHORT TIME PERIOD OR DISPLACEMENT|d|0|-128|8|d|0|2 +004074|timePeriod|long|SHORT TIME PERIOD OR DISPLACEMENT|h|0|-128|8|h|0|2 +004075|timePeriod|long|SHORT TIME PERIOD OR DISPLACEMENT|min|0|-128|8|min|0|2 +004080|averagingPeriodForFollowingValue|table|AVERAGING PERIOD FOR FOLLOWING VALUE|CODE TABLE|0|0|4|CODE TABLE|0|2 +004086|timePeriod|long|LONG TIME PERIOD OR DISPLACEMENT|s|0|-8192|15|s|0|5 +005001|latitude|double|LATITUDE (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +005002|latitude|double|LATITUDE (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +005011|latitudeIncrement|double|LATITUDE INCREMENT (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +005012|latitudeIncrement|double|LATITUDE INCREMENT (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +005015|latitudeDisplacement|double|LATITUDE DISPLACEMENT (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +005016|latitudeDisplacement|double|LATITUDE DISPLACEMENT (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +005021|bearingOrAzimuth|double|BEARING OR AZIMUTH|deg|2|0|16|deg|2|5 +005022|solarAzimuth|double|SOLAR AZIMUTH|deg|2|0|16|deg|2|5 +005023|sunToSatelliteAzimuthDifference|double|SUN TO SATELLITE AZIMUTH DIFFERENCE|deg|1|-1800|12|deg|1|4 +005030|directionSpectral|long|DIRECTION (SPECTRAL)|deg|0|0|12|deg|0|4 +005031|rowNumber|long|ROW NUMBER|Numeric|0|0|12|Numeric|0|4 +005032|yOffset|double|Y OFFSET|m|2|-1073741824|31|m|2|11 +005033|pixelSizeOnHorizontal1|long|PIXEL SIZE ON HORIZONTAL - 1|m|-1|0|16|m|-1|5 +005034|alongTrackRowNumber|long|ALONG TRACK ROW NUMBER|Numeric|0|0|11|Numeric|0|4 +005035|xDimensionMaximumSize|long|MAXIMUM SIZE OF X-DIMENSION|Numeric|0|0|12|Numeric|0|4 +005036|shipTransectNumberAccordingToSoop|long|SHIP TRANSECT NUMBER ACCORDING TO SOOP|Numeric|0|0|7|Numeric|0|2 +005040|orbitNumber|long|ORBIT NUMBER|Numeric|0|0|24|Numeric|0|8 +005041|scanLineNumber|long|SCAN LINE NUMBER|Numeric|0|0|8|Numeric|0|3 +005042|channelNumber|long|CHANNEL NUMBER|Numeric|0|0|6|Numeric|0|2 +005043|fieldOfViewNumber|long|FIELD OF VIEW NUMBER|Numeric|0|0|8|Numeric|0|3 +005044|satelliteCycleNumber|long|SATELLITE CYCLE NUMBER|Numeric|0|0|11|Numeric|0|4 +005045|fieldOfRegardNumber|long|FIELD OF REGARD NUMBER|Numeric|0|0|8|Numeric|0|3 +005052|channelNumberIncrement|long|CHANNEL NUMBER INCREMENT|Numeric|0|0|5|Numeric|0|2 +005053|fieldOfViewNumberIncrement|long|FIELD OF VIEW NUMBER INCREMENT|Numeric|0|0|5|Numeric|0|2 +005060|yAngularPositionFromCentreOfGravity|double|Y ANGULAR POSITION FROM CENTRE OF GRAVITY|deg|6|-8000000|24|deg|6|8 +005061|zAngularPositionFromCentreOfGravity|double|Z ANGULAR POSITION FROM CENTRE OF GRAVITY|deg|6|-8000000|24|deg|6|8 +005063|spacecraftRoll|double|SPACECRAFT ROLL|deg|2|0|16|deg|2|5 +005064|spacecraftPitch|double|SPACECRAFT PITCH|deg|2|0|16|deg|2|5 +005066|spacecraftYaw|double|SPACECRAFT YAW|deg|2|0|16|deg|2|5 +005067|numberOfScanLines|long|NUMBER OF SCAN LINES|Numeric|0|0|8|Numeric|0|3 +005068|profileNumber|long|PROFILE NUMBER|Numeric|0|0|16|Numeric|0|5 +005069|receiverChannel|table|RECEIVER CHANNEL|CODE TABLE|0|0|2|CODE TABLE|0|1 +005070|observationIdentifier|long|OBSERVATION IDENTIFIER|Numeric|0|0|30|Numeric|0|10 +005071|stripmapIdentifier|long|STRIPMAP IDENTIFIER|Numeric|0|0|16|Numeric|0|5 +005072|numberOfSpectraInRangeDirection|long|NUMBER OF SPECTRA IN RANGE DIRECTION|Numeric|0|0|8|Numeric|0|3 +005073|numberOfSpectraInAzimuthalDirection|long|NUMBER OF SPECTRA IN AZIMUTHAL DIRECTION|Numeric|0|0|8|Numeric|0|3 +005074|indexInRangeDirection|long|INDEX IN RANGE DIRECTION|Numeric|0|0|8|Numeric|0|3 +005075|indexInAzimuthalDirection|long|INDEX IN AZIMUTHAL DIRECTION|Numeric|0|0|8|Numeric|0|3 +005076|solarAzimuthInInstrumentReferenceFrame|double|SOLAR AZIMUTH IN INSTRUMENT REFERENCE FRAME|deg|2|0|16|deg|2|6 +005077|subSatellitePointLatitude|double|SUB-SATELLITE POINT LATITUDE|deg|4|-900000|21|deg|4|7 +005078|hornNumber|long|HORN NUMBER|Numeric|0|0|4|Numeric|0|2 +005079|bandNumber|long|BAND NUMBER|Numeric|0|0|6|Numeric|0|2 +005080|resolutionRadius|long|RESOLUTION RADIUS|m|-3|0|6|m|-3|2 +006001|longitude|double|LONGITUDE (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +006002|longitude|double|LONGITUDE (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +006011|longitudeIncrement|double|LONGITUDE INCREMENT (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +006012|longitudeIncrement|double|LONGITUDE INCREMENT (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +006015|longitudeDisplacement|double|LONGITUDE DISPLACEMENT (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +006016|longitudeDisplacement|double|LONGITUDE DISPLACEMENT (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +006021|distance|long|DISTANCE|m|-1|0|13|m|-1|4 +006029|waveNumber|double|WAVE NUMBER|/m|1|0|22|/m|1|7 +006030|waveNumberSpectral|double|WAVE NUMBER (SPECTRAL)|rad/m|5|0|13|rad/m|5|4 +006031|columnNumber|long|COLUMN NUMBER|Numeric|0|0|12|Numeric|0|4 +006032|xOffset|double|X OFFSET|m|2|-1073741824|31|m|2|11 +006033|pixelSizeOnHorizontal2|long|PIXEL SIZE ON HORIZONTAL - 2|m|-1|0|16|m|-1|5 +006034|crossTrackCellNumber|long|CROSS-TRACK CELL NUMBER|Numeric|0|0|7|Numeric|0|3 +006035|yDimensionMaximumSize|long|MAXIMUM SIZE OF Y-DIMENSION|Numeric|0|0|12|Numeric|0|4 +006040|radiusOfConfidence|long|RADIUS OF CONFIDENCE|m|0|0|13|m|0|4 +006041|earthScanSampleNumber|long|EARTH SCAN SAMPLE NUMBER|Numeric|0|0|11|Numeric|0|4 +006042|spaceOrMoonScanSampleNumber|long|SPACE/MOON SCAN SAMPLE NUMBER|Numeric|0|0|6|Numeric|0|2 +006043|subSatellitePointLongitude|double|SUB-SATELLITE POINT LONGITUDE|deg|4|-1800000|22|deg|4|8 +007001|heightOfStation|long|HEIGHT OF STATION|m|0|-400|15|m|0|5 +007002|height|long|HEIGHT OR ALTITUDE|m|-1|-40|16|m|-1|5 +007003|geopotential|long|GEOPOTENTIAL|m2 s-2|-1|-400|17|m2 s-2|-1|6 +007004|pressure|long|PRESSURE|Pa|-1|0|14|Pa|-1|5 +007005|heightIncrement|long|HEIGHT INCREMENT|m|0|-400|12|m|0|4 +007006|heightAboveStation|long|HEIGHT ABOVE STATION|m|0|0|15|m|0|5 +007007|height|long|HEIGHT|m|0|-1000|17|m|0|6 +007008|geopotential|long|GEOPOTENTIAL|m2 s-2|0|-10000|20|m2 s-2|0|7 +007009|geopotentialHeight|long|GEOPOTENTIAL HEIGHT|gpm|0|-1000|17|gpm|0|5 +007010|flightLevel|long|FLIGHT LEVEL|m|0|-1024|16|ft|-1|5 +007012|gridPointAltitude|double|GRID POINT ALTITUDE|m|2|-50000|20|m|2|7 +007021|elevation|double|ELEVATION|deg|2|-9000|15|deg|2|5 +007022|solarElevation|double|SOLAR ELEVATION|deg|2|-9000|15|deg|2|5 +007024|satelliteZenithAngle|double|SATELLITE ZENITH ANGLE|deg|2|-9000|15|deg|2|5 +007025|solarZenithAngle|double|SOLAR ZENITH ANGLE|deg|2|-9000|15|deg|2|5 +007026|satelliteZenithAngle|double|SATELLITE ZENITH ANGLE|deg|4|-900000|21|deg|4|7 +007030|heightOfStationGroundAboveMeanSeaLevel|double|HEIGHT OF STATION GROUND ABOVE MEAN SEA LEVEL|m|1|-4000|17|m|1|5 +007031|heightOfBarometerAboveMeanSeaLevel|double|HEIGHT OF BAROMETER ABOVE MEAN SEA LEVEL|m|1|-4000|17|m|1|5 +007032|heightOfSensorAboveLocalGroundOrDeckOfMarinePlatform|double|HEIGHT OF SENSOR ABOVE LOCAL GROUND (OR DECK OF MARINE PLATFORM)|m|2|0|16|m|2|5 +007033|heightOfSensorAboveWaterSurface|double|HEIGHT OF SENSOR ABOVE WATER SURFACE|m|1|0|12|m|1|4 +007035|zDimensionMaximumSize|long|MAXIMUM SIZE OF Z-DIMENSION|Numeric|0|0|12|Numeric|0|4 +007036|levelIndexOfZ|long|LEVEL INDEX OF Z|Numeric|0|0|12|Numeric|0|4 +007040|impactParameter|double|IMPACT PARAMETER|m|1|62000000|22|m|1|8 +007061|depthBelowLandSurface|double|DEPTH BELOW LAND SURFACE|m|2|0|14|m|2|5 +007062|depthBelowWaterSurface|double|DEPTH BELOW SEA/WATER SURFACE|m|1|0|17|m|1|6 +007063|depthBelowWaterSurface|double|DEPTH BELOW SEA/WATER SURFACE (CM)|m|2|0|20|m|2|7 +007064|representativeHeightOfSensorAboveStation|long|REPRESENTATIVE HEIGHT OF SENSOR ABOVE STATION|m|0|0|4|m|0|2 +007065|waterPressure|long|WATER PRESSURE|Pa|-3|0|17|Pa|-3|6 +007070|drogueDepth|long|DROGUE DEPTH|m|0|0|10|m|0|4 +007071|height|double|HEIGHT (HIGH RESOLUTION)|m|3|-10000000|26|m|3|8 +007072|scanAngle|double|SCAN ANGLE|deg|2|-9000|15|deg|2|6 +007073|angleBetweenMoonAndSpaceView|double|ANGLE BETWEEN MOON AND SPACE VIEW|deg|2|0|15|deg|2|5 +007074|solarElevationAngleInInstrumentReferenceFrame|double|SOLAR ELEVATION ANGLE IN INSTRUMENT REFERENCE FRAME|deg|2|-9000|15|deg|2|5 +007075|scatteringAngle|long|SCATTERING ANGLE|deg|0|0|8|deg|0|3 +007076|relativeAzimuthAngle|long|RELATIVE AZIMUTH ANGLE|deg|0|0|8|deg|0|3 +008001|verticalSoundingSignificance|flag|VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|7|FLAG TABLE|0|3 +008002|verticalSignificanceSurfaceObservations|table|VERTICAL SIGNIFICANCE (SURFACE OBSERVATIONS)|CODE TABLE|0|0|6|CODE TABLE|0|2 +008003|verticalSignificanceSatelliteObservations|table|VERTICAL SIGNIFICANCE (SATELLITE OBSERVATIONS)|CODE TABLE|0|0|6|CODE TABLE|0|2 +008004|phaseOfAircraftFlight|table|PHASE OF AIRCRAFT FLIGHT|CODE TABLE|0|0|3|CODE TABLE|0|1 +008005|meteorologicalAttributeSignificance|table|METEOROLOGICAL ATTRIBUTE SIGNIFICANCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008006|ozoneVerticalSoundingSignificance|flag|OZONE VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +008007|dimensionalSignificance|table|DIMENSIONAL SIGNIFICANCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008008|radiationVerticalSoundingSignificance|flag|RADIATION VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +008009|detailedPhaseOfFlight|table|DETAILED PHASE OF FLIGHT|CODE TABLE|0|0|4|CODE TABLE|0|2 +008010|surfaceQualifierForTemperatureData|table|SURFACE QUALIFIER (TEMPERATURE DATA)|CODE TABLE|0|0|5|CODE TABLE|0|2 +008011|meteorologicalFeature|table|METEOROLOGICAL FEATURE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008012|landOrSeaQualifier|table|LAND/SEA QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008013|dayOrNightQualifier|table|DAY/NIGHT QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008014|qualifierForRunwayVisualRange|table|QUALIFIER FOR RUNWAY VISUAL RANGE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008015|significantQualifierForSensor|table|SIGNIFICANT QUALIFIER FOR SENSOR|CODE TABLE|0|0|3|CODE TABLE|0|1 +008016|changeQualifierOfATrendTypeForecastOrAnAerodromeForecast|table|CHANGE QUALIFIER OF A TREND-TYPE FORECAST OR AN AERODROME FORECAST|CODE TABLE|0|0|3|CODE TABLE|0|1 +008017|qualifierOfTimeWhenForecastChangeExpected|table|QUALIFIER OF THE TIME WHEN THE FORECAST CHANGE IS EXPECTED|CODE TABLE|0|0|2|CODE TABLE|0|1 +008018|seawindsLandOrIceSurfaceType|flag|SEAWINDS LAND/ICE SURFACE TYPE|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +008019|qualifierForFollowingCentreIdentifier|table|QUALIFIER FOR FOLLOWING CENTRE IDENTIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008020|totalNumberOfMissingEntitiesWithRespectToAccumulationOrAverage|long|TOTAL NUMBER OF MISSING ENTITIES (WITH RESPECT TO ACCUMULATION OR AVERAGE)|Numeric|0|0|16|Numeric|0|5 +008021|timeSignificance|table|TIME SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +008022|totalNumberWithRespectToAccumulationOrAverage|long|TOTAL NUMBER (WITH RESPECT TO ACCUMULATION OR AVERAGE)|Numeric|0|0|16|Numeric|0|5 +008023|firstOrderStatistics|table|FIRST-ORDER STATISTICS|CODE TABLE|0|0|6|CODE TABLE|0|2 +008024|differenceStatistics|table|DIFFERENCE STATISTICS|CODE TABLE|0|0|6|CODE TABLE|0|2 +008025|timeDifferenceQualifier|table|TIME DIFFERENCE QUALIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008026|matrixSignificance|table|MATRIX SIGNIFICANCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008029|surfaceType|table|SURFACE TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008030|manualOnCodesVolumeI1SectionCCodeTableFromWhichDataAreDerived|long|MANUAL ON CODES (VOLUME I.1, SECTION C) CODE TABLE FROM WHICH DATA ARE DERIVED|Numeric|0|0|13|Numeric|0|4 +008031|dataCategoryCrexTableA|long|DATA CATEGORY - CREX TABLE A|Numeric|0|0|8|Numeric|0|3 +008032|statusOfOperation|table|STATUS OF OPERATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +008033|methodOfDerivationOfPercentageConfidence|table|METHOD OF DERIVATION OF PERCENTAGE CONFIDENCE|CODE TABLE|0|0|7|CODE TABLE|0|3 +008034|temperatureOrSalinityMeasurementQualifier|table|TEMPERATURE/SALINITY MEASUREMENT QUALIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008035|monitoringExerciseType|table|TYPE OF MONITORING EXERCISE|CODE TABLE|0|0|3|CODE TABLE|0|1 +008036|typeOfCentreOrStationPerformingMonitoring|table|TYPE OF CENTRE OR STATION PERFORMING MONITORING|CODE TABLE|0|0|3|CODE TABLE|0|1 +008037|baselineCheckSignificance|table|BASELINE CHECK SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +008038|instrumentDataSignificance|table|INSTRUMENT DATA SIGNIFICANCE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008039|timeSignificanceAviationForecast|table|TIME SIGNIFICANCE (AVIATION FORECAST)|CODE TABLE|0|0|6|CODE TABLE|0|2 +008040|flightLevelSignificance|table|FLIGHT LEVEL SIGNIFICANCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008041|dataSignificance|table|DATA SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +008042|extendedVerticalSoundingSignificance|flag|EXTENDED VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +008043|atmosphericChemical|table|ATMOSPHERIC CHEMICAL OR PHYSICAL CONSTITUENT TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008044|casRegistryNumber|string|CAS REGISTRY NUMBER|CCITT IA5|0|0|88|Character|0|11 +008045|characterOfParticulateMatter|table|CHARACTER OF PARTICULATE MATTER|CODE TABLE|0|0|8|Character|0|2 +008046|atmosphericChemical|table|ATMOSPHERIC CHEMICAL OR PHYSICAL CONSTITUENT TYPE|Common CODE TABLE C-14|0|0|16|Common CODE TABLE C-14|0|5 +008049|numberOfObservations|long|NUMBER OF OBSERVATIONS|Numeric|0|0|8|Numeric|0|3 +008050|qualifierForNumberOfMissingValuesInCalculationOfStatistic|table|QUALIFIER FOR NUMBER OF MISSING VALUES IN CALCULATION OF STATISTIC|CODE TABLE|0|0|4|CODE TABLE|0|2 +008051|qualifierForNumberOfMissingValuesInCalculationOfStatistic|table|QUALIFIER FOR NUMBER OF MISSING VALUES IN CALCULATION OF STATISTIC|CODE TABLE|0|0|3|CODE TABLE|0|1 +008052|conditionForWhichNumberOfDaysOfOccurrenceFollows|table|CONDITION FOR WHICH NUMBER OF DAYS OF OCCURRENCE FOLLOWS|CODE TABLE|0|0|5|CODE TABLE|0|2 +008053|dayOfOccurrenceQualifier|table|DAY OF OCCURRENCE QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008054|qualifierForWindSpeedOrWindGusts|table|QUALIFIER FOR WIND SPEED OR WIND GUSTS|CODE TABLE|0|0|3|CODE TABLE|0|1 +008060|sampleScanningModeSignificance|table|SAMPLE SCANNING MODE SIGNIFICANCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008065|sunGlintIndicator|table|SUN-GLINT INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +008066|semiTransparencyIndicator|table|SEMI-TRANSPARENCY INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +008070|verticalSoundingProductQualifier|table|VERTICAL SOUNDING PRODUCT QUALIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008071|typeOfCostEstimation|table|TYPE OF COST ESTIMATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +008072|pixelType|table|PIXEL(S) TYPE|CODE TABLE|0|0|3|CODE TABLE|0|1 +008074|altimeterEchoType|table|ALTIMETER ECHO TYPE|CODE TABLE|0|0|2|CODE TABLE|0|1 +008075|orbitQualifier|table|ASCENDING/DESCENDING ORBIT QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008076|band|table|TYPE OF BAND|CODE TABLE|0|0|6|CODE TABLE|0|2 +008077|radiometerSensedSurfaceType|table|RADIOMETER SENSED SURFACE TYPE|CODE TABLE|0|0|7|CODE TABLE|0|3 +008079|productStatus|table|PRODUCT STATUS|CODE TABLE|0|0|4|CODE TABLE|0|2 +008080|qualifierForGtsppQualityFlag|table|QUALIFIER FOR GTSPP QUALITY FLAG|CODE TABLE|0|0|6|CODE TABLE|0|2 +008081|equipmentType|table|TYPE OF EQUIPMENT|CODE TABLE|0|0|6|CODE TABLE|0|2 +008082|modificationOfSensorHeightToAnotherValue|table|MODIFICATION OF SENSOR HEIGHT TO ANOTHER VALUE|CODE TABLE|0|0|3|CODE TABLE|0|1 +008083|nominalValueIndicator|flag|NOMINAL VALUE INDICATOR|FLAG TABLE|0|0|15|FLAG TABLE|0|5 +008085|beamIdentifier|table|BEAM IDENTIFIER|CODE TABLE|0|0|3|CODE TABLE|0|1 +008086|verticalSignificanceForNwp|flag|VERTICAL SIGNIFICANCE FOR NWP|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +008087|cornerPositionOfObservation|table|CORNER POSITION OF OBSERVATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +008088|mapSignificance|table|MAP SIGNIFICANCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008090|decimalScaleOfFollowingSignificands|long|DECIMAL SCALE OF FOLLOWING SIGNIFICANDS|Numeric|0|-127|8|Numeric|0|3 +008091|coordinatesSignificance|table|COORDINATES SIGNIFICANCE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008092|measurementUncertaintyExpression|table|MEASUREMENT UNCERTAINTY EXPRESSION|CODE TABLE|0|0|5|CODE TABLE|0|2 +008093|measurementUncertaintySignificance|table|MEASUREMENT UNCERTAINTY SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +008094|methodUsedToCalculateTheAverageDailyTemperature|table|METHOD USED TO CALCULATE THE AVERAGE DAILY TEMPERATURE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008095|sitingAndMeasurementQualityClassificationForTemperature|table|SITING AND MEASUREMENT QUALITY CLASSIFICATION FOR TEMPERATURE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008096|sitingAndMeasurementQualityClassificationForPrecipitation|table|SITING AND MEASUREMENT QUALITY CLASSIFICATION FOR PRECIPITATION|CODE TABLE|0|0|8|CODE TABLE|0|3 +008097|methodUsedToCalculateTheAverageInstrumentTemperature|table|METHOD USED TO CALCULATE THE AVERAGE INSTRUMENT TEMPERATURE|CODE TABLE|0|0|7|CODE TABLE|0|3 +008098|sourceOfTemperatureMeasurement|table|SOURCE OF TEMPERATURE MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +008099|sensingDirection|table|SENSING DIRECTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +010001|heightOfLandSurface|long|HEIGHT OF LAND SURFACE|m|0|-400|15|m|0|5 +010002|nonCoordinateHeight|long|HEIGHT|m|-1|-40|16|m|-1|5 +010003|nonCoordinateGeopotential|long|GEOPOTENTIAL|m2 s-2|-1|-400|17|m2 s-2|-1|6 +010004|nonCoordinatePressure|long|PRESSURE|Pa|-1|0|14|Pa|-1|5 +010007|nonCoordinateHeight|long|HEIGHT|m|0|-1000|17|m|0|6 +010008|nonCoordinateGeopotential|long|GEOPOTENTIAL|m2 s-2|0|-10000|20|m2 s-2|0|7 +010009|nonCoordinateGeopotentialHeight|long|GEOPOTENTIAL HEIGHT|gpm|0|-1000|17|gpm|0|5 +010010|minimumPressureReducedToMeanSeaLevel|long|MINIMUM PRESSURE REDUCED TO MEAN SEA LEVEL|Pa|-1|0|14|Pa|-1|5 +010011|maximumPressureReducedToMeanSeaLevel|long|MAXIMUM PRESSURE REDUCED TO MEAN SEA LEVEL|Pa|-1|0|14|Pa|-1|5 +010031|DistanceFromEarthCentreInDirectionOfNorthPole|double|IN DIRECTION OF THE NORTH POLE, DISTANCE FROM THE EARTH'S CENTRE|m|2|-1073741824|31|m|2|10 +010032|satelliteDistanceToEarthCentre|double|SATELLITE DISTANCE TO EARTH'S CENTRE|m|1|0|27|m|2|9 +010033|altitudePlatformToEllipsoid|double|ALTITUDE (PLATFORM TO ELLIPSOID)|m|1|0|27|m|2|9 +010034|earthRadius|double|EARTH'S RADIUS|m|1|0|27|m|2|9 +010035|earthLocalRadiusOfCurvature|double|EARTH'S LOCAL RADIUS OF CURVATURE|m|1|62000000|22|m|1|8 +010036|geoidUndulation|double|GEOID UNDULATION|m|2|-15000|15|m|2|6 +010038|maximumHeightOfDeckCargoAboveSummerLoadLine|long|MAXIMUM HEIGHT OF DECK CARGO ABOVE SUMMER LOAD LINE|m|0|0|6|m|0|2 +010039|departureOfReferenceLevelSummerMaximumLoadLineFromActualSeaLevel|long|DEPARTURE OF REFERENCE LEVEL (SUMMER MAXIMUM LOAD LINE) FROM ACTUAL SEA LEVEL|m|0|-32|6|m|0|3 +010040|numberOfRetrievedLayers|long|NUMBER OF RETRIEVED LAYERS|Numeric|0|0|10|Numeric|0|4 +010050|standardDeviationAltitude|double|STANDARD DEVIATION ALTITUDE|m|2|0|16|m|2|5 +010051|pressureReducedToMeanSeaLevel|long|PRESSURE REDUCED TO MEAN SEA LEVEL|Pa|-1|0|14|Pa|-1|5 +010052|altimeterSettingQnh|long|ALTIMETER SETTING (QNH)|Pa|-1|0|14|Pa|-1|5 +010053|globalNavigationSatelliteSystemAltitude|long|GLOBAL NAVIGATION SATELLITE SYSTEM ALTITUDE|m|0|-1000|17|m|0|5 +010060|pressureChange|long|PRESSURE CHANGE|Pa|-1|-1024|11|Pa|-1|4 +010061|3HourPressureChange|long|3-HOUR PRESSURE CHANGE|Pa|-1|-500|10|Pa|-1|4 +010062|24HourPressureChange|long|24-HOUR PRESSURE CHANGE|Pa|-1|-1000|11|Pa|-1|4 +010063|characteristicOfPressureTendency|table|CHARACTERISTIC OF PRESSURE TENDENCY|CODE TABLE|0|0|4|CODE TABLE|0|2 +010064|sigmetCruisingLevel|table|SIGMET CRUISING LEVEL|CODE TABLE|0|0|3|CODE TABLE|0|1 +010070|indicatedAircraftAltitude|long|INDICATED AIRCRAFT ALTITUDE|m|0|-400|16|m|0|5 +010071|verticalResolution|long|VERTICAL RESOLUTION|m|0|0|14|m|0|5 +010073|heightOfPlume|double|HEIGHT OF PLUME|m|2|0|21|m|2|7 +010079|offNadirAngleOfTheSatelliteFromPlatformData|double|OFF-NADIR ANGLE OF THE SATELLITE FROM PLATFORM DATA|deg|4|0|16|deg|4|5 +010080|viewingZenithAngle|double|VIEWING ZENITH ANGLE|deg|2|-9000|15|deg|2|5 +010081|cogAltitudeAboveReferenceEllipsoid|double|ALTITUDE OF COG ABOVE REFERENCE ELLIPSOID|m|3|0|31|m|3|10 +010082|instantaneousAltitudeRate|double|INSTANTANEOUS ALTITUDE RATE|m/s|3|-65536|17|m/s|3|6 +010083|squaredOffNadirAngleOfSatelliteFromPlatformData|double|SQUARED OFF-NADIR ANGLE OF THE SATELLITE FROM PLATFORM DATA|deg2|2|0|16|deg2|2|5 +010084|squaredOffNadirAngleOfSatelliteFromWaveformData|double|SQUARED OFF-NADIR ANGLE OF THE SATELLITE FROM WAVEFORM DATA|deg2|2|0|16|deg2|2|5 +010085|meanSeaSurfaceHeight|double|MEAN SEA-SURFACE HEIGHT|m|3|-131072|18|m|3|6 +010086|geoidHeight|double|GEOID'S HEIGHT|m|3|-131072|18|m|3|6 +010087|oceanDepthOrLandElevation|double|OCEAN DEPTH/LAND ELEVATION|m|1|-131072|18|m|1|6 +010088|totalGeocentricOceanTideHeightSolution1|double|TOTAL GEOCENTRIC OCEAN TIDE HEIGHT (SOLUTION 1)|m|3|-32768|16|m|3|5 +010089|totalGeocentricOceanTideHeightSolution2|double|TOTAL GEOCENTRIC OCEAN TIDE HEIGHT (SOLUTION 2)|m|3|-32768|16|m|3|5 +010090|longPeriodTideHeight|double|LONG PERIOD TIDE HEIGHT|m|3|-32768|16|m|3|5 +010091|tidalLoadingHeight|double|TIDAL LOADING HEIGHT|m|3|-32768|16|m|3|5 +010092|solidEarthTideHeight|double|SOLID EARTH TIDE HEIGHT|m|3|-32768|16|m|3|5 +010093|geocentricPoleTideHeight|double|GEOCENTRIC POLE TIDE HEIGHT|m|3|-32768|16|m|3|5 +010095|heightOfAtmosphere|long|HEIGHT OF ATMOSPHERE USED|m|0|0|16|m|0|5 +010096|meanDynamicTopography|double|MEAN DYNAMIC TOPOGRAPHY|m|3|-131072|18|m|3|6 +010097|meanSeaSurfaceHeightFromAltimeterOnly|double|MEAN SEA-SURFACE HEIGHT FROM ALTIMETER ONLY|m|3|-131072|18|m|3|6 +010098|loadingTideHeightGeocentricOceanTideSolution1|double|LOADING TIDE HEIGHT GEOCENTRIC OCEAN TIDE SOLUTION 1|m|4|-2000|12|m|4|4 +010099|loadingTideHeightGeocentricOceanTideSolution2|double|LOADING TIDE HEIGHT GEOCENTRIC OCEAN TIDE SOLUTION 2|m|4|-2000|12|m|4|4 +010100|nonEquilibriumLongPeriodTideHeight|double|NON-EQUILIBRIUM LONG PERIOD TIDE HEIGHT|m|4|-2000|12|m|4|4 +010101|squaredOffNadirAngleOfSatelliteFromWaveformData|double|SQUARED OFF-NADIR ANGLE OF THE SATELLITE FROM WAVEFORM DATA|deg2|2|-32768|16|deg2|2|5 +010102|seaSurfaceHeightAnomaly|double|SEA-SURFACE HEIGHT ANOMALY|m|3|-32768|16|m|3|5 +010103|meanDynamicTopographyAccuracy|double|MEAN DYNAMIC TOPOGRAPHY ACCURACY|m|3|-131072|18|m|3|6 +011001|windDirection|long|WIND DIRECTION|deg|0|0|9|deg|0|3 +011002|windSpeed|double|WIND SPEED|m/s|1|0|12|m/s|1|4 +011003|u|double|U-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011004|v|double|V-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011005|w|double|W-COMPONENT|Pa/s|1|-512|10|Pa/s|1|4 +011006|w|double|W-COMPONENT|m/s|2|-4096|13|m/s|2|4 +011007|relativeWindDirectionInDegreesOffBow|long|RELATIVE WIND DIRECTION (IN DEGREES OFF BOW)|deg|0|0|9|deg|0|3 +011008|relativeWindSpeed|double|RELATIVE WIND SPEED|m/s|1|0|12|m/s|1|4 +011010|windDirectionAssociatedWithWindSpeedWhichFollows|long|WIND DIRECTION ASSOCIATED WITH WIND SPEED WHICH FOLLOWS|deg|0|0|9|deg|0|3 +011011|windDirectionAt10M|long|WIND DIRECTION AT 10 M|deg|0|0|9|deg|0|3 +011012|windSpeedAt10M|double|WIND SPEED AT 10 M|m/s|1|0|12|m/s|1|4 +011013|windDirectionAt5M|long|WIND DIRECTION AT 5 M|deg|0|0|9|deg|0|3 +011014|windSpeedAt5M|double|WIND SPEED AT 5 M|m/s|1|0|12|m/s|1|4 +011016|extremeCounterclockwiseWindDirectionOfAVariableWind|long|EXTREME COUNTERCLOCKWISE WIND DIRECTION OF A VARIABLE WIND|deg|0|0|9|deg|0|3 +011017|extremeClockwiseWindDirectionOfAVariableWind|long|EXTREME CLOCKWISE WIND DIRECTION OF A VARIABLE WIND|deg|0|0|9|deg|0|3 +011019|steadinessOfWind|long|STEADINESS OF WIND|%|0|0|7|%|0|3 +011021|relativeVorticity|double|RELATIVE VORTICITY|/s|9|-65536|17|/s|9|6 +011022|divergence|double|DIVERGENCE|/s|9|-65536|17|/s|9|6 +011023|velocityPotential|long|VELOCITY POTENTIAL|m2/s|-2|-65536|17|m2/s|-2|6 +011030|extendedDegreeOfTurbulence|table|EXTENDED DEGREE OF TURBULENCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +011031|degreeOfTurbulence|table|DEGREE OF TURBULENCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +011032|heightOfBaseOfTurbulence|long|HEIGHT OF BASE OF TURBULENCE|m|-1|-40|16|m|-1|5 +011033|heightOfTopOfTurbulence|long|HEIGHT OF TOP OF TURBULENCE|m|-1|-40|16|m|-1|5 +011034|verticalGustVelocity|double|VERTICAL GUST VELOCITY|m/s|1|-1024|11|m/s|1|4 +011035|verticalGustAcceleration|double|VERTICAL GUST ACCELERATION|m s-2|2|-8192|14|m s-2|2|5 +011036|maximumDerivedEquivalentVerticalGustSpeed|double|MAXIMUM DERIVED EQUIVALENT VERTICAL GUST SPEED|m/s|1|0|10|m/s|1|4 +011037|turbulenceIndex|table|TURBULENCE INDEX|CODE TABLE|0|0|6|CODE TABLE|0|2 +011038|timeOfOccurrenceOfPeakEddyDissipationRate|table|TIME OF OCCURRENCE OF PEAK EDDY DISSIPATION RATE|CODE TABLE|0|0|5|CODE TABLE|0|2 +011039|extendedTimeOfOccurrenceOfPeakEddyDissipationRate|table|EXTENDED TIME OF OCCURRENCE OF PEAK EDDY DISSIPATION RATE|CODE TABLE|0|0|6|CODE TABLE|0|2 +011040|maximumWindSpeedMeanWind|double|MAXIMUM WIND SPEED (MEAN WIND)|m/s|1|0|12|m/s|1|4 +011041|maximumWindGustSpeed|double|MAXIMUM WIND GUST SPEED|m/s|1|0|12|m/s|1|4 +011042|maximumWindSpeed10MinuteMeanWind|double|MAXIMUM WIND SPEED (10-MINUTE MEAN WIND)|m/s|1|0|12|m/s|1|4 +011043|maximumWindGustDirection|long|MAXIMUM WIND GUST DIRECTION|deg|0|0|9|deg|0|3 +011044|meanWindDirectionForSurfaceTo1500M|long|MEAN WIND DIRECTION FOR SURFACE - 1 500 M (5 000 FEET)|deg|0|0|9|deg|0|3 +011045|meanWindSpeedForSurfaceTo1500M|double|MEAN WIND SPEED FOR SURFACE - 1 500 M (5 000 FEET)|m/s|1|0|12|m/s|1|4 +011046|maximumInstantaneousWindSpeed|double|MAXIMUM INSTANTANEOUS WIND SPEED|m/s|1|0|12|m/s|1|4 +011047|maximumInstantaneousWindSpeedOver10Minutes|double|MAXIMUM INSTANTANEOUS WIND SPEED OVER 10 MINUTES|m/s|1|0|12|m/s|1|4 +011049|windDirectionStandardDeviation|long|STANDARD DEVIATION OF WIND DIRECTION|deg|0|0|9|deg|0|3 +011050|standardDeviationOfHorizontalWindSpeed|double|STANDARD DEVIATION OF HORIZONTAL WIND SPEED|m/s|1|0|12|m/s|1|4 +011051|standardDeviationOfVerticalWindSpeed|double|STANDARD DEVIATION OF VERTICAL WIND SPEED|m/s|1|0|8|m/s|1|3 +011052|formalUncertaintyInWindSpeed|double|FORMAL UNCERTAINTY IN WIND SPEED|m/s|2|0|13|m/s|2|5 +011053|formalUncertaintyInWindDirection|double|FORMAL UNCERTAINTY IN WIND DIRECTION|deg|2|0|15|deg|2|5 +011054|meanWindDirectionFor1500To3000M|long|MEAN WIND DIRECTION FOR 1 500 - 3 000 M|deg|0|0|9|deg|0|3 +011055|meanWindSpeedFor1500To3000M|double|MEAN WIND SPEED FOR 1 500 - 3 000 M|m/s|1|0|12|m/s|1|4 +011061|absoluteWindShearIn1KmLayerBelow|double|ABSOLUTE WIND SHEAR IN 1 KM LAYER BELOW|m/s|1|0|12|m/s|1|4 +011062|absoluteWindShearIn1KmLayerAbove|double|ABSOLUTE WIND SHEAR IN 1 KM LAYER ABOVE|m/s|1|0|12|m/s|1|4 +011070|designatorOfRunwayAffectedByWindShearIncludingAll|string|DESIGNATOR OF THE RUNWAY AFFECTED BY WIND SHEAR (INCLUDING ALL)|CCITT IA5|0|0|32|Character|0|4 +011071|turbulentVerticalMomentumFlux|double|TURBULENT VERTICAL MOMENTUM FLUX|m2 s-2|3|-128|14|m2 s-2|3|5 +011072|turbulentVerticalBuoyancyFlux|double|TURBULENT VERTICAL BUOYANCY FLUX|K m s-1|3|-128|11|K m s-1|3|4 +011073|turbulentKineticEnergy|double|TURBULENT KINETIC ENERGY|m2 s-2|2|-1024|13|m2 s-2|2|4 +011074|dissipationEnergy|double|DISSIPATION ENERGY|m2 s-2|2|-1024|10|m2 s-2|2|4 +011075|meanTurbulenceIntensityEddyDissipationRate|double|MEAN TURBULENCE INTENSITY (EDDY DISSIPATION RATE)|m2/3 s-1|2|0|8|m2/3 s-1|2|3 +011076|peakTurbulenceIntensityEddyDissipationRate|double|PEAK TURBULENCE INTENSITY (EDDY DISSIPATION RATE)|m2/3 s-1|2|0|8|m2/3 s-1|2|3 +011077|reportingIntervalOrAveragingTimeForEddyDissipationRate|long|REPORTING INTERVAL OR AVERAGING TIME FOR EDDY DISSIPATION RATE|s|0|0|12|s|0|4 +011081|modelWindDirectionAt10M|double|MODEL WIND DIRECTION AT 10 M|deg|2|0|16|deg|2|5 +011082|modelWindSpeedAt10M|double|MODEL WIND SPEED AT 10 M|m/s|2|0|14|m/s|2|4 +011083|windSpeed|long|WIND SPEED|km/h|0|0|9|km/h|0|3 +011084|windSpeed|long|WIND SPEED|kt|0|0|8|kt|0|3 +011085|maximumWindGustSpeed|long|MAXIMUM WIND GUST SPEED|km/h|0|0|9|km/h|0|3 +011086|maximumWindGustSpeed|long|MAXIMUM WIND GUST SPEED|kt|0|0|8|kt|0|3 +011095|u|double|U-COMPONENT OF THE MODEL WIND VECTOR|m/s|1|-4096|13|m/s|1|4 +011096|v|double|V-COMPONENT OF THE MODEL WIND VECTOR|m/s|1|-4096|13|m/s|1|4 +011097|windSpeedFromAltimeter|double|WIND SPEED FROM ALTIMETER|m/s|2|0|12|m/s|2|4 +011098|windSpeedFromRadiometer|double|WIND SPEED FROM RADIOMETER|m/s|2|0|12|m/s|2|4 +011100|aircraftTrueAirspeed|double|AIRCRAFT TRUE AIRSPEED|m/s|1|0|12|m/s|1|4 +011101|aircraftGroundSpeedUComponent|double|AIRCRAFT GROUND SPEED U-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011102|aircraftGroundSpeedVComponent|double|AIRCRAFT GROUND SPEED V-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011103|aircraftGroundSpeedWComponent|double|AIRCRAFT GROUND SPEED W-COMPONENT|m/s|1|-512|10|m/s|1|3 +011104|aircraftTrueHeading|long|TRUE HEADING OF AIRCRAFT, SHIP OR OTHER MOBILE PLATFORM|deg|0|0|9|deg|0|3 +011105|edrAlgorithmVersion|long|EDR ALGORITHM VERSION|Numeric|0|0|6|Numeric|0|2 +011106|runningMinimumConfidence|long|RUNNING MINIMUM CONFIDENCE|Numeric|1|0|4|Numeric|1|2 +011107|maximumNumberBadInputs|long|MAXIMUM NUMBER BAD INPUTS|Numeric|0|0|5|Numeric|0|2 +011108|peakLocation|long|PEAK LOCATION|Numeric|1|0|4|Numeric|1|2 +011109|numberOfGoodEdr|long|NUMBER OF GOOD EDR|Numeric|0|0|4|Numeric|0|2 +011110|uncertaintyInUComponent|double|UNCERTAINTY IN U-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011111|uncertaintyInVComponent|double|UNCERTAINTY IN V-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011112|uncertaintyInWComponent|double|UNCERTAINTY IN W-COMPONENT|m/s|2|-4096|13|m/s|2|4 +011113|trackingCorrelationOfVector|long|TRACKING CORRELATION OF VECTOR|Numeric|3|-1000|12|Numeric|3|4 +012001|airTemperature|double|TEMPERATURE/AIR TEMPERATURE|K|1|0|12|C|1|3 +012002|wetBulbTemperature|double|WET-BULB TEMPERATURE|K|1|0|12|C|1|3 +012003|dewpointTemperature|double|DEWPOINT TEMPERATURE|K|1|0|12|C|1|3 +012004|airTemperatureAt2M|double|AIR TEMPERATURE AT 2 M|K|1|0|12|C|1|3 +012005|wetBulbTemperatureAt2M|double|WET-BULB TEMPERATURE AT 2 M|K|1|0|12|C|1|3 +012006|dewpointTemperatureAt2M|double|DEWPOINT TEMPERATURE AT 2 M|K|1|0|12|C|1|3 +012007|virtualTemperature|double|VIRTUAL TEMPERATURE|K|1|0|12|C|1|3 +012008|uncertaintyInVirtualTemperature|double|UNCERTAINTY IN VIRTUAL TEMPERATURE|K|1|0|12|C|1|4 +012011|maximumTemperatureAtHeightAndOverPeriodSpecified|double|MAXIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|1|0|12|C|1|3 +012012|minimumTemperatureAtHeightAndOverPeriodSpecified|double|MINIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|1|0|12|C|1|3 +012013|groundMinimumTemperaturePast12Hours|double|GROUND MINIMUM TEMPERATURE, PAST 12 HOURS|K|1|0|12|C|1|3 +012014|maximumTemperatureAt2MPast12Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|1|0|12|C|1|3 +012015|minimumTemperatureAt2MPast12Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|1|0|12|C|1|3 +012016|maximumTemperatureAt2MPast24Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|1|0|12|C|1|3 +012017|minimumTemperatureAt2MPast24Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|1|0|12|C|1|3 +012021|maximumTemperatureAt2M|double|MAXIMUM TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012022|minimumTemperatureAt2M|double|MINIMUM TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012023|temperature|long|TEMPERATURE|C|0|-99|8|C|0|2 +012024|dewpointTemperature|long|DEWPOINT TEMPERATURE|C|0|-99|8|C|0|2 +012030|soilTemperature|double|SOIL TEMPERATURE|K|1|0|12|C|1|3 +012049|temperatureChangeOverSpecifiedPeriod|long|TEMPERATURE CHANGE OVER SPECIFIED PERIOD|K|0|-30|6|C|0|2 +012051|standardDeviationTemperature|double|STANDARD DEVIATION TEMPERATURE|K|1|0|10|C|1|3 +012052|highestDailyMeanTemperature|double|HIGHEST DAILY MEAN TEMPERATURE|K|1|0|12|C|1|3 +012053|lowestDailyMeanTemperature|double|LOWEST DAILY MEAN TEMPERATURE|K|1|0|12|C|1|3 +012060|awsEnclosureInternalTemperature|double|AWS ENCLOSURE INTERNAL TEMPERATURE|K|1|0|12|C|1|3 +012061|skinTemperature|double|SKIN TEMPERATURE|K|1|0|12|C|1|3 +012062|equivalentBlackBodyTemperature|double|EQUIVALENT BLACK BODY TEMPERATURE|K|1|0|12|C|1|3 +012063|brightnessTemperature|double|BRIGHTNESS TEMPERATURE|K|1|0|12|C|1|3 +012064|instrumentTemperature|double|INSTRUMENT TEMPERATURE|K|1|0|12|K|1|4 +012065|standardDeviationBrightnessTemperature|double|STANDARD DEVIATION BRIGHTNESS TEMPERATURE|K|1|0|12|K|1|4 +012066|antennaTemperature|double|ANTENNA TEMPERATURE|K|2|0|16|C|2|5 +012070|warmLoadTemperature|double|WARM LOAD TEMPERATURE|K|2|0|16|K|2|5 +012071|coldestClusterTemperature|double|COLDEST CLUSTER TEMPERATURE|K|1|0|12|K|1|4 +012072|radiance|double|RADIANCE|W m-2 sr-1|6|0|31|W m-2 sr-1|6|9 +012075|spectralRadiance|long|SPECTRAL RADIANCE|W m-3 sr-1|-3|0|16|W m-3 sr-1|-3|5 +012076|radiance|double|RADIANCE|W m-2 sr-1|3|0|16|W m-2 sr-1|3|5 +012080|brightnessTemperatureRealPart|double|BRIGHTNESS TEMPERATURE REAL PART|K|2|-10000|16|K|2|5 +012081|brightnessTemperatureImaginaryPart|double|BRIGHTNESS TEMPERATURE IMAGINARY PART|K|2|-10000|16|K|2|5 +012082|pixelRadiometricAccuracy|double|PIXEL RADIOMETRIC ACCURACY|K|2|0|12|K|2|4 +012083|temperatureDifferenceBetweenObservedAndComputed|double|TEMPERATURE DIFFERENCE BETWEEN OBSERVED AND COMPUTED|K|2|-10000|16|K|2|6 +012101|airTemperature|double|TEMPERATURE/AIR TEMPERATURE|K|2|0|16|C|2|4 +012102|wetBulbTemperature|double|WET-BULB TEMPERATURE|K|2|0|16|C|2|4 +012103|dewpointTemperature|double|DEWPOINT TEMPERATURE|K|2|0|16|C|2|4 +012104|airTemperatureAt2M|double|AIR TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012105|webBulbTemperatureAt2M|double|WEB-BULB TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012106|dewpointTemperatureAt2M|double|DEWPOINT TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012107|virtualTemperature|double|VIRTUAL TEMPERATURE|K|2|0|16|C|2|4 +012111|maximumTemperatureAtHeightAndOverPeriodSpecified|double|MAXIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|2|0|16|C|2|4 +012112|minimumTemperatureAtHeightAndOverPeriodSpecified|double|MINIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|2|0|16|C|2|4 +012113|groundMinimumTemperaturePast12Hours|double|GROUND MINIMUM TEMPERATURE, PAST 12 HOURS|K|2|0|16|C|2|4 +012114|maximumTemperatureAt2MPast12Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|2|0|16|C|2|4 +012115|minimumTemperatureAt2MPast12Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|2|0|16|C|2|4 +012116|maximumTemperatureAt2MPast24Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|2|0|16|C|2|4 +012117|minimumTemperatureAt2MPast24Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|2|0|16|C|2|4 +012118|maximumTemperatureAtHeightSpecifiedPast24Hours|double|MAXIMUM TEMPERATURE AT HEIGHT SPECIFIED, PAST 24 HOURS|K|2|0|16|C|2|4 +012119|minimumTemperatureAtHeightSpecifiedPast24Hours|double|MINIMUM TEMPERATURE AT HEIGHT SPECIFIED, PAST 24 HOURS|K|2|0|16|C|2|4 +012120|groundTemperature|double|GROUND TEMPERATURE|K|2|0|16|C|2|4 +012121|groundMinimumTemperature|double|GROUND MINIMUM TEMPERATURE|K|2|0|16|C|2|4 +012122|groundMinimumTemperatureOfPrecedingNight|double|GROUND MINIMUM TEMPERATURE OF THE PRECEDING NIGHT|K|2|0|16|C|2|4 +012128|roadSurfaceTemperature|double|ROAD SURFACE TEMPERATURE|K|2|0|16|C|2|5 +012129|roadSubSurfaceTemperature|double|ROAD SUBSURFACE TEMPERATURE|K|2|0|16|C|2|5 +012130|soilTemperature|double|SOIL TEMPERATURE|K|2|0|16|C|2|4 +012131|snowTemperature|double|SNOW TEMPERATURE|K|2|0|16|C|2|4 +012132|iceSurfaceTemperature|double|ICE SURFACE TEMPERATURE|K|2|0|16|C|2|4 +012151|dailyMeanTemperatureStandardDeviation|double|STANDARD DEVIATION OF DAILY MEAN TEMPERATURE|K|2|0|12|C|2|4 +012152|highestDailyMeanTemperature|double|HIGHEST DAILY MEAN TEMPERATURE|K|2|0|16|C|2|4 +012153|lowestDailyMeanTemperature|double|LOWEST DAILY MEAN TEMPERATURE|K|2|0|16|C|2|4 +012158|noiseEquivalentDeltaTemperatureWhileViewingColdTarget|double|NOISE-EQUIVALENT DELTA TEMPERATURE WHILE VIEWING COLD TARGET|K|2|0|12|C|2|4 +012159|noiseEquivalentDeltaTemperatureWhileViewingWarmTarget|double|NOISE-EQUIVALENT DELTA TEMPERATURE WHILE VIEWING WARM TARGET|K|2|0|12|C|2|4 +012161|skinTemperature|double|SKIN TEMPERATURE|K|2|0|16|C|2|4 +012162|equivalentBlackBodyTemperature|double|EQUIVALENT BLACK BODY TEMPERATURE|K|2|0|16|C|2|4 +012163|brightnessTemperature|double|BRIGHTNESS TEMPERATURE|K|2|0|16|C|2|4 +012164|instrumentTemperature|double|INSTRUMENT TEMPERATURE|K|2|0|16|K|2|5 +012165|directSunBrightnessTemperature|long|DIRECT SUN BRIGHTNESS TEMPERATURE|K|0|0|23|K|0|7 +012166|snapshotAccuracy|double|SNAPSHOT ACCURACY|K|1|-4000|13|K|1|4 +012167|radiometricAccuracyPurePolarization|double|RADIOMETRIC ACCURACY (PURE POLARIZATION)|K|1|0|9|K|1|3 +012168|radiometricAccuracyCrossPolarization|double|RADIOMETRIC ACCURACY (CROSS POLARIZATION)|K|1|0|9|K|1|3 +012169|brightnessTemperatureDifference|double|BRIGHTNESS TEMPERATURE DIFFERENCE|K|3|-100000|18|K|3|6 +012171|coldestClusterTemperature|double|COLDEST CLUSTER TEMPERATURE|K|2|0|16|K|2|5 +012180|averaged12MicronBtForAllClearPixelsAtNadir|double|AVERAGED 12 MICRON BT FOR ALL CLEAR PIXELS AT NADIR|K|2|0|16|K|2|5 +012181|averaged11MicronBtForAllClearPixelsAtNadir|double|AVERAGED 11 MICRON BT FOR ALL CLEAR PIXELS AT NADIR|K|2|0|16|K|2|5 +012182|averaged37MicronBtForAllClearPixelsAtNadir|double|AVERAGED 3.7 MICRON BT FOR ALL CLEAR PIXELS AT NADIR|K|2|0|16|K|2|5 +012183|averaged12MicronBtForAllClearPixelsForwardView|double|AVERAGED 12 MICRON BT FOR ALL CLEAR PIXELS, FORWARD VIEW|K|2|0|16|K|2|5 +012184|averaged11MicronBtForAllClearPixelsForwardView|double|AVERAGED 11 MICRON BT FOR ALL CLEAR PIXELS, FORWARD VIEW|K|2|0|16|K|2|5 +012185|averaged37MicronBtForAllClearPixelsForwardView|double|AVERAGED 3.7 MICRON BT FOR ALL CLEAR PIXELS, FORWARD VIEW|K|2|0|16|K|2|5 +012186|meanNadirSeaSurfaceTemperature|double|MEAN NADIR SEA-SURFACE TEMPERATURE|K|2|0|16|K|2|5 +012187|meanDualViewSeaSurfaceTemperature|double|MEAN DUAL VIEW SEA-SURFACE TEMPERATURE|K|2|0|16|K|2|5 +012188|interpolated238GhzBrightnessTFromMwr|double|INTERPOLATED 23.8 GHZ BRIGHTNESS T FROM MWR|K|2|0|16|K|2|5 +012189|interpolated365GhzBrightnessTFromMwr|double|INTERPOLATED 36.5 GHZ BRIGHTNESS T FROM MWR|K|2|0|16|K|2|5 +012190|brightnessTemperatureErrorCovariance|double|BRIGHTNESS TEMPERATURE ERROR COVARIANCE|K2|3|-15000|15|K2|3|8 +013001|specificHumidity|double|SPECIFIC HUMIDITY|kg/kg|5|0|14|kg/kg|5|5 +013002|mixingRatio|double|MIXING RATIO|kg/kg|5|0|14|kg/kg|5|5 +013003|relativeHumidity|long|RELATIVE HUMIDITY|%|0|0|7|%|0|3 +013004|vapourPressure|long|VAPOUR PRESSURE|Pa|-1|0|10|Pa|-1|4 +013005|vapourDensity|double|VAPOUR DENSITY|kg m-3|3|0|7|kg m-3|3|3 +013006|mixingHeights|long|MIXING HEIGHTS|m|-1|-40|16|m|-1|5 +013007|minimumRelativeHumidity|long|MINIMUM RELATIVE HUMIDITY|%|0|0|7|%|0|3 +013008|maximumRelativeHumidity|long|MAXIMUM RELATIVE HUMIDITY|%|0|0|7|%|0|3 +013009|relativeHumidity|double|RELATIVE HUMIDITY|%|1|-1000|12|%|1|4 +013011|totalPrecipitationOrTotalWaterEquivalent|double|TOTAL PRECIPITATION/TOTAL WATER EQUIVALENT|kg m-2|1|-1|14|kg m-2|1|5 +013012|depthOfFreshSnow|double|DEPTH OF FRESH SNOW|m|2|-2|12|m|2|4 +013013|totalSnowDepth|double|TOTAL SNOW DEPTH|m|2|-2|16|m|2|5 +013014|rainfallOrWaterEquivalentOfSnowAveragedRate|double|RAINFALL/WATER EQUIVALENT OF SNOW (AVERAGED RATE)|kg m-2 s-1|4|0|12|kg m-2 s-1|4|4 +013015|snowfallAveragedRate|double|SNOWFALL (AVERAGED RATE)|m/s|7|0|12|m/s|7|4 +013016|precipitableWater|long|PRECIPITABLE WATER|kg m-2|0|0|7|kg m-2|0|3 +013019|totalPrecipitationPast1Hour|double|TOTAL PRECIPITATION PAST 1 HOUR|kg m-2|1|-1|14|kg m-2|1|4 +013020|totalPrecipitationPast3Hours|double|TOTAL PRECIPITATION PAST 3 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013021|totalPrecipitationPast6Hours|double|TOTAL PRECIPITATION PAST 6 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013022|totalPrecipitationPast12Hours|double|TOTAL PRECIPITATION PAST 12 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013023|totalPrecipitationPast24Hours|double|TOTAL PRECIPITATION PAST 24 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013031|evapotranspiration|long|EVAPOTRANSPIRATION|kg m-2|0|0|7|kg m-2|0|3 +013032|evaporation|double|EVAPORATION/EVAPOTRANSPIRATION|kg m-2|1|0|8|kg m-2|1|3 +013033|evaporation|double|EVAPORATION/EVAPOTRANSPIRATION|kg m-2|1|0|10|kg m-2|1|4 +013038|superadiabaticIndicator|table|SUPERADIABATIC INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +013039|terrainTypeIceOrSnow|table|TERRAIN TYPE (ICE/SNOW)|CODE TABLE|0|0|3|CODE TABLE|0|1 +013040|surfaceFlag|table|SURFACE FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +013041|pasquillGiffordStabilityCategory|table|PASQUILL-GIFFORD STABILITY CATEGORY|CODE TABLE|0|0|4|CODE TABLE|0|2 +013042|parcelLiftedIndexTo500Hpa|long|PARCEL LIFTED INDEX (TO 500 HPA)|K|0|-20|6|K|0|2 +013043|bestLiftedIndexTo500Hpa|long|BEST LIFTED INDEX (TO 500 HPA)|K|0|-20|6|K|0|2 +013044|kIndex|long|K INDEX|K|0|-30|8|K|0|3 +013045|koIndex|long|KO INDEX|K|0|-30|8|K|0|3 +013046|maximumBuoyancy|long|MAXIMUM BUOYANCY|K|0|-30|8|K|0|3 +013047|modifiedShowalterStabilityIndex|long|MODIFIED SHOWALTER STABILITY INDEX|K|0|-60|6|C|0|2 +013048|waterFraction|double|WATER FRACTION|%|1|0|10|%|1|4 +013051|frequencyGroupPrecipitation|table|FREQUENCY GROUP, PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +013052|highestDailyAmountOfPrecipitation|double|HIGHEST DAILY AMOUNT OF PRECIPITATION|kg m-2|1|-1|14|kg m-2|1|5 +013055|intensityOfPrecipitation|double|INTENSITY OF PRECIPITATION|kg m-2 s-1|4|0|8|mm/h|1|4 +013056|characterAndIntensityOfPrecipitation|table|CHARACTER AND INTENSITY OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +013057|timeOfBeginningOrEndOfPrecipitation|table|TIME OF BEGINNING OR END OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +013058|sizeOfPrecipitatingElement|double|SIZE OF PRECIPITATING ELEMENT|m|4|0|7|mm|1|3 +013059|numberOfFlashesThunderstorm|long|NUMBER OF FLASHES (THUNDERSTORM)|Numeric|0|0|7|Numeric|0|3 +013060|totalAccumulatedPrecipitation|double|TOTAL ACCUMULATED PRECIPITATION|kg m-2|1|-1|17|kg m-2|1|5 +013071|upstreamWaterLevel|double|UPSTREAM WATER LEVEL|m|2|0|14|m|2|4 +013072|downstreamWaterLevel|double|DOWNSTREAM WATER LEVEL|m|2|0|14|m|2|4 +013073|maximumWaterLevel|double|MAXIMUM WATER LEVEL|m|2|0|14|m|2|4 +013074|groundWaterLevel|double|GROUND WATER LEVEL|m|2|0|18|m|2|6 +013080|waterPh|double|WATER PH|pH unit|1|0|10|pH unit|1|3 +013081|waterConductivity|double|WATER CONDUCTIVITY|S/m|3|0|14|S/m|3|4 +013082|waterTemperature|double|WATER TEMPERATURE|K|1|0|12|K|1|4 +013083|dissolvedOxygen|double|DISSOLVED OXYGEN|kg m-3|6|0|15|kg m-3|6|5 +013084|turbidity|long|TURBIDITY|lm|0|0|14|lm|0|4 +013085|oxidationReductionPotential|double|OXIDATION REDUCTION POTENTIAL (ORP)|V|3|0|14|V|3|4 +013090|radiometerWaterVapourContent|double|RADIOMETER WATER VAPOUR CONTENT|kg m-2|1|0|10|kg m-2|1|4 +013091|radiometerLiquidContent|double|RADIOMETER LIQUID CONTENT|kg m-2|2|0|8|kg m-2|2|3 +013093|cloudOpticalThickness|long|CLOUD OPTICAL THICKNESS|Numeric|0|0|8|Numeric|0|3 +013094|log10OfCloudOpticalThickness|long|LOG10 OF CLOUD OPTICAL THICKNESS|Numeric|3|-2000|14|Numeric|3|5 +013095|totalColumnWaterVapour|double|TOTAL COLUMN WATER VAPOUR|kg m-2|4|0|19|kg m-2|4|6 +013096|mwrWaterVapourContent|double|MWR WATER VAPOUR CONTENT|kg m-2|2|0|14|kg m-2|2|5 +013097|mwrLiquidWaterContent|double|MWR LIQUID WATER CONTENT|kg m-2|2|0|14|kg m-2|2|5 +013098|integratedWaterVapourDensity|double|INTEGRATED WATER VAPOUR DENSITY|kg m-2|8|0|30|kg m-2|8|10 +013099|log10OfIntegratedCloudParticleDensity|double|LOG10 OF INTEGRATED CLOUD PARTICLE DENSITY|log (m-2)|1|0|7|log (m-2)|1|3 +013100|log10OfIntegratedCloudParticleArea|double|LOG10 OF INTEGRATED CLOUD PARTICLE AREA|log (m2 m-2)|1|-70|7|log (m2 m-2)|1|2 +013101|log10OfIntegratedCloudParticleVolume|double|LOG10 OF INTEGRATED CLOUD PARTICLE VOLUME|log (m3 m-2)|1|-140|7|log (m3 m-2)|1|3 +013109|iceOrLiquidWaterPath|double|ICE/LIQUID WATER PATH|kg m-2|3|0|10|kg m-2|3|4 +013110|massMixingRatio|long|MASS MIXING RATIO|%|0|0|7|%|0|3 +013111|soilMoisture|long|SOIL MOISTURE|g/kg|0|0|10|g/kg|0|4 +013112|objectWetnessDuration|long|OBJECT WETNESS DURATION|s|0|0|17|s|0|5 +013114|rateOfIceAccretion|double|RATE OF ICE ACCRETION|kg m-2 h-1|1|0|11|kg m-2 h-1|1|4 +013115|iceThickness|double|ICE THICKNESS|m|2|0|19|m|2|6 +013116|waterFilmThickness|double|WATER FILM THICKNESS|m|4|0|10|m|3|2 +013117|snowDensityLiquidWaterContent|long|SNOW DENSITY (LIQUID WATER CONTENT)|kg m-3|0|0|10|kg m-3|0|3 +013118|freshSnowDepth|double|DEPTH OF FRESH SNOW (HIGH ACCURACY)|m|3|-2|14|m|3|5 +013155|precipitationIntensityHighAccuracy|double|INTENSITY OF PRECIPITATION (HIGH ACCURACY)|kg m-2 s-1|5|-1|16|mm/h|2|5 +013160|radiometerLiquidContent|double|RADIOMETER LIQUID CONTENT|kg m-2|2|-350|10|kg m-2|2|3 +013162|cloudLiquidWater|double|CLOUD LIQUID WATER|kg m-2|2|0|8|kg m-2|2|3 +013163|snowWaterEquivalent|long|SNOW WATER EQUIVALENT|kg m-2|0|0|16|kg m-2|0|5 +013164|seaIceFreeboard|double|SEA ICE FREEBOARD|m|3|-131072|18|m|3|6 +013165|capeConvectiveAvailablePotentialEnergy|long|CAPE (CONVECTIVE AVAILABLE POTENTIAL ENERGY)|J/kg|0|0|14|J/kg|0|5 +013166|totalTotalsIndex|double|TOTAL TOTALS INDEX|K|1|0|10|C|0|5 +013167|sIndexStt|double|S INDEX (STT)|K|1|-1000|11|C|0|6 +013168|fogThreatIndex|double|FOG THREAT INDEX|K|1|-100|8|C|0|5 +013169|mdpiMicroburstDayPotentialIndex|double|MDPI (MICROBURST DAY POTENTIAL INDEX)|K/K|1|-100|8|K/K|0|5 +013170|tqIndex|double|TQ INDEX|K|1|-1000|11|C|0|6 +013171|cinConvectiveInhibition|long|CIN (CONVECTIVE INHIBITION)|J/kg|0|-1000|10|J/kg|0|5 +014001|longWaveRadiationIntegratedOver24Hours|long|LONG-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014002|longWaveRadiationIntegratedOverPeriodSpecified|long|LONG-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014003|shortWaveRadiationIntegratedOver24Hours|long|SHORT-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014004|shortWaveRadiationIntegratedOverPeriodSpecified|long|SHORT-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014011|netLongWaveRadiationIntegratedOver24Hours|long|NET LONG-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014012|netLongWaveRadiationIntegratedOverPeriodSpecified|long|NET LONG-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014013|netShortWaveRadiation24Hours|long|NET SHORT-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014014|netShortWaveRadiationIntegratedOverPeriodSpecified|long|NET SHORT-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014015|netRadiationIntegratedOver24Hours|long|NET RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|-16384|15|J m-2|-4|5 +014016|netRadiationIntegratedOverPeriodSpecified|long|NET RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|-16384|15|J m-2|-4|5 +014017|instantaneousLongWaveRadiation|long|INSTANTANEOUS LONG-WAVE RADIATION|W m-2|0|-512|10|W m-2|0|4 +014018|instantaneousShortWaveRadiation|long|INSTANTANEOUS SHORT-WAVE RADIATION|W m-2|0|-2048|12|W m-2|0|4 +014019|surfaceAlbedo|long|SURFACE ALBEDO|%|0|0|7|%|0|3 +014020|globalSolarRadiation24Hours|long|GLOBAL SOLAR RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|0|15|J m-2|-4|5 +014021|globalSolarRadiationIntegratedOverPeriodSpecified|long|GLOBAL SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|0|15|J m-2|-4|5 +014022|diffuseSolarRadiationIntegratedOver24Hours|long|DIFFUSE SOLAR RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|0|15|J m-2|-4|5 +014023|diffuseSolarRadiationIntegratedOverPeriodSpecified|long|DIFFUSE SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|0|15|J m-2|-4|5 +014024|directSolarRadiationIntegratedOver24Hours|long|DIRECT SOLAR RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|0|15|J m-2|-4|5 +014025|directSolarRadiationIntegratedOverPeriodSpecified|long|DIRECT SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|0|15|J m-2|-4|5 +014026|cloudTopAlbedo|long|ALBEDO AT THE TOP OF CLOUDS|%|0|0|7|%|0|3 +014027|albedo|long|ALBEDO|%|0|0|7|%|0|3 +014028|globalSolarRadiationIntegratedOverPeriodSpecified|long|GLOBAL SOLAR RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|0|20|J m-2|-2|6 +014029|diffuseSolarRadiationIntegratedOverPeriodSpecified|long|DIFFUSE SOLAR RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|0|20|J m-2|-2|6 +014030|directSolarRadiationIntegratedOverPeriodSpecified|long|DIRECT SOLAR RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|0|20|J m-2|-2|6 +014031|totalSunshine|long|TOTAL SUNSHINE|min|0|0|11|min|0|4 +014032|totalSunshine|long|TOTAL SUNSHINE|h|0|0|10|h|0|4 +014033|totalSunshine|long|TOTAL SUNSHINE|%|0|0|9|%|0|3 +014034|sunshineOverPeriodSpecified|long|SUNSHINE OVER PERIOD SPECIFIED|min|0|0|11|min|0|4 +014035|solarRadiationFlux|double|SOLAR RADIATION FLUX|W m-2|1|0|14|W m-2|1|5 +014042|bidirectionalReflectance|long|BIDIRECTIONAL REFLECTANCE|%|0|0|7|%|0|3 +014043|channelRadiance|double|CHANNEL RADIANCE|W m-2 sr-1 um-1|4|0|23|W m-2 sr-1 um-1|4|7 +014044|channelRadiance|double|CHANNEL RADIANCE|W m-2 sr-1 cm|7|-100000|22|W m-2 sr-1 cm|7|7 +014045|channelRadiance|long|CHANNEL RADIANCE|W m-2 sr-1 cm|0|0|11|W m-2 sr-1 cm|0|4 +014046|scaledRadiance|long|SCALED RADIANCE|W m-2 sr-1 m|0|-5000|16|W m-2 sr-1 m|0|5 +014047|scaledMeanAvhrrRadiance|long|SCALED MEAN AVHRR RADIANCE|W m-2 sr-1 m|0|0|31|W m-2 sr-1 m|0|10 +014048|scaledStandardDeviationAvhrrRadiance|long|SCALED STANDARD DEVIATION AVHRR RADIANCE|W m-2 sr-1 m|0|0|31|W m-2 sr-1 m|0|10 +014049|noiseEquivalentDeltaRadiance|double|NOISE EQUIVALENT DELTA RADIANCE|W m-2 sr-1 cm|7|0|22|W m-2 sr-1 cm|0|0 +014050|emissivity|double|EMISSIVITY|%|1|0|10|%|1|4 +014051|directSolarRadiationIntegratedOverLastHour|long|DIRECT SOLAR RADIATION INTEGRATED OVER LAST HOUR|J m-2|-3|0|14|J m-2|-3|4 +014052|globalUpwardSolarRadiationIntegratedOverPeriodSpecified|long|GLOBAL UPWARD SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|-1048574|20|J m-2|-2|7 +014053|netRadiationIntegratedOverPeriodSpecified|long|NET RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|-1048574|21|J m-2|-2|7 +014054|photosyntheticallyActiveRadiationIntegratedOverPeriodSpecified|long|PHOTOSYNTHETICALLY ACTIVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|0|16|J m-2|-3|5 +014055|solarActivityIndex|long|SOLAR ACTIVITY INDEX|Numeric|0|-32768|16|Numeric|0|5 +014056|backgroundLuminance|long|BACKGROUND LUMINANCE|cd m-2|0|0|18|cd m-2|0|6 +014057|soilHeatFlux|long|SOIL HEAT FLUX|J m-2|-2|-1048574|21|J m-2|-2|7 +014058|correctedCrossPoleBackscatter|double|CORRECTED CROSS-POLE BACKSCATTER|dB|2|-5000|13|dB|2|5 +014072|globalUvIrradiation|long|GLOBAL UV IRRADIATION|J m-2|0|-4000000|23|J m-2|0|7 +015001|totalOzone|long|TOTAL OZONE|DU|0|0|10|DU|0|4 +015002|airMassSlantPathAt22Km|long|AIR MASS (SLANT PATH AT 22 KM)|Numeric|2|0|10|Numeric|2|3 +015003|measuredOzonePartialPressureSounding|double|MEASURED OZONE PARTIAL PRESSURE (SOUNDING)|Pa|4|0|9|nbar|0|3 +015004|ozoneSoundingCorrectionFactor|long|OZONE SOUNDING CORRECTION FACTOR (CF)|Numeric|3|0|11|Numeric|3|4 +015005|ozoneP|long|OZONE P|DU|0|0|10|DU|0|3 +015006|log10OfNumberDensityOfAtmosphere|double|LOG10 OF NUMBER DENSITY OF ATMOSPHERE|log (m-3)|5|1800000|20|log (m-3)|5|7 +015007|estimatedAmountOfChemicalConstituent|double|ESTIMATED AMOUNT OF CHEMICAL CONSTITUENT|DU|2|0|16|DU|2|6 +015008|significandOfVolumetricMixingRatio|long|SIGNIFICAND OF VOLUMETRIC MIXING RATIO|Numeric|0|0|10|Numeric|0|4 +015009|log10OfNumberDensityOfOzone|double|LOG10 OF NUMBER DENSITY OF OZONE|log (m-3)|5|1200000|20|log (m-3)|5|7 +015011|log10IntegratedElectronDensity|double|LOG10 OF INTEGRATED ELECTRON DENSITY|log (m-2)|3|14000|13|log (m-2)|3|4 +015012|totalElectronCountPerSquareMetre|long|TOTAL ELECTRON COUNT PER SQUARE METRE|m-2|-16|0|6|m-2|-16|2 +015015|maxImageSpectralComponentBeforeNormalization|long|MAXIMUM IMAGE SPECTRAL COMPONENT BEFORE NORMALIZATION|Numeric|0|0|31|Numeric|0|10 +015020|integratedOzoneDensity|double|INTEGRATED OZONE DENSITY|kg m-2|8|0|21|kg m-2|8|7 +015021|integratedMassDensity|double|INTEGRATED MASS DENSITY|kg m-2|11|0|31|kg m-2|11|10 +015022|extendedIntegratedMassDensity|double|EXTENDED INTEGRATED MASS DENSITY|kg m-2|1|-100000000|31|kg m-2|1|10 +015024|opticalDepth|long|OPTICAL DEPTH|Numeric|4|0|24|Numeric|4|8 +015025|pollutantType|table|TYPE OF POLLUTANT|CODE TABLE|0|0|4|CODE TABLE|0|2 +015026|moleFractionOfPollutant|double|CONCENTRATION OF POLLUTANT (MOL MOL-1)|mol/mol|9|0|9|mol/mol|9|3 +015027|massConcentrationOfPollutant|double|CONCENTRATION OF POLLUTANT (KG M-3)|kg m-3|9|0|10|kg m-3|9|4 +015028|moleFractionOfAtmosphericConstituentOrPollutantInDryAir|double|MOLE FRACTION OF ATMOSPHERIC CONSTITUENT/POLLUTANT IN DRY AIR|0/00|5|0|16|0/00|5|5 +015029|extinctionCoefficient|double|EXTINCTION COEFFICIENT|/m|9|0|30|/m|9|10 +015030|aerosolContaminationIndex|long|AEROSOL CONTAMINATION INDEX|Numeric|2|-1000|12|Numeric|2|4 +015031|atmosphericPathDelayInSatelliteSignal|double|ATMOSPHERIC PATH DELAY IN SATELLITE SIGNAL|m|4|10000|15|m|4|5 +015032|estimatedErrorInAtmosphericPathDelay|double|ESTIMATED ERROR IN ATMOSPHERIC PATH DELAY|m|4|0|10|m|4|4 +015033|differenceInPathDelaysForLimbViewsAtExtremesOfScan|double|DIFFERENCE IN PATH DELAYS FOR LIMB VIEWS AT EXTREMES OF SCAN|m|5|-10000|15|m|5|5 +015034|estimatedErrorInPathDelayDifference|double|ESTIMATED ERROR IN PATH DELAY DIFFERENCE|m|5|0|14|m|5|5 +015035|componentOfZenithPathDelayDueToWaterVapour|double|COMPONENT OF ZENITH PATH DELAY DUE TO WATER VAPOUR|m|4|0|14|m|4|5 +015036|atmosphericRefractivity|double|ATMOSPHERIC REFRACTIVITY|N units|3|0|19|N units|3|6 +015037|bendingAngle|double|BENDING ANGLE|rad|8|-100000|23|rad|8|7 +015038|pathDelayDueToNeutralAtmosphere|double|PATH DELAY DUE TO NEUTRAL ATMOSPHERE|m|4|0|20|m|4|11 +015039|estimatedErrorInNeutralAtmospherePathDelay|double|ESTIMATED ERROR IN NEUTRAL ATMOSPHERE PATH DELAY|m|4|0|14|m|4|9 +015041|sulphurDioxideIndex|long|SULPHUR DIOXIDE INDEX|Numeric|2|-1200|14|Numeric|2|4 +015042|reflectance|double|REFLECTANCE|%|2|0|14|%|2|5 +015043|numberOfAveragingKernelLayers|long|NUMBER OF AVERAGING KERNEL LAYERS|Numeric|0|0|10|Numeric|0|0 +015044|averagingKernelValue|long|AVERAGING KERNEL VALUE|Numeric|6|-5000000|31|Numeric|0|0 +015045|sulphurDioxide|double|SULPHUR DIOXIDE|DU|2|-2000|15|DU|2|5 +015046|volcanoContaminationIndex|long|VOLCANO CONTAMINATION INDEX|Numeric|2|-1000|11|Numeric|2|4 +015049|aerosolAngstromWavelengthExponent|long|AEROSOL ANGSTROM WAVELENGTH EXPONENT|Numeric|3|-2000|14|Numeric|3|5 +015051|meteorologicalOpticalRange|long|METEOROLOGICAL OPTICAL RANGE|m|0|0|18|m|0|6 +015052|log10OfNumberDensityOfAerosolParticlesWithDiameterGreaterThan5Nm|double|LOG10 OF NUMBER DENSITY OF AEROSOL PARTICLES WITH DIAMETER GREATER THAN 5 NM|log (m-3)|1|60|6|log (m-3)|1|3 +015053|log10OfNumberDensityOfAerosolParticlesWithDiameterGreaterThan14Nm|double|LOG10 OF NUMBER DENSITY OF AEROSOL PARTICLES WITH DIAMETER GREATER THAN 14 NM|log (m-3)|2|600|9|log (m-3)|2|4 +015054|log10OfNumberDensityOfAerosolParticlesWithDiameterBetween0p25And2p5|double|LOG10 OF NUMBER DENSITY OF AEROSOL PARTICLES WITH DIAMETER BETWEEN 0.25 AND 2.5 UM|log (m-3)|2|550|9|log (m-3)|2|4 +015055|nonVolatileAerosolRatio|long|NON VOLATILE AEROSOL RATIO|Numeric|2|0|7|Numeric|2|3 +015062|aerosolOpticalThickness|long|AEROSOL OPTICAL THICKNESS|Numeric|3|-1000|14|Numeric|3|5 +015063|attenuatedBackscatter|double|ATTENUATED BACKSCATTER|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015064|uncertaintyInAttenuatedBackscatter|double|UNCERTAINTY IN ATTENUATED BACKSCATTER|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015065|particleBackscatterCoefficient|double|PARTICLE BACKSCATTER COEFFICIENT|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015066|uncertaintyInParticleBackscatterCoefficient|double|UNCERTAINTY IN PARTICLE BACKSCATTER COEFFICIENT|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015067|particleExtinctionCoefficient|double|PARTICLE EXTINCTION COEFFICIENT|/m|8|0|20|/m|8|7 +015068|uncertaintyInParticleExtinctionCoefficient|double|UNCERTAINTY IN PARTICLE EXTINCTION COEFFICIENT|/m|8|0|20|/m|8|7 +015069|particleLidarRatio|double|PARTICLE LIDAR RATIO|sr|2|0|14|sr|2|5 +015070|uncertaintyInLidarRatio|double|UNCERTAINTY IN LIDAR RATIO|sr|2|0|14|sr|2|5 +015071|particleDepolarizationRatio|double|PARTICLE DEPOLARIZATION RATIO|%|2|0|14|%|2|5 +015072|uncertaintyInDepolarizationRatio|double|UNCERTAINTY IN DEPOLARIZATION RATIO|%|2|0|14|%|2|5 +015073|attenuatedBackscatter1|double|ATTENUATED BACKSCATTER|m-1 sr-1|8|-524288|20|m-1 sr-1|8|7 +015074|particleBackscatterCoefficient1|double|PARTICLE BACKSCATTER COEFFICIENT|m-1 sr-1|8|-524288|20|m-1 sr-1|8|7 +015075|particleExtinctionCoefficient1|double|PARTICLE EXTINCTION COEFFICIENT|m|8|-524288|20|/m|8|7 +015076|particleLidarRatio1|double|PARTICLE LIDAR RATIO|sr|1|-2048|13|sr|1|5 +015077|uncertaintyInLidarRatio1|double|UNCERTAINTY IN LIDAR RATIO|sr|1|0|12|sr|1|5 +015078|particleDepolarizationRatio1|double|PARTICLE DEPOLARIZATION RATIO|%|2|-8192|15|%|2|5 +015079|zenithPathDelayDueToNeutralAtmosphere|double|ZENITH PATH DELAY DUE TO NEUTRAL ATMOSPHERE|m|4|0|15|m|4|9 +015080|estimatedErrorInNeutralAtmosphereZenithPathDelay|double|ESTIMATED ERROR IN NEUTRAL ATMOSPHERE ZENITH PATH DELAY|m|4|0|12|m|4|8 +015081|wetPathDelayDueToNeutralAtmosphere|double|WET PATH DELAY DUE TO NEUTRAL ATMOSPHERE|m|4|0|18|m|4|10 +015082|pathIntegratedWaterVapour|double|PATH INTEGRATED WATER VAPOUR|kg m-2|1|0|16|kg m-2|1|10 +015083|gnssDerivedNeutralAtmosphereGradient|double|GNSS DERIVED NEUTRAL ATMOSPHERE GRADIENT|m|5|-8192|14|m|5|9 +015084|gnssLeastSquaresResidual|double|GNSS LEAST SQUARES RESIDUAL|m|4|0|14|m|4|9 +015085|gnssMultiPathDelay|double|GNSS MULTI-PATH DELAY|m|4|0|14|m|4|9 +015086|gnssHydrostaticMappingFunction|long|GNSS HYDROSTATIC MAPPING FUNCTION|Numeric|3|0|16|Numeric|3|10 +015087|gnssWetMappingFunction|long|GNSS WET MAPPING FUNCTION|Numeric|3|0|16|Numeric|3|10 +015088|gnssGradientMappingFunction|long|GNSS GRADIENT MAPPING FUNCTION|Numeric|3|0|16|Numeric|3|10 +015089|zenithPathDelayDueToNeutralHydrostaticAtmosphere|double|ZENITH PATH DELAY DUE TO NEUTRAL HYDROSTATIC ATMOSPHERE|m|4|0|15|m|4|9 +015090|pathDelayDueToNeutralHydrostaticAtmosphere|double|PATH DELAY DUE TO NEUTRAL HYDROSTATIC ATMOSPHERE|m|4|0|20|m|4|11 +019001|synopticFeatureType|table|TYPE OF SYNOPTIC FEATURE|CODE TABLE|0|0|6|CODE TABLE|0|2 +019002|effectiveRadiusOfFeature|long|EFFECTIVE RADIUS OF FEATURE|m|-2|0|12|m|-2|4 +019003|windSpeedThreshold|long|WIND SPEED THRESHOLD|m/s|0|0|8|m/s|0|3 +019004|effectiveRadiusWithRespectToWindSpeedsAboveThreshold|long|EFFECTIVE RADIUS WITH RESPECT TO WIND SPEEDS ABOVE THRESHOLD|m|-2|0|12|m|-2|4 +019005|featureDirectionOfMotion|long|DIRECTION OF MOTION OF FEATURE|deg|0|0|9|deg|0|3 +019006|speedOfMotionOfFeature|double|SPEED OF MOTION OF FEATURE|m/s|2|0|14|m/s|2|5 +019007|effectiveRadiusOfFeature|long|EFFECTIVE RADIUS OF FEATURE|m|-3|0|12|m|-3|4 +019008|verticalExtentOfCirculation|table|VERTICAL EXTENT OF CIRCULATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +019009|effectiveRadiusWithRespectToWindSpeedsAboveThresholdLargeStorms|long|EFFECTIVE RADIUS WITH RESPECT TO WIND SPEEDS ABOVE THRESHOLD (LARGE STORMS)|m|-3|0|12|m|-3|4 +019010|methodForTrackingCentreOfSynopticFeature|table|METHOD FOR TRACKING THE CENTRE OF SYNOPTIC FEATURE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019100|timeIntervalToCalculateMovementOfTropicalCyclone|table|TIME INTERVAL TO CALCULATE THE MOVEMENT OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019101|accuracyOfPositionOfCentreOfTropicalCyclone|table|ACCURACY OF THE POSITION OF THE CENTRE OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019102|shapeAndDefinitionOfEyeOfTropicalCyclone|table|SHAPE AND DEFINITION OF THE EYE OF THE TROPICAL CYCLONE|CODE TABLE|0|0|3|CODE TABLE|0|1 +019103|diameterOfMajorAxisOfEyeOfTropicalCyclone|table|DIAMETER OF MAJOR AXIS OF THE EYE OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019104|changeInCharacterOfEyeDuring30Minutes|table|CHANGE IN CHARACTER OF THE EYE DURING THE 30 MINUTES|CODE TABLE|0|0|4|CODE TABLE|0|2 +019105|distanceBetweenEndOfSpiralBandAndCentre|table|DISTANCE BETWEEN THE END OF SPIRAL BAND AND THE CENTRE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019106|identificationNumberOfTropicalCyclone|long|IDENTIFICATION NUMBER OF TROPICAL CYCLONE|Numeric|0|0|7|Numeric|0|3 +019107|timeIntervalOverWhichMovementOfTropicalCycloneHasBeenCalculated|table|TIME INTERVAL OVER WHICH THE MOVEMENT OF THE TROPICAL CYCLONE HAS BEEN CALCULATED|CODE TABLE|0|0|4|CODE TABLE|0|2 +019108|accuracyOfGeographicalPositionOfTropicalCyclone|table|ACCURACY OF GEOGRAPHICAL POSITION OF THE TROPICAL CYCLONE|CODE TABLE|0|0|3|CODE TABLE|0|1 +019109|meanDiameterOfOvercastCloudOfTropicalCyclone|table|MEAN DIAMETER OF THE OVERCAST CLOUD OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019110|apparent24HourChangeInIntensityOfTropicalCyclone|table|APPARENT 24-HOUR CHANGE IN INTENSITY OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019111|currentIntensityNumberOfTropicalCyclone|long|CURRENT INTENSITY (CI) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019112|dataTropicalNumberOfTropicalCyclone|long|DATA TROPICAL (DT) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019113|cloudPatternTypeOfDtNumber|table|CLOUD PATTERN TYPE OF THE DT-NUMBER|CODE TABLE|0|0|4|CODE TABLE|0|2 +019114|modelExpectedTropicalNumberOfTropicalCyclone|long|MODEL EXPECTED TROPICAL (MET) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019115|trendOfPast24HourChangeDevelopedWeakened|long|TREND OF THE PAST 24-HOUR CHANGE (+: DEVELOPED, -: WEAKENED)|Numeric|1|-30|6|Numeric|1|2 +019116|patternTropicalNumberOfTropicalCyclone|long|PATTERN TROPICAL (PT) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019117|cloudPictureTypeOfPtNumber|table|CLOUD PICTURE TYPE OF THE PT-NUMBER|CODE TABLE|0|0|3|CODE TABLE|0|1 +019118|finalTropicalNumberOfTropicalCyclone|long|FINAL TROPICAL (T) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019119|finalTNumberType|table|TYPE OF THE FINAL T-NUMBER|CODE TABLE|0|0|3|CODE TABLE|0|1 +019150|typhoonInternationalCommonNumberTyphoonCommittee|string|TYPHOON INTERNATIONAL COMMON NUMBER (TYPHOON COMMITTEE)|CCITT IA5|0|0|32|Character|0|4 +020001|horizontalVisibility|long|HORIZONTAL VISIBILITY|m|-1|0|13|m|-1|4 +020002|verticalVisibility|long|VERTICAL VISIBILITY|m|-1|0|7|m|-1|3 +020003|presentWeather|table|PRESENT WEATHER|CODE TABLE|0|0|9|CODE TABLE|0|3 +020004|pastWeather1|table|PAST WEATHER (1)|CODE TABLE|0|0|5|CODE TABLE|0|2 +020005|pastWeather2|table|PAST WEATHER (2)|CODE TABLE|0|0|5|CODE TABLE|0|2 +020006|flightRules|table|FLIGHT RULES|CODE TABLE|0|0|3|CODE TABLE|0|1 +020008|cloudDistributionForAviation|table|CLOUD DISTRIBUTION FOR AVIATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +020009|generalWeatherIndicatorTafOrMetar|table|GENERAL WEATHER INDICATOR (TAF/METAR)|CODE TABLE|0|0|4|CODE TABLE|0|2 +020010|cloudCoverTotal|long|CLOUD COVER (TOTAL)|%|0|0|7|%|0|3 +020011|cloudAmount|table|CLOUD AMOUNT|CODE TABLE|0|0|4|CODE TABLE|0|2 +020012|cloudType|table|CLOUD TYPE|CODE TABLE|0|0|6|CODE TABLE|0|2 +020013|heightOfBaseOfCloud|long|HEIGHT OF BASE OF CLOUD|m|-1|-40|11|m|-1|4 +020014|heightOfTopOfCloud|long|HEIGHT OF TOP OF CLOUD|m|-1|-40|11|m|-1|4 +020015|pressureAtBaseOfCloud|long|PRESSURE AT BASE OF CLOUD|Pa|-1|0|14|Pa|-1|5 +020016|pressureAtTopOfCloud|long|PRESSURE AT TOP OF CLOUD|Pa|-1|0|14|Pa|-1|5 +020017|cloudTopDescription|table|CLOUD TOP DESCRIPTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020018|tendencyOfRunwayVisualRange|table|TENDENCY OF RUNWAY VISUAL RANGE|CODE TABLE|0|0|2|CODE TABLE|0|1 +020019|significantWeather|string|SIGNIFICANT PRESENT OR FORECAST WEATHER|CCITT IA5|0|0|72|Character|0|9 +020020|significantRecentWeatherPhenomena|string|SIGNIFICANT RECENT WEATHER PHENOMENA|CCITT IA5|0|0|32|Character|0|4 +020021|precipitationType|flag|TYPE OF PRECIPITATION|FLAG TABLE|0|0|30|FLAG TABLE|0|10 +020022|characterOfPrecipitation|table|CHARACTER OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020023|otherWeatherPhenomena|flag|OTHER WEATHER PHENOMENA|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +020024|intensityOfPhenomena|table|INTENSITY OF PHENOMENA|CODE TABLE|0|0|3|CODE TABLE|0|1 +020025|obscuration|flag|OBSCURATION|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +020026|characterOfObscuration|table|CHARACTER OF OBSCURATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020027|phenomenaOccurrence|flag|PHENOMENA OCCURRENCE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +020028|expectedChangeInIntensity|table|EXPECTED CHANGE IN INTENSITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +020029|rainFlag|table|RAIN FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +020031|iceDepositThickness|double|ICE DEPOSIT (THICKNESS)|m|2|0|7|m|2|3 +020032|rateOfIceAccretionEstimated|table|RATE OF ICE ACCRETION (ESTIMATED)|CODE TABLE|0|0|3|CODE TABLE|0|1 +020033|causeOfIceAccretion|flag|CAUSE OF ICE ACCRETION|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +020034|seaIceConcentration|table|SEA ICE CONCENTRATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +020035|amountAndTypeOfIce|table|AMOUNT AND TYPE OF ICE|CODE TABLE|0|0|4|CODE TABLE|0|2 +020036|iceSituation|table|ICE SITUATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +020037|iceDevelopment|table|ICE DEVELOPMENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +020038|iceEdgeBearing|long|BEARING OF ICE EDGE|deg|0|0|12|deg|0|3 +020039|iceDistance|long|ICE DISTANCE|m|-1|0|13|m|-1|4 +020040|evolutionOfDriftSnow|table|EVOLUTION OF DRIFT SNOW|CODE TABLE|0|0|4|CODE TABLE|0|2 +020041|airframeIcing|table|AIRFRAME ICING|CODE TABLE|0|0|4|CODE TABLE|0|2 +020042|airframeIcingPresent|table|AIRFRAME ICING PRESENT|CODE TABLE|0|0|2|CODE TABLE|0|1 +020043|peakLiquidWaterContent|double|PEAK LIQUID WATER CONTENT|kg m-3|4|0|7|kg m-3|4|2 +020044|averageLiquidWaterContent|double|AVERAGE LIQUID WATER CONTENT|kg m-3|4|0|7|kg m-3|4|2 +020045|supercooledLargeDropletConditions|table|SUPERCOOLED LARGE DROPLET (SLD) CONDITIONS|CODE TABLE|0|0|2|CODE TABLE|0|1 +020048|evolutionOfFeature|table|EVOLUTION OF FEATURE|CODE TABLE|0|0|4|CODE TABLE|0|2 +020050|cloudIndex|table|CLOUD INDEX|CODE TABLE|0|0|8|CODE TABLE|0|3 +020051|amountOfLowClouds|long|AMOUNT OF LOW CLOUDS|%|0|0|7|%|0|3 +020052|amountOfMiddleClouds|long|AMOUNT OF MIDDLE CLOUDS|%|0|0|7|%|0|3 +020053|amountOfHighClouds|long|AMOUNT OF HIGH CLOUDS|%|0|0|7|%|0|3 +020054|trueDirectionFromWhichAPhenomenonOrCloudsAreMovingOrInWhichTheyAreObserved|long|TRUE DIRECTION FROM WHICH A PHENOMENON OR CLOUDS ARE MOVING OR IN WHICH THEY ARE OBSERVED|deg|0|0|9|deg|0|3 +020055|stateOfSkyInTropics|table|STATE OF SKY IN THE TROPICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020056|cloudPhase|table|CLOUD PHASE|CODE TABLE|0|0|3|CODE TABLE|0|1 +020058|visibilitySeawardsFromACoastalStation|long|VISIBILITY SEAWARDS FROM A COASTAL STATION|m|-1|0|13|m|-1|4 +020059|minimumHorizontalVisibility|long|MINIMUM HORIZONTAL VISIBILITY|m|-1|0|9|m|-1|3 +020060|prevailingHorizontalVisibility|long|PREVAILING HORIZONTAL VISIBILITY|m|-1|0|10|m|-1|4 +020061|runwayVisualRangeRvr|long|RUNWAY VISUAL RANGE (RVR)|m|0|0|12|m|0|4 +020062|stateOfGround|table|STATE OF THE GROUND (WITH OR WITHOUT SNOW)|CODE TABLE|0|0|5|CODE TABLE|0|2 +020063|specialPhenomena|table|SPECIAL PHENOMENA|CODE TABLE|0|0|10|CODE TABLE|0|4 +020065|snowCover|long|SNOW COVER|%|0|0|7|%|0|3 +020066|maximumDiameterOfHailstones|double|MAXIMUM DIAMETER OF HAILSTONES|m|3|0|8|m|3|3 +020067|diameterOfDeposit|double|DIAMETER OF DEPOSIT|m|3|0|9|m|3|3 +020070|minimumNumberOfAtmospherics|long|MINIMUM NUMBER OF ATMOSPHERICS|Numeric|0|0|7|Numeric|0|3 +020071|accuracyOfFixAndRateOfAtmospherics|table|ACCURACY OF FIX AND RATE OF ATMOSPHERICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020079|snowOrIceCrystalsIndicator|table|SNOW OR ICE CRYSTALS INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +020081|cloudAmountInSegment|long|CLOUD AMOUNT IN SEGMENT|%|0|0|7|%|0|3 +020082|amountSegmentCloudFree|long|AMOUNT SEGMENT CLOUD FREE|%|0|0|7|%|0|3 +020083|amountOfSegmentCoveredByScene|long|AMOUNT OF SEGMENT COVERED BY SCENE|%|0|0|7|%|0|3 +020085|generalConditionOfRunway|table|GENERAL CONDITION OF RUNWAY|CODE TABLE|0|0|4|CODE TABLE|0|1 +020086|runwayDeposits|table|RUNWAY DEPOSITS|CODE TABLE|0|0|4|CODE TABLE|0|1 +020087|runwayContamination|table|RUNWAY CONTAMINATION|CODE TABLE|0|0|4|CODE TABLE|0|1 +020088|depthOfRunwayDeposits|double|DEPTH OF RUNWAY DEPOSITS|m|3|0|12|m|0|4 +020089|runwayFrictionCoefficient|table|RUNWAY FRICTION COEFFICIENT|CODE TABLE|0|0|7|CODE TABLE|0|2 +020090|specialClouds|table|SPECIAL CLOUDS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020091|verticalVisibility|long|VERTICAL VISIBILITY|ft|-2|0|10|ft|-2|3 +020092|heightOfBaseOfCloud|long|HEIGHT OF BASE OF CLOUD|ft|-2|0|10|ft|-2|3 +020093|heightOfInversion|long|HEIGHT OF INVERSION|m|-1|0|8|m|-1|3 +020095|iceProbability|long|ICE PROBABILITY|Numeric|3|0|10|Numeric|3|4 +020096|iceAgeAParameter|double|ICE AGE (A PARAMETER)|dB|2|-4096|13|dB|2|4 +020101|locustAcridianName|table|LOCUST (ACRIDIAN) NAME|CODE TABLE|0|0|4|CODE TABLE|0|2 +020102|locustMaturityColour|table|LOCUST (MATURITY) COLOUR|CODE TABLE|0|0|4|CODE TABLE|0|2 +020103|stageOfDevelopmentOfLocusts|table|STAGE OF DEVELOPMENT OF LOCUSTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020104|organizationStateOfSwarm|table|ORGANIZATION STATE OF SWARM OR BAND OF LOCUSTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020105|sizeOfSwarmOrBandOfLocustsAndDurationOfPassageOfSwarm|table|SIZE OF SWARM OR BAND OF LOCUSTS AND DURATION OF PASSAGE OF SWARM|CODE TABLE|0|0|4|CODE TABLE|0|2 +020106|locustPopulationDensity|table|LOCUST POPULATION DENSITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +020107|directionOfMovementsOfLocustSwarm|table|DIRECTION OF MOVEMENTS OF LOCUST SWARM|CODE TABLE|0|0|4|CODE TABLE|0|2 +020108|extentOfVegetation|table|EXTENT OF VEGETATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020111|xAxisErrorEllipseMajorComponent|long|X-AXIS ERROR ELLIPSE MAJOR COMPONENT|m|-1|0|17|m|-1|6 +020112|yAxisErrorEllipseMinorComponent|long|Y-AXIS ERROR ELLIPSE MINOR COMPONENT|m|-1|0|17|m|-1|6 +020113|zAxisErrorEllipseComponent|long|Z-AXIS ERROR ELLIPSE COMPONENT|m|-1|0|17|m|-1|6 +020114|angleOfXAxisInErrorEllipse|double|ANGLE OF X-AXIS IN ERROR ELLIPSE|deg|2|-18000|16|deg|2|5 +020115|angleOfZAxisInErrorEllipse|double|ANGLE OF Z-AXIS IN ERROR ELLIPSE|deg|2|-18000|16|deg|2|5 +020116|emissionHeightOfCloudStroke|long|EMISSION HEIGHT OF CLOUD STROKE|m|0|0|16|m|0|5 +020117|amplitudeOfLightningStrike|long|AMPLITUDE OF LIGHTNING STRIKE|A|-1|-32000|16|A|-1|5 +020118|lightningDetectionError|long|LIGHTNING DETECTION ERROR|m|0|0|19|m|0|6 +020119|lightningDischargePolarity|table|LIGHTNING DISCHARGE POLARITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +020121|thresholdValueForPolarityDecision|double|THRESHOLD VALUE FOR POLARITY DECISION|V|3|0|16|V|3|5 +020122|thresholdValueForPolarityDecision|long|THRESHOLD VALUE FOR POLARITY DECISION|A|0|0|16|A|0|5 +020123|minimumDirectionThreshold|double|MINIMUM THRESHOLD FOR DETECTION|V/m|3|0|16|V/m|3|5 +020124|lightningStrokeOrFlash|table|LIGHTNING STROKE OR FLASH|CODE TABLE|0|0|2|CODE TABLE|0|1 +020126|lightningRateOfDischarge|long|LIGHTNING RATE OF DISCHARGE|/h|0|0|23|/h|0|7 +020127|lightningDistanceFromStation|long|LIGHTNING - DISTANCE FROM STATION|m|-3|0|8|m|-3|3 +020128|lightningDirectionFromStation|double|LIGHTNING - DIRECTION FROM STATION|deg|1|0|12|deg|1|4 +020129|lightningDensityStrokeFlashOrEvent|double|LIGHTNING DENSITY (STROKE, FLASH OR EVENT)|m-2|6|0|10|m-2|6|4 +020130|cloudHydrometeorConcentration|long|CLOUD HYDROMETEOR CONCENTRATION|Numeric|0|0|10|Numeric|0|3 +020131|effectiveRadiusOfCloudHydrometeors|double|EFFECTIVE RADIUS OF CLOUD HYDROMETEORS|m|5|0|6|m|5|2 +020132|cloudLiquidWaterContent|double|CLOUD LIQUID WATER CONTENT|kg m-3|5|0|11|kg m-3|5|4 +020133|hydrometeorRadius|double|HYDROMETEOR RADIUS|m|5|0|6|m|5|2 +020135|iceMassOnARod|double|ICE MASS (ON A ROD)|kg/m|1|0|10|kg/m|1|3 +020136|supplementaryCloudType|table|SUPPLEMENTARY CLOUD TYPE|CODE TABLE|0|0|9|CODE TABLE|0|3 +020137|evolutionOfClouds|table|EVOLUTION OF CLOUDS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020138|roadSurfaceCondition|table|ROAD SURFACE CONDITION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020139|finalCloudModelAssumption|table|FINAL CLOUD MODEL ASSUMPTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020140|lightningArea|long|LIGHTNING AREA|m2|0|0|30|m2|0|0 +020141|lightningEnergy|double|LIGHTNING ENERGY|J|19|0|30|J|0|0 +020142|lightningDetectionEfficiency|long|LIGHTNING DETECTION EFFICIENCY|%|0|0|7|%|0|0 +020143|liquidCloud|table|LIQUID CLOUD|CODE TABLE|0|0|2|CODE TABLE|0|1 +021001|horizontalReflectivity|long|HORIZONTAL REFLECTIVITY|dB|0|-64|7|dB|0|3 +021002|verticalReflectivity|long|VERTICAL REFLECTIVITY|dB|0|-64|7|dB|0|3 +021003|differentialReflectivity|double|DIFFERENTIAL REFLECTIVITY|dB|1|-5|7|dB|1|3 +021004|differentialReflectivity|double|DIFFERENTIAL REFLECTIVITY|dB|2|-800|11|dB|2|4 +021005|linearDepolarizationRatio|long|LINEAR DEPOLARIZATION RATIO|dB|0|-65|6|dB|0|2 +021006|circularDepolarizationRatio|long|CIRCULAR DEPOLARIZATION RATIO|dB|0|-65|6|dB|0|2 +021007|radarReflectivityFactor|double|RADAR REFLECTIVITY FACTOR|dB|2|-9000|15|dB|0|0 +021008|uncertaintyInRadarReflectivityFactor|double|UNCERTAINTY IN RADAR REFLECTIVITY FACTOR|dB|2|0|13|dB|0|0 +021009|verticalDopplerVelocity|double|VERTICAL DOPPLER VELOCITY|m/s|2|-10000|15|m/s|0|0 +021010|uncertaintyInVerticalDopplerVelocity|double|UNCERTAINTY IN VERTICAL DOPPLER VELOCITY|m/s|2|-10000|15|m/s|0|0 +021011|dopplerMeanVelocityXDirection|long|DOPPLER MEAN VELOCITY IN X-DIRECTION|m/s|0|-128|8|m/s|0|3 +021012|dopplerMeanVelocityYDirection|long|DOPPLER MEAN VELOCITY IN Y-DIRECTION|m/s|0|-128|8|m/s|0|3 +021013|dopplerMeanVelocityZDirection|long|DOPPLER MEAN VELOCITY IN Z-DIRECTION|m/s|0|-128|8|m/s|0|3 +021014|dopplerMeanVelocityRadial|double|DOPPLER MEAN VELOCITY (RADIAL)|m/s|1|-4096|13|m/s|1|4 +021017|dopplerVelocitySpectralWidth|double|DOPPLER VELOCITY SPECTRAL WIDTH|m/s|1|0|8|m/s|1|3 +021018|extendedNyquistVelocity|double|EXTENDED NYQUIST VELOCITY|m/s|1|0|10|m/s|1|4 +021019|highNyquistVelocity|double|HIGH NYQUIST VELOCITY|m/s|1|0|10|m/s|1|3 +021021|echoTops|long|ECHO TOPS|m|-3|0|4|m|-3|2 +021022|rangeBinOffset|double|RANGE BIN OFFSET|m|1|0|14|m|1|5 +021023|rangeBinSize|long|RANGE BIN SIZE|m|0|0|14|m|0|5 +021024|azimuthOffset|double|AZIMUTH OFFSET|deg|1|0|12|deg|1|4 +021025|azimuthalResolution|double|AZIMUTHAL RESOLUTION|deg|1|0|8|deg|1|3 +021026|ascatSigma0Usability|table|ASCAT SIGMA-0 USABILITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +021027|landContributionRatio|long|LAND CONTRIBUTION RATIO|Numeric|4|0|14|Numeric|4|5 +021028|differentialPhase|double|DIFFERENTIAL PHASE|deg|1|0|12|deg|1|4 +021029|crossPolarizationCorrelationCoefficient|long|CROSS-POLARIZATION CORRELATION COEFFICIENT|Numeric|2|-100|8|Numeric|2|3 +021030|signalToNoiseRatio|long|SIGNAL TO NOISE RATIO|dB|0|-32|8|dB|0|3 +021031|verticallyIntegratedLiquidWaterContent|long|VERTICALLY INTEGRATED LIQUID-WATER CONTENT|kg m-2|0|0|7|kg m-2|0|3 +021036|radarRainfallIntensity|double|RADAR RAINFALL INTENSITY|m/s|7|0|12|m/s|7|4 +021041|brightBandHeight|long|BRIGHT-BAND HEIGHT|m|-2|0|8|m|-2|3 +021051|signalPowerAbove1Mw|long|SIGNAL POWER ABOVE 1 MW|dB|0|-256|8|dB|0|3 +021062|backscatter|double|BACKSCATTER|dB|2|-5000|13|dB|2|4 +021063|radiometricResolutionNoiseValue|double|RADIOMETRIC RESOLUTION (NOISE VALUE)|%|1|0|10|%|1|4 +021064|clutterNoiseEstimate|long|CLUTTER NOISE ESTIMATE|Numeric|0|0|8|Numeric|0|3 +021065|missingPacketCounter|long|MISSING PACKET COUNTER|Numeric|0|-127|8|Numeric|0|3 +021066|waveScatterometerProductConfidenceData|flag|WAVE SCATTEROMETER PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +021067|windProductConfidenceData|flag|WIND PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|13|FLAG TABLE|0|5 +021068|radarAltimeterProductConfidenceData|flag|RADAR ALTIMETER PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +021069|sstProductConfidenceData|flag|SST PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|10|FLAG TABLE|0|4 +021070|sstProductConfidenceDataSadist2|flag|SST PRODUCT CONFIDENCE DATA (SADIST-2)|FLAG TABLE|0|0|23|FLAG TABLE|0|6 +021071|peakiness|long|PEAKINESS|Numeric|0|0|16|Numeric|0|5 +021072|satelliteAltimeterCalibrationStatus|flag|SATELLITE ALTIMETER CALIBRATION STATUS|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +021073|satelliteAltimeterInstrumentMode|flag|SATELLITE ALTIMETER INSTRUMENT MODE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +021075|imageSpectrumIntensity|long|IMAGE SPECTRUM INTENSITY|Numeric|0|0|8|Numeric|0|3 +021076|representationOfIntensities|table|REPRESENTATION OF INTENSITIES|CODE TABLE|0|0|3|CODE TABLE|0|1 +021077|altitudeCorrectionIonosphere|double|ALTITUDE CORRECTION (IONOSPHERE)|m|3|0|14|m|3|5 +021078|altitudeCorrectionDryTroposphere|double|ALTITUDE CORRECTION (DRY TROPOSPHERE)|m|3|0|9|m|3|3 +021079|altitudeCorrectionWetTroposphere|double|ALTITUDE CORRECTION (WET TROPOSPHERE)|m|3|2000|10|m|3|4 +021080|altitudeCorrectionCalibrationConstant|double|ALTITUDE CORRECTION (CALIBRATION CONSTANT)|m|3|0|11|m|3|4 +021081|openLoopCorrectionHeightTimeLoop|double|OPEN LOOP CORRECTION (HEIGHT-TIME LOOP)|m|3|0|10|m|3|4 +021082|openLoopCorrectionAutoGainControl|double|OPEN LOOP CORRECTION (AUTO GAIN CONTROL)|dB|3|-3000|14|dB|3|5 +021083|warmTargetCalibration|long|WARM TARGET CALIBRATION|Numeric|0|0|16|Numeric|0|5 +021084|coldTargetCalibration|long|COLD TARGET CALIBRATION|Numeric|0|0|16|Numeric|0|5 +021085|atsrSeaSurfaceTemperatureAcrossTrackBandNumber|long|ATSR SEA-SURFACE TEMPERATURE ACROSS-TRACK BAND NUMBER|Numeric|0|0|4|Numeric|0|2 +021086|numberOfPixelsInNadirOnlyAverage|long|NUMBER OF PIXELS IN NADIR ONLY, AVERAGE|Numeric|0|0|9|Numeric|0|3 +021087|numberOfPixelsInDualViewAverage|long|NUMBER OF PIXELS IN DUAL VIEW, AVERAGE|Numeric|0|0|9|Numeric|0|3 +021088|wetBackscatter|double|WET BACKSCATTER|dB|2|-5000|13|dB|2|4 +021091|radarSignalDopplerSpectrum0thMoment|long|RADAR SIGNAL DOPPLER SPECTRUM 0TH MOMENT|dB|0|-100|8|dB|0|3 +021092|rassSignalDopplerSpectrum0thMomentReferringToRassSignal|long|RASS SIGNAL DOPPLER SPECTRUM 0TH MOMENT, REFERRING TO RASS SIGNAL|dB|0|-100|8|dB|0|3 +021093|kuBandPeakiness|long|KU BAND PEAKINESS|Numeric|3|0|16|Numeric|3|5 +021094|sBandPeakiness|long|S BAND PEAKINESS|Numeric|3|0|16|Numeric|3|5 +021095|kpCoefficientA|long|KP COEFFICIENT A|Numeric|6|0|20|Numeric|6|7 +021096|kpCoefficientB|long|KP COEFFICIENT B|Numeric|6|0|20|Numeric|6|7 +021097|kpCoefficientC|long|KP COEFFICIENT C|Numeric|6|0|20|Numeric|6|7 +021101|numberOfVectorAmbiguities|long|NUMBER OF VECTOR AMBIGUITIES|Numeric|0|0|3|Numeric|0|1 +021102|indexOfSelectedWindVector|long|INDEX OF SELECTED WIND VECTOR|Numeric|0|0|3|Numeric|0|1 +021103|totalNumberOfSigma0Measurements|long|TOTAL NUMBER OF SIGMA-0 MEASUREMENTS|Numeric|0|0|5|Numeric|0|2 +021104|likelihoodComputedForSolution|long|LIKELIHOOD COMPUTED FOR SOLUTION|Numeric|3|-30000|15|Numeric|3|5 +021105|normalizedRadarCrossSection|double|NORMALIZED RADAR CROSS-SECTION|dB|2|-10000|14|dB|2|5 +021106|kpVarianceCoefficientAlpha|long|KP VARIANCE COEFFICIENT (ALPHA)|Numeric|3|0|14|Numeric|3|5 +021107|kpVarianceCoefficientBeta|long|KP VARIANCE COEFFICIENT (BETA)|Numeric|8|0|16|Numeric|8|5 +021109|seawindsWindVectorCellQuality|flag|SEAWINDS WIND VECTOR CELL QUALITY|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +021110|numberOfInnerBeamSigma0ForwardOfSatellite|long|NUMBER OF INNER-BEAM SIGMA-0 (FORWARD OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021111|numberOfOuterBeamSigma0ForwardOfSatellite|long|NUMBER OF OUTER-BEAM SIGMA-0 (FORWARD OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021112|numberOfInnerBeamSigma0AftOfSatellite|long|NUMBER OF INNER-BEAM SIGMA-0 (AFT OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021113|numberOfOuterBeamSigma0AftOfSatellite|long|NUMBER OF OUTER-BEAM SIGMA-0 (AFT OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021114|kpVarianceCoefficientGamma|double|KP VARIANCE COEFFICIENT (GAMMA)|dB|3|-140000|18|dB|3|6 +021115|seawindsSigma0Quality|flag|SEAWINDS SIGMA-0 QUALITY|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +021116|seawindsSigma0Mode|flag|SEAWINDS SIGMA-0 MODE|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +021117|sigma0VarianceQualityControl|long|SIGMA-0 VARIANCE QUALITY CONTROL|Numeric|2|0|16|Numeric|2|5 +021118|attenuationCorrectionOnSigma0|double|ATTENUATION CORRECTION ON SIGMA-0|dB|2|-10000|14|dB|2|5 +021119|windScatterometerGeophysicalModelFunction|table|WIND SCATTEROMETER GEOPHYSICAL MODEL FUNCTION|CODE TABLE|0|0|6|CODE TABLE|0|2 +021120|probabilityOfRain|long|PROBABILITY OF RAIN|Numeric|3|0|10|Numeric|3|4 +021121|seawindsNofRainIndex|long|SEAWINDS NOF RAIN INDEX|Numeric|0|0|8|Numeric|0|3 +021122|attenuationCorrectionOnSigma0FromTb|double|ATTENUATION CORRECTION ON SIGMA-0 (FROM TB)|dB|2|-10000|14|dB|2|5 +021123|seawindsNormalizedRadarCrossSection|double|SEAWINDS NORMALIZED RADAR CROSS-SECTION|dB|2|-30000|15|dB|2|5 +021128|numberOfValidPointsPerSecondUsedToDerivePreviousParameters|long|NUMBER OF VALID POINTS PER SECOND USED TO DERIVE PREVIOUS PARAMETERS|Numeric|0|0|8|Numeric|0|3 +021130|spectrumTotalEnergy|long|SPECTRUM TOTAL ENERGY|Numeric|6|0|28|Numeric|6|9 +021131|spectrumMaxEnergy|long|SPECTRUM MAX ENERGY|Numeric|6|0|28|Numeric|6|9 +021132|directionOfSpectrumMaxOnHigherResolutionGrid|double|DIRECTION OF SPECTRUM MAX ON HIGHER RESOLUTION GRID|deg|3|0|19|deg|3|6 +021133|wavelengthOfSpectrumMaxOnHigherResolutionGrid|double|WAVELENGTH OF SPECTRUM MAX ON HIGHER RESOLUTION GRID|m|3|0|29|m|3|9 +021134|rangeResolutionOfCressCovarianceSpectrum|double|RANGE RESOLUTION OF CRESS COVARIANCE SPECTRUM|rad/m|3|0|19|rad/m|3|6 +021135|realPartOfCrossSpectraPolarGridNumberOfBins|long|REAL PART OF CROSS SPECTRA POLAR GRID NUMBER OF BINS|Numeric|3|-524288|20|Numeric|3|7 +021136|imaginaryPartOfCrossSpectraPolarGridNumberOfBins|long|IMAGINARY PART OF CROSS SPECTRA POLAR GRID NUMBER OF BINS|Numeric|3|-524288|20|Numeric|3|7 +021137|kuBandCorrectedOceanBackscatterCoefficient|double|KU BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021138|stdKuBandCorrectedOceanBackscatterCoefficient|double|STD KU BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021139|kuBandNetInstrumentalCorrectionForAgc|double|KU BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-2048|12|dB|2|4 +021140|sBandCorrectedOceanBackscatterCoefficient|double|S BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021141|stdSBandCorrectedOceanBackscatterCoefficient|double|STD S BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021142|sBandNetInstrumentalCorrectionForAgc|double|S BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-1024|11|dB|2|4 +021143|kuBandRainAttenuation|double|KU BAND RAIN ATTENUATION|dB|2|-1073741824|31|dB|2|10 +021144|altimeterRainFlag|flag|ALTIMETER RAIN FLAG|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +021145|kuBandAutomaticGainControl|double|KU BAND AUTOMATIC GAIN CONTROL|dB|2|0|13|dB|2|4 +021146|rmsKuBandAutomaticGainControl|double|RMS KU BAND AUTOMATIC GAIN CONTROL|dB|2|0|8|dB|2|3 +021147|numberOfValidPointsForKuBandAutomaticGainControl|long|NUMBER OF VALID POINTS FOR KU BAND AUTOMATIC GAIN CONTROL|Numeric|0|0|5|Numeric|0|2 +021148|trailingEdgeVariationFlag|flag|TRAILING EDGE VARIATION FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +021150|beamCollocation|table|BEAM CO-LOCATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +021151|estimatedErrorInSigma0At40DegreesIncidenceAngle|double|ESTIMATED ERROR IN SIGMA-0 AT 40 DEGREES INCIDENCE ANGLE|dB|2|0|9|dB|2|3 +021152|slopeAt40DegreesIncidenceAngle|double|SLOPE AT 40 DEGREES INCIDENCE ANGLE|dB/deg|2|-80|7|dB/deg|2|2 +021153|estimatedErrorInSlopeAt40DegreesIncidenceAngle|double|ESTIMATED ERROR IN SLOPE AT 40 DEGREES INCIDENCE ANGLE|dB/deg|2|-40|6|dB/deg|2|2 +021154|soilMoistureSensitivity|double|SOIL MOISTURE SENSITIVITY|dB|2|0|12|dB|2|4 +021155|windVectorCellQuality|flag|WIND VECTOR CELL QUALITY|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +021156|backscatterDistance|long|BACKSCATTER DISTANCE|Numeric|1|-4096|13|Numeric|1|4 +021157|lossPerUnitLengthOfAtmosphere|double|LOSS PER UNIT LENGTH OF ATMOSPHERE USED|dB/m|10|0|22|dB/m|10|7 +021158|ascatKpEstimateQuality|table|ASCAT KP ESTIMATE QUALITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +021159|ascatSigma0Usability|table|ASCAT SIGMA-0 USABILITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +021160|ascatUseOfSyntheticData|long|ASCAT USE OF SYNTHETIC DATA|Numeric|3|0|10|Numeric|3|4 +021161|ascatSyntheticDataQuantity|long|ASCAT SYNTHETIC DATA QUANTITY|Numeric|3|0|10|Numeric|3|4 +021162|ascatSatelliteOrbitAndAttitudeQuality|long|ASCAT SATELLITE ORBIT AND ATTITUDE QUALITY|Numeric|3|0|10|Numeric|3|4 +021163|ascatSolarArrayReflectionContamination|long|ASCAT SOLAR ARRAY REFLECTION CONTAMINATION|Numeric|3|0|10|Numeric|3|4 +021164|ascatTelemetryPresenceAndQuality|long|ASCAT TELEMETRY PRESENCE AND QUALITY|Numeric|3|0|10|Numeric|3|4 +021165|ascatExtrapolatedReferenceFunctionPresence|long|ASCAT EXTRAPOLATED REFERENCE FUNCTION PRESENCE|Numeric|3|0|10|Numeric|3|4 +021166|landFraction|long|LAND FRACTION|Numeric|3|0|10|Numeric|3|4 +021167|subsurfaceScatteringProbability|long|SUBSURFACE SCATTERING PROBABILITY|%|0|0|7|%|0|3 +021169|icePresenceIndicator|table|ICE PRESENCE INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +021170|cBandCorrectedOceanBackscatterCoefficient|double|C BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021171|rmsCBandCorrectedOceanBackscatterCoefficient|double|RMS C BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021172|cBandNetInstrumentalCorrectionForAgc|double|C BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-2048|12|dB|2|4 +021173|cBandAutomaticGainControl|double|C BAND AUTOMATIC GAIN CONTROL|dB|2|0|13|dB|2|4 +021174|rmsCBandAutomaticGainControl|double|RMS C BAND AUTOMATIC GAIN CONTROL|dB|2|0|9|dB|2|3 +021175|numberOfValidPointsForCBandAutomaticGainControl|long|NUMBER OF VALID POINTS FOR C BAND AUTOMATIC GAIN CONTROL|Numeric|0|0|10|Numeric|0|4 +021176|highFrequencyVariabilityCorrection|double|HIGH FREQUENCY VARIABILITY CORRECTION|m|3|0|16|m|3|5 +021177|correctedOcogBackscatterCoefficient|double|CORRECTED OCOG BACKSCATTER COEFFICIENT|dB|2|0|16|dB|2|5 +021178|stdOf20HzOcogBackscatterCoefficient|double|STD OF 20 HZ OCOG BACKSCATTER COEFFICIENT|dB|2|0|16|dB|2|5 +021179|numberOf20HzValidPointsForOcogBackscatterCoefficient|long|NUMBER OF 20 HZ VALID POINTS FOR OCOG BACKSCATTER COEFFICIENT|Numeric|0|0|16|Numeric|0|5 +021180|numberOf20HzValidPointsForOceanBackscatterCoefficient|long|NUMBER OF 20 HZ VALID POINTS FOR OCEAN BACKSCATTER COEFFICIENT|Numeric|0|0|8|Numeric|0|3 +021181|20HzOceanBackscatterCoefficient|double|20 HZ OCEAN BACKSCATTER COEFFICIENT|dB|2|0|16|dB|2|5 +021182|20HzKuBandPeakiness|long|20 HZ KU BAND PEAKINESS|Numeric|3|0|16|Numeric|3|5 +021183|specificBandCorrectedOceanBackscatterCoefficient|double|SPECIFIC BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021184|stdSpecificBandCorrectedOceanBackscatterCoefficient|double|STD SPECIFIC BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021185|specificBandNetInstrumentalCorrectionForAgc|double|SPECIFIC BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-2048|12|dB|2|4 +021186|specificBandAutomaticGainControl|double|SPECIFIC BAND AUTOMATIC GAIN CONTROL|dB|2|0|13|dB|2|4 +021187|rmsSpecificBandAutomaticGainControl|double|RMS SPECIFIC BAND AUTOMATIC GAIN CONTROL|dB|2|0|8|dB|2|3 +021188|numberOfValidPointsForSpecificBandAutomaticGainControl|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND AUTOMATIC GAIN CONTROL|Numeric|0|0|7|Numeric|0|3 +021189|correctedOcogBackscatterCoefficientNegativeReference|double|CORRECTED OCOG BACKSCATTER COEFFICIENT (NEGATIVE REFERENCE)|dB|2|-32768|16|dB|2|6 +022001|wavesDirection|long|DIRECTION OF WAVES|deg|0|0|9|deg|0|3 +022002|windWavesDirection|long|DIRECTION OF WIND WAVES|deg|0|0|9|deg|0|3 +022003|swellWavesDirection|long|DIRECTION OF SWELL WAVES|deg|0|0|9|deg|0|3 +022004|currentDirection|long|DIRECTION OF CURRENT|deg|0|0|9|deg|0|3 +022005|seaSurfaceCurrentDirection|long|DIRECTION OF SEA-SURFACE CURRENT|deg|0|0|9|deg|0|3 +022011|periodOfWaves|long|PERIOD OF WAVES|s|0|0|6|s|0|2 +022012|periodOfWindWaves|long|PERIOD OF WIND WAVES|s|0|0|6|s|0|2 +022013|periodOfSwellWaves|long|PERIOD OF SWELL WAVES|s|0|0|6|s|0|2 +022021|heightOfWaves|double|HEIGHT OF WAVES|m|1|0|10|m|1|4 +022022|heightOfWindWaves|double|HEIGHT OF WIND WAVES|m|1|0|10|m|1|4 +022023|heightOfSwellWaves|double|HEIGHT OF SWELL WAVES|m|1|0|10|m|1|4 +022025|standardDeviationWaveHeight|double|STANDARD DEVIATION WAVE HEIGHT|m|2|0|10|m|2|4 +022026|standardDeviationOfSignificantWaveHeight|double|STANDARD DEVIATION OF SIGNIFICANT WAVE HEIGHT|m|2|0|10|m|2|4 +022031|speedOfCurrent|double|SPEED OF CURRENT|m/s|2|0|13|m/s|2|4 +022032|speedOfSeaSurfaceCurrent|double|SPEED OF SEA-SURFACE CURRENT|m/s|2|0|13|m/s|2|4 +022035|tidalElevationWithRespectToLocalChartDatum|double|TIDAL ELEVATION WITH RESPECT TO LOCAL CHART DATUM|m|2|0|14|m|2|4 +022036|meteorologicalResidualTidalElevationSurgeOrOffset|double|METEOROLOGICAL RESIDUAL TIDAL ELEVATION (SURGE OR OFFSET)|m|2|0|14|m|2|4 +022037|tidalElevationWithRespectToNationalLandDatum|double|TIDAL ELEVATION WITH RESPECT TO NATIONAL LAND DATUM|m|3|-10000|15|m|3|5 +022038|tidalElevationWithRespectToLocalChartDatum|double|TIDAL ELEVATION WITH RESPECT TO LOCAL CHART DATUM|m|3|-10000|15|m|3|5 +022039|meteorologicalResidualTidalElevationSurgeOrOffset|double|METEOROLOGICAL RESIDUAL TIDAL ELEVATION (SURGE OR OFFSET)|m|3|-5000|13|m|3|4 +022040|meteorologicalResidualTidalElevationSurgeOrOffset|double|METEOROLOGICAL RESIDUAL TIDAL ELEVATION (SURGE OR OFFSET)|m|3|-5000|14|m|3|5 +022041|seaSurfaceTemperature15DayRunningMean|double|SEA-SURFACE TEMPERATURE (15-DAY RUNNING MEAN)|K|1|0|12|K|1|4 +022042|oceanographicWaterTemperature|double|SEA/WATER TEMPERATURE|K|1|0|12|K|1|4 +022043|oceanographicWaterTemperature|double|SEA/WATER TEMPERATURE|K|2|0|15|K|2|5 +022044|soundVelocity|double|SOUND VELOCITY|m/s|1|0|14|m/s|1|5 +022045|oceanographicWaterTemperature|double|SEA/WATER TEMPERATURE|K|3|0|19|K|3|6 +022046|seaIceFraction|long|SEA ICE FRACTION|Numeric|2|0|7|Numeric|2|3 +022049|seaSurfaceTemperature|double|SEA-SURFACE TEMPERATURE|K|2|0|15|K|2|5 +022050|standardDeviationSeaSurfaceTemperature|double|STANDARD DEVIATION SEA-SURFACE TEMPERATURE|K|2|0|8|K|2|3 +022055|floatCycleNumber|long|FLOAT CYCLE NUMBER|Numeric|0|0|10|Numeric|0|3 +022056|directionOfProfile|table|DIRECTION OF PROFILE|CODE TABLE|0|0|2|CODE TABLE|0|1 +022059|seaSurfaceSalinity|double|SEA-SURFACE SALINITY|0/00|2|0|14|0/00|2|5 +022060|lagrangianDrifterDrogueStatus|table|LAGRANGIAN DRIFTER DROGUE STATUS|CODE TABLE|0|0|3|CODE TABLE|0|1 +022061|seaState|table|STATE OF THE SEA|CODE TABLE|0|0|4|CODE TABLE|0|2 +022062|salinity|double|SALINITY|0/00|2|0|14|0/00|2|5 +022063|totalWaterDepth|long|TOTAL WATER DEPTH|m|0|0|14|m|0|5 +022064|salinity|double|SALINITY|0/00|3|0|17|0/00|3|6 +022065|oceanographicWaterPressure|long|WATER PRESSURE|Pa|-3|0|17|Pa|-3|6 +022066|oceanographicWaterConductivity|double|WATER CONDUCTIVITY|S/m|6|0|26|S/m|6|8 +022067|instrumentTypeForWaterTemperatureOrSalinityProfileMeasurement|table|INSTRUMENT TYPE FOR WATER TEMPERATURE/SALINITY PROFILE MEASUREMENT|CODE TABLE|0|0|10|CODE TABLE|0|4 +022068|waterTemperatureProfileRecorderTypes|table|WATER TEMPERATURE PROFILE RECORDER TYPES|CODE TABLE|0|0|7|CODE TABLE|0|3 +022069|spectralWaveDensity|double|SPECTRAL WAVE DENSITY|m2/Hz|3|0|22|m2/Hz|3|7 +022070|significantWaveHeight|double|SIGNIFICANT WAVE HEIGHT|m|2|0|13|m|2|4 +022071|spectralPeakWavePeriod|double|SPECTRAL PEAK WAVE PERIOD|s|1|0|9|s|1|3 +022072|spectralPeakWaveLength|long|SPECTRAL PEAK WAVELENGTH|m|0|0|13|m|0|4 +022073|maximumWaveHeight|double|MAXIMUM WAVE HEIGHT|m|2|0|13|m|2|4 +022074|averageWavePeriod|double|AVERAGE WAVE PERIOD|s|1|0|9|s|1|3 +022075|averageWaveLength|long|AVERAGE WAVELENGTH|m|0|0|13|m|0|4 +022076|directionFromWhichDominantWavesAreComing|long|DIRECTION FROM WHICH DOMINANT WAVES ARE COMING|deg|0|0|9|deg|0|3 +022077|directionalSpreadOfDominantWave|long|DIRECTIONAL SPREAD OF DOMINANT WAVE|deg|0|0|9|deg|0|3 +022078|durationOfWaveRecord|long|DURATION OF WAVE RECORD|s|0|0|12|s|0|4 +022079|lengthOfWaveRecord|long|LENGTH OF WAVE RECORD|m|0|0|16|m|0|5 +022080|wavebandCentralFrequency|double|WAVEBAND CENTRAL FREQUENCY|Hz|3|0|10|Hz|3|4 +022081|wavebandCentralWaveNumber|double|WAVEBAND CENTRAL WAVE NUMBER|/m|5|0|13|/m|5|4 +022082|maximumNonDirectionalSpectralWaveDensity|double|MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY|m2 s|2|0|20|m2 s|2|7 +022083|maximumNonDirectionalSpectralWaveNumber|double|MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE NUMBER|m3|2|0|20|m3|2|7 +022084|bandContainingMaximumNonDirectionalSpectralWaveDensity|long|BAND CONTAINING MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY|Numeric|0|0|7|Numeric|0|3 +022085|spectralWaveDensityRatio|long|SPECTRAL WAVE DENSITY RATIO|Numeric|0|0|7|Numeric|0|3 +022086|meanDirectionFromWhichWavesAreComing|long|MEAN DIRECTION FROM WHICH WAVES ARE COMING|deg|0|0|9|deg|0|3 +022087|principalDirectionFromWhichWavesAreComing|long|PRINCIPAL DIRECTION FROM WHICH WAVES ARE COMING|deg|0|0|9|deg|0|3 +022088|firstNormalizedPolarCoordinateFromFourierCoefficients|long|FIRST NORMALIZED POLAR COORDINATE FROM FOURIER COEFFICIENTS|Numeric|2|0|7|Numeric|2|3 +022089|secondNormalizedPolarCoordinateFromFourierCoefficients|long|SECOND NORMALIZED POLAR COORDINATE FROM FOURIER COEFFICIENTS|Numeric|2|0|7|Numeric|2|3 +022090|nonDirectionalSpectralEstimateByWaveFrequency|double|NON-DIRECTIONAL SPECTRAL ESTIMATE BY WAVE FREQUENCY|m2 s|2|0|20|m2 s|2|7 +022091|nonDirectionalSpectralEstimateByWaveNumber|double|NON-DIRECTIONAL SPECTRAL ESTIMATE BY WAVE NUMBER|m3|2|0|20|m3|2|7 +022092|directionalSpectralEstimateByWaveFrequency|double|DIRECTIONAL SPECTRAL ESTIMATE BY WAVE FREQUENCY|m2 rad-1 s|2|0|20|m2 rad-1 s|2|7 +022093|directionalSpectralEstimateByWaveNumber|double|DIRECTIONAL SPECTRAL ESTIMATE BY WAVE NUMBER|m4|2|0|20|m4|2|7 +022094|totalNumberOfWaveBands|long|TOTAL NUMBER OF WAVE BANDS|Numeric|0|0|7|Numeric|0|3 +022095|directionalSpreadOfIndividualWaves|long|DIRECTIONAL SPREAD OF INDIVIDUAL WAVES|deg|0|0|8|deg|0|3 +022096|spectralBandWidth|double|SPECTRAL BAND WIDTH|/s|3|0|4|/s|3|2 +022097|meanWavelength731MOfImageSpectrumAtLowWaveNumbers|long|MEAN WAVELENGTH > 731 M OF IMAGE SPECTRUM AT LOW WAVE NUMBERS|m|0|0|14|m|0|5 +022098|wavelengthSpreadWavelength731MAtLowWaveNumbers|long|WAVELENGTH SPREAD (WAVELENGTH > 731 M) AT LOW WAVE NUMBERS|m|0|0|14|m|0|5 +022099|meanDirectionAtLowWaveNumbersWavelength731M|long|MEAN DIRECTION AT LOW WAVE NUMBERS (WAVELENGTH > 731 M)|deg|0|0|9|deg|0|3 +022100|directionSpreadAtLowWaveNumbersWavelength731M|long|DIRECTION SPREAD AT LOW WAVE NUMBERS (WAVELENGTH > 731 M)|deg|0|0|9|deg|0|3 +022101|totalEnergyWavelength731mAtLowWaveNumbers|long|TOTAL ENERGY (WAVELENGTH > 731M) AT LOW WAVE NUMBERS|Numeric|0|0|31|Numeric|0|10 +022102|scaledMaximumNonDirectionalSpectralWaveDensityByFrequency|long|SCALED MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY FREQUENCY|m2 s|0|0|14|m2 s|0|5 +022103|scaledMaximumNonDirectionalSpectralWaveDensityByWavenumber|long|SCALED MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY WAVE NUMBER|m3|0|0|14|m3|0|5 +022104|scaledNonDirectionalSpectralWaveDensityByFrequency|long|SCALED NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY FREQUENCY|m2 s|0|0|14|m2 s|0|5 +022105|scaledNonDirectionalSpectralWaveDensityByWavenumber|long|SCALED NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY WAVE NUMBER|m3|0|0|14|m3|0|5 +022106|scaledDirectionalSpectralWaveDensityByFrequency|long|SCALED DIRECTIONAL SPECTRAL WAVE DENSITY BY FREQUENCY|m2 rad-1 s|0|0|14|m2 rad-1 s|0|5 +022107|scaledDirectionalSpectralWaveDensityByWavenumber|long|SCALED DIRECTIONAL SPECTRAL WAVE DENSITY BY WAVE NUMBER|m4|0|0|14|m4|0|5 +022108|spectralWaveDensityRatio|long|SPECTRAL WAVE DENSITY RATIO|%|0|0|7|%|0|3 +022120|tideStationAutomatedWaterLevelCheck|table|TIDE STATION AUTOMATED WATER LEVEL CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022121|tideStationManualWaterLevelCheck|table|TIDE STATION MANUAL WATER LEVEL CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022122|automatedMeteorologicalDataCheck|table|TIDE STATION AUTOMATED METEOROLOGICAL DATA CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022123|tideStationManualMeteorologicalDataCheck|table|TIDE STATION MANUAL METEOROLOGICAL DATA CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022130|numberOfValidPointsForSpecificBand|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND|Numeric|0|0|10|Numeric|0|4 +022131|rmsSpecificBandSignificantWaveHeight|double|RMS SPECIFIC BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022132|numberOfValidPointsForSpecificBandSignificantWaveHeight|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND SIGNIFICANT WAVE HEIGHT|Numeric|0|0|10|Numeric|0|4 +022133|specificBandNetInstrumentCorrectionForSignificantWaveHeight|double|SPECIFIC BAND NET INSTRUMENT CORRECTION FOR SIGNIFICANT WAVE HEIGHT|m|3|-1000|11|m|3|4 +022134|numberOfValidPointsForSpecificBandBackscatter|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND BACKSCATTER|Numeric|0|0|10|Numeric|0|4 +022141|seaSurfaceTemperature15DayRunningMean|double|SEA-SURFACE TEMPERATURE (15-DAY RUNNING MEAN)|K|2|0|15|K|2|5 +022142|squareOfSignificantWaveHeight|double|SQUARE OF SIGNIFICANT WAVE HEIGHT|m2|3|-33554432|26|m2|3|8 +022143|stdOf20HzSwhSquared|double|STD OF 20 HZ SWH SQUARED|m2|3|-8388608|24|m2|3|8 +022144|numberOf20HzValidPointsForSwhSquared|long|NUMBER OF 20 HZ VALID POINTS FOR SWH SQUARED|Numeric|0|0|9|Numeric|0|3 +022145|stdOf20HzOceanRange|double|STD OF 20 HZ OCEAN RANGE|m|3|-33554432|31|m|3|10 +022146|ocogRange|double|OCOG RANGE|m|3|0|31|m|3|10 +022147|stdOf20HzOcogRange|double|STD OF 20 HZ OCOG RANGE|m|3|-8388608|31|m|3|10 +022148|numberOf20HzValidPointsForOceanRange|long|NUMBER OF 20 HZ VALID POINTS FOR OCEAN RANGE|Numeric|0|0|9|Numeric|0|3 +022149|20HzSignificantWaveHeightSquared|double|20 HZ SIGNIFICANT WAVE HEIGHT SQUARED|m2|3|-33554432|26|m2|3|8 +022150|numberOf18HzValidPointsForKuBand|long|NUMBER OF 18 HZ VALID POINTS FOR KU BAND|Numeric|0|0|10|Numeric|0|4 +022151|kuBandOceanRange|double|KU BAND OCEAN RANGE|m|3|0|31|m|3|10 +022152|stdOf18HzKuBandOceanRange|double|STD OF 18 HZ KU BAND OCEAN RANGE|m|3|0|16|m|3|5 +022153|numberOf18HzValidPointsForSBand|long|NUMBER OF 18 HZ VALID POINTS FOR S BAND|Numeric|0|0|10|Numeric|0|4 +022154|sBandOceanRange|double|S BAND OCEAN RANGE|m|3|0|31|m|3|10 +022155|stdOf18HzSBandOceanRange|double|STD OF 18 HZ S BAND OCEAN RANGE|m|3|0|16|m|3|5 +022156|kuBandSignificantWaveHeight|double|KU BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022157|stdOf18HzKuBandOceanRange|double|STD OF 18 HZ KU BAND OCEAN RANGE|m|3|0|16|m|3|5 +022158|sBandSignificantWaveHeight|double|S BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022159|stdOf18HzSBandSignificantWaveHeight|double|STD OF 18 HZ S BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022160|normalizedInverseWaveAge|long|NORMALIZED INVERSE WAVE AGE|Numeric|6|0|21|Numeric|6|7 +022161|waveSpectra|double|WAVE SPECTRA|m4|4|0|27|m4|4|9 +022162|rmsOf20HzKuBandOceanRange|double|RMS OF 20 HZ KU BAND OCEAN RANGE|m|3|0|16|m|3|5 +022163|numberOf20HzValidPointsForKuBand|long|NUMBER OF 20 HZ VALID POINTS FOR KU BAND|Numeric|0|0|10|Numeric|0|4 +022164|rms20HzKuBandSignificantWaveHeight|double|RMS 20 HZ KU BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022165|numberOf20HzValidPointsForKuBandSignificantWaveHeight|long|NUMBER OF 20 HZ VALID POINTS FOR KU BAND SIGNIFICANT WAVE HEIGHT|Numeric|0|0|10|Numeric|0|4 +022166|kuBandNetInstrumentalCorrectionForSignificantWaveHeight|double|KU BAND NET INSTRUMENTAL CORRECTION FOR SIGNIFICANT WAVE HEIGHT|m|3|-1000|11|m|3|4 +022167|numberOfValidPointsForKuBandBackscatter|long|NUMBER OF VALID POINTS FOR KU BAND BACKSCATTER|Numeric|0|0|10|Numeric|0|4 +022168|cBandOceanRange|double|C BAND OCEAN RANGE|m|3|0|31|m|3|10 +022169|rmsOfCBandOceanRange|double|RMS OF C BAND OCEAN RANGE|m|3|0|16|m|3|5 +022170|numberOf20HzValidPointsForCBand|long|NUMBER OF 20 HZ VALID POINTS FOR C BAND|Numeric|0|0|10|Numeric|0|4 +022171|cBandSignificantWaveHeight|double|C BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022172|rms20HzCBandSignificantWaveHeight|double|RMS 20 HZ C BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022173|numberOf20HzValidPointsForCBandSignificantWaveHeight|long|NUMBER OF 20 HZ VALID POINTS FOR C BAND SIGNIFICANT WAVE HEIGHT|Numeric|0|0|10|Numeric|0|4 +022174|cBandNetInstrumentalCorrectionForSignificantWaveHeight|double|C BAND NET INSTRUMENTAL CORRECTION FOR SIGNIFICANT WAVE HEIGHT|m|3|-1000|11|m|3|4 +022175|numberOfValidPointsForCBandBackscatter|long|NUMBER OF VALID POINTS FOR C BAND BACKSCATTER|Numeric|0|0|10|Numeric|0|4 +022177|heightOfXbtOrXctdLauncher|long|HEIGHT OF XBT/XCTD LAUNCHER|m|0|0|6|m|0|3 +022178|xbtOrXctdLauncherType|table|XBT/XCTD LAUNCHER TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +022179|specificBandSignificantWaveHeightNegativeReference|double|SPECIFIC BAND SIGNIFICANT WAVE HEIGHT (NEGATIVE REFERENCE)|m|3|-500|16|m|3|6 +022182|waterColumnHeight|double|WATER COLUMN HEIGHT|m|3|0|23|m|3|7 +022184|waterColumnHeightDeviationFromReferenceValue|double|WATER COLUMN HEIGHT DEVIATION FROM THE REFERENCE VALUE|m|3|-2000|12|m|3|4 +022185|bprTransmissionCount|long|BPR TRANSMISSION COUNT|Numeric|0|0|10|Numeric|0|3 +022186|directionFromWhichWavesAreComing|long|DIRECTION FROM WHICH WAVES ARE COMING|deg|0|0|9|deg|0|3 +022187|directionalSpreadOfWaves|long|DIRECTIONAL SPREAD OF WAVE|deg|0|0|9|deg|0|3 +022188|oceanographicDissolvedOxygen|double|DISSOLVED OXYGEN|umol/kg|3|0|19|umol/kg|3|6 +022189|specificBandOceanRange|double|SPECIFIC BAND OCEAN RANGE|m|3|0|31|m|3|10 +022190|specificBandSignificantWaveHeight|double|SPECIFIC BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022191|rmsOfSpecificBandOceanRange|double|RMS OF SPECIFIC BAND OCEAN RANGE|m|4|0|16|m|4|5 +023001|accidentEarlyNotificationArticleApplicable|table|ACCIDENT EARLY NOTIFICATION - ARTICLE APPLICABLE|CODE TABLE|0|0|3|CODE TABLE|0|1 +023002|facilityInvolvedInIncident|table|ACTIVITY OR FACILITY INVOLVED IN INCIDENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +023003|releaseType|table|TYPE OF RELEASE|CODE TABLE|0|0|3|CODE TABLE|0|1 +023004|countermeasuresTakenNearBorder|table|COUNTERMEASURES TAKEN NEAR BORDER|CODE TABLE|0|0|3|CODE TABLE|0|1 +023005|causeOfIncident|table|CAUSE OF INCIDENT|CODE TABLE|0|0|2|CODE TABLE|0|1 +023006|incidentSituation|table|INCIDENT SITUATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +023007|characteristicsOfRelease|table|CHARACTERISTICS OF RELEASE|CODE TABLE|0|0|3|CODE TABLE|0|1 +023008|stateOfCurrentRelease|table|STATE OF CURRENT RELEASE|CODE TABLE|0|0|2|CODE TABLE|0|1 +023009|stateOfExpectedRelease|table|STATE OF EXPECTED RELEASE|CODE TABLE|0|0|2|CODE TABLE|0|1 +023016|possibilityOfSignificantChemicalToxicHealthEffect|table|POSSIBILITY OF SIGNIFICANT CHEMICAL TOXIC HEALTH EFFECT|CODE TABLE|0|0|2|CODE TABLE|0|1 +023017|flowDischargeOfMajorRecipient|double|FLOW DISCHARGE OF MAJOR RECIPIENT|m3/s|6|0|20|m3/s|6|7 +023018|releaseBehaviourOverTime|table|RELEASE BEHAVIOUR OVER TIME|CODE TABLE|0|0|3|CODE TABLE|0|1 +023019|actualReleaseHeight|long|ACTUAL RELEASE HEIGHT|m|0|-15000|17|m|0|6 +023021|effectiveReleaseHeight|long|EFFECTIVE RELEASE HEIGHT|m|0|-15000|17|m|0|6 +023022|distanceOfReleasePointOrSiteOfIncident|long|DISTANCE OF RELEASE POINT OR SITE OF INCIDENT|m|0|0|24|m|0|8 +023023|mainTransportSpeedInAtmosphere|double|MAIN TRANSPORT SPEED IN THE ATMOSPHERE|m/s|1|0|12|m/s|1|4 +023024|mainTransportSpeedInWater|double|MAIN TRANSPORT SPEED IN WATER|m/s|2|0|13|m/s|2|4 +023025|mainTransportSpeedInGroundWater|double|MAIN TRANSPORT SPEED IN GROUND WATER|m/s|2|0|13|m/s|2|4 +023027|mainTransportDirectionInTheAtmosphere|long|MAIN TRANSPORT DIRECTION IN THE ATMOSPHERE|deg|0|0|9|deg|0|3 +023028|mainTransportDirectionInWater|long|MAIN TRANSPORT DIRECTION IN WATER|deg|0|0|9|deg|0|3 +023029|mainTransportDirectionInGroundWater|long|MAIN TRANSPORT DIRECTION IN GROUND WATER|deg|0|0|9|deg|0|3 +023031|possibilityPlume|table|POSSIBILITY THAT PLUME WILL ENCOUNTER PRECIPITATION IN STATE IN WHICH INCIDENT OCCURRED|CODE TABLE|0|0|2|CODE TABLE|0|1 +023032|plumeWillEncounterChangeInWindDirectionAndOrOrSpeedFlag|table|PLUME WILL ENCOUNTER CHANGE IN WIND DIRECTION AND/OR SPEED FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +023040|flowDischargeRiver|double|FLOW DISCHARGE - RIVER|m3/s|1|0|22|m3/s|1|7 +023041|flowDischargeWell|double|FLOW DISCHARGE - WELL|m3/s|3|0|16|m3/s|3|5 +024001|estimateOfAmountOfRadioactivityReleasedUpToSpecifiedTime|long|ESTIMATE OF AMOUNT OF RADIOACTIVITY RELEASED UP TO SPECIFIED TIME|Bq|-11|0|28|Bq|-11|9 +024002|estimatedMaximumPotentialRelease|long|ESTIMATED MAXIMUM POTENTIAL RELEASE|Bq|-11|0|28|Bq|-11|9 +024003|compositionOfRelease|table|COMPOSITION OF RELEASE|CODE TABLE|0|0|5|CODE TABLE|0|2 +024004|elementName|string|ELEMENT NAME|CCITT IA5|0|0|16|Character|0|2 +024005|isotopeMass|long|ISOTOPE MASS|Numeric|0|0|9|Numeric|0|3 +024011|dose|double|DOSE|mSv|2|0|32|mSv|2|10 +024012|trajectoryDoseDefinedLocationAndExpectedTimeOfArrival|double|TRAJECTORY DOSE (DEFINED LOCATION AND EXPECTED TIME OF ARRIVAL)|mSv|2|0|32|mSv|2|10 +024013|gammaDoseInAirAlongMainTransportPathDefinedLocationAndTimePeriod|double|GAMMA DOSE IN AIR ALONG THE MAIN TRANSPORT PATH (DEFINED LOCATION AND TIME PERIOD)|mSv|2|0|32|mSv|2|10 +024014|gammaRadiationDoseRate|double|GAMMA RADIATION DOSE RATE|nSv/h|1|0|14|nSv/h|1|4 +024021|airConcentrationOfNamedIsotopeTypeIncludingGrossBeta|double|AIR CONCENTRATION (OF NAMED ISOTOPE TYPE INCLUDING GROSS BETA)|Bq m-3|2|0|32|Bq m-3|2|10 +024022|concentrationInPrecipitationOfNamedIsotopeType|double|CONCENTRATION IN PRECIPITATION (OF NAMED ISOTOPE TYPE)|Bq/l|2|0|32|Bq/l|2|10 +024023|pulseRateOfBetaRadiation|double|PULSE RATE OF BETA RADIATION|/s|1|0|14|/s|1|4 +024024|pulseRateOfGammaRadiation|double|PULSE RATE OF GAMMA RADIATION|/s|1|0|14|/s|1|4 +025001|rangeGateLength|long|RANGE-GATE LENGTH|m|-1|0|6|m|-1|2 +025002|numberOfGatesAveraged|long|NUMBER OF GATES AVERAGED|Numeric|0|0|4|Numeric|0|2 +025003|numberOfIntegratedPulses|long|NUMBER OF INTEGRATED PULSES|Numeric|0|0|8|Numeric|0|3 +025004|echoProcessing|table|ECHO PROCESSING|CODE TABLE|0|0|2|CODE TABLE|0|1 +025005|echoIntegration|table|ECHO INTEGRATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025006|zToRConversion|table|Z TO R CONVERSION|CODE TABLE|0|0|3|CODE TABLE|0|1 +025007|zToRConversionFactor|long|Z TO R CONVERSION FACTOR|Numeric|0|0|12|Numeric|0|4 +025008|zToRConversionExponent|long|Z TO R CONVERSION EXPONENT|Numeric|2|0|9|Numeric|2|3 +025009|calibrationMethod|flag|CALIBRATION METHOD|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +025010|clutterTreatment|table|CLUTTER TREATMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +025011|groundOccultationCorrectionScreening|table|GROUND OCCULTATION CORRECTION (SCREENING)|CODE TABLE|0|0|2|CODE TABLE|0|1 +025012|rangeAttenuationCorrection|table|RANGE ATTENUATION CORRECTION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025013|brightBandCorrection|flag|BRIGHT-BAND CORRECTION|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025014|azimuthClutterCutOff|long|AZIMUTH CLUTTER CUT-OFF|Numeric|0|0|12|Numeric|0|4 +025015|radomeAttenuationCorrection|flag|RADOME ATTENUATION CORRECTION|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025016|clearAirAttenuationCorrection|double|CLEAR-AIR ATTENUATION CORRECTION|dB/m|5|0|6|dB/m|5|2 +025017|precipitationAttenuationCorrection|flag|PRECIPITATION ATTENUATION CORRECTION|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025018|aToZLawForAttenuationFactor|long|A TO Z LAW FOR ATTENUATION FACTOR|Numeric|7|0|6|Numeric|7|2 +025019|aToZLawForAttenuationExponent|long|A TO Z LAW FOR ATTENUATION EXPONENT|Numeric|2|0|7|Numeric|2|3 +025020|meanSpeedEstimation|table|MEAN SPEED ESTIMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025021|windComputationEnhancement|flag|WIND COMPUTATION ENHANCEMENT|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +025022|ghrsstRejectionFlag|flag|GHRSST REJECTION FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025023|ghrsstConfidenceFlag|flag|GHRSST CONFIDENCE FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025024|ghrsstDataQuality|table|GHRSST DATA QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +025025|batteryVoltage|double|BATTERY VOLTAGE|V|1|0|9|V|1|3 +025026|batteryVoltageLargeRange|double|BATTERY VOLTAGE (LARGE RANGE)|V|1|0|12|V|1|4 +025028|operatorOrManufacturerDefinedParameter|long|OPERATOR OR MANUFACTURER DEFINED PARAMETER|Numeric|1|-16384|15|Numeric|1|5 +025029|calibrationMethod|flag|CALIBRATION METHOD|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +025030|runningMeanSeaSurfaceTemperatureUsage|table|RUNNING MEAN SEA-SURFACE TEMPERATURE USAGE|CODE TABLE|0|0|2|CODE TABLE|0|1 +025031|nwpGeneratedVerticalProfileThinningMethod|table|NWP-GENERATED VERTICAL PROFILE THINNING METHOD|CODE TABLE|0|0|3|CODE TABLE|0|1 +025032|windProfilerModeInformation|table|WIND PROFILER MODE INFORMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025033|windProfilerSubmodeInformation|table|WIND PROFILER SUBMODE INFORMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025034|windProfilerQualityControlTestResults|flag|WIND PROFILER QUALITY CONTROL TEST RESULTS|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +025035|decisionMethodForPolarity|table|DECISION METHOD FOR POLARITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +025036|atmosphericsLocationMethod|table|ATMOSPHERICS LOCATION METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +025037|sstBias|double|SST BIAS|K|2|-127|8|K|2|3 +025038|differenceBetweenSstAndAnalysis|double|DIFFERENCE BETWEEN SST AND ANALYSIS|K|1|-127|8|K|1|3 +025040|co2WindProductDerivation|table|CO2 WIND PRODUCT DERIVATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +025041|movingPlatformDirectionReportingMethod|table|MOVING PLATFORM DIRECTION REPORTING METHOD|CODE TABLE|0|0|2|CODE TABLE|0|1 +025042|movingPlatformSpeedReportingMethod|table|MOVING PLATFORM SPEED REPORTING METHOD|CODE TABLE|0|0|2|CODE TABLE|0|1 +025043|waveSamplingIntervalTime|double|WAVE SAMPLING INTERVAL (TIME)|s|4|0|15|s|4|5 +025044|waveSamplingIntervalSpace|double|WAVE SAMPLING INTERVAL (SPACE)|m|2|0|14|m|2|5 +025045|hirsChannelCombination|flag|HIRS CHANNEL COMBINATION|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +025046|msuChannelCombination|flag|MSU CHANNEL COMBINATION|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +025047|ssuChannelCombination|flag|SSU CHANNEL COMBINATION|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +025048|amsuAChannelCombination|flag|AMSU-A CHANNEL COMBINATION|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +025049|amsuBChannelCombination|flag|AMSU-B CHANNEL COMBINATION|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +025050|principalComponentScore|long|PRINCIPAL COMPONENT SCORE|Numeric|4|-131072|18|Numeric|4|6 +025051|avhrrChannelCombination|flag|AVHRR CHANNEL COMBINATION|FLAG TABLE|0|0|7|FLAG TABLE|0|3 +025052|log10OfPrincipalComponentsNormalizedFitToData|long|LOG10 OF PRINCIPAL COMPONENTS NORMALIZED FIT TO DATA|Numeric|4|0|15|Numeric|4|5 +025053|observationQuality|flag|OBSERVATION QUALITY|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +025054|ssmisSubframeIdNumber|long|SSMIS SUBFRAME ID NUMBER|Numeric|0|0|5|Numeric|0|2 +025055|multiplexerHousekeeping|double|MULTIPLEXER HOUSEKEEPING|K|2|0|16|K|2|5 +025056|normalizedErrorEstimateInBackscatterMeasurementKp|long|NORMALIZED ERROR ESTIMATE IN BACKSCATTER MEASUREMENT (KP)|Numeric|4|0|14|Numeric|4|5 +025060|softwareIdentification|long|SOFTWARE IDENTIFICATION|Numeric|0|0|14|Numeric|0|5 +025061|softwareVersionNumber|string|SOFTWARE IDENTIFICATION AND VERSION NUMBER|CCITT IA5|0|0|96|Character|0|12 +025062|databaseIdentification|long|DATABASE IDENTIFICATION|Numeric|0|0|14|Numeric|0|5 +025063|SystemIdentifier|table|CENTRAL PROCESSOR OR SYSTEM IDENTIFIER|CODE TABLE|0|0|8|CODE TABLE|0|3 +025065|orientationCorrectionAzimuth|double|ORIENTATION CORRECTION (AZIMUTH)|deg|2|-1000|11|deg|2|4 +025066|orientationCorrectionElevation|double|ORIENTATION CORRECTION (ELEVATION)|deg|2|-1000|11|deg|2|4 +025067|radiosondeReleasePointPressureCorrection|long|RADIOSONDE RELEASE POINT PRESSURE CORRECTION|Pa|0|-8000|14|Pa|0|4 +025068|numberOfArchiveRecomputes|long|NUMBER OF ARCHIVE RECOMPUTES|Numeric|0|0|7|Numeric|0|3 +025069|flightLevelPressureCorrections|flag|FLIGHT LEVEL PRESSURE CORRECTIONS|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +025070|majorFrameCount|long|MAJOR FRAME COUNT|Numeric|0|0|4|Numeric|0|2 +025071|frameCount|long|FRAME COUNT|Numeric|0|0|5|Numeric|0|2 +025075|satelliteAntennaCorrectionsVersionNumber|long|SATELLITE ANTENNA CORRECTIONS VERSION NUMBER|Numeric|0|0|5|Numeric|0|2 +025076|log10OfTemperatureRadianceCentralWaveNumberForAtovs|double|LOG10 OF (TEMPERATURE-RADIANCE CENTRAL WAVE NUMBER) FOR ATOVS|log (m-1)|8|0|30|log (m-1)|8|10 +025077|bandwidthCorrectionCoefficient1|long|BANDWIDTH CORRECTION COEFFICIENT 1|Numeric|5|-100000|18|Numeric|5|7 +025078|bandwidthCorrectionCoefficient2|long|BANDWIDTH CORRECTION COEFFICIENT 2|Numeric|5|0|17|Numeric|5|6 +025079|albedoRadianceSolarFilteredIrradianceForAtovs|double|ALBEDO-RADIANCE SOLAR FILTERED IRRADIANCE FOR ATOVS|W m-2|4|0|24|W m-2|4|8 +025080|albedoRadianceEquivalentFilterWidthForAtovs|double|ALBEDO-RADIANCE EQUIVALENT FILTER WIDTH FOR ATOVS|m|10|0|14|m|10|5 +025081|incidenceAngle|double|INCIDENCE ANGLE|deg|3|0|17|deg|3|6 +025082|azimuthAngle|double|AZIMUTH ANGLE|deg|3|0|19|deg|3|6 +025083|faradayRotationalAngle|double|FARADAY ROTATIONAL ANGLE|deg|3|0|19|deg|3|6 +025084|geometricRotationalAngle|double|GEOMETRIC ROTATIONAL ANGLE|deg|5|0|26|deg|5|8 +025085|fractionOfClearPixelsInHirsFov|long|FRACTION OF CLEAR PIXELS IN HIRS FOV|Numeric|0|0|7|Numeric|0|3 +025086|depthCorrectionIndicator|table|DEPTH CORRECTION INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +025090|orbitStateFlag|table|ORBIT STATE FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +025091|structureConstantOfRefractionIndexCn2|double|STRUCTURE CONSTANT OF THE REFRACTION INDEX (CN2)|dB|3|-18192|13|dB|3|5 +025092|acousticPropagationVelocity|double|ACOUSTIC PROPAGATION VELOCITY|m/s|2|28000|14|m/s|2|5 +025093|rassComputationCorrection|flag|RASS COMPUTATION CORRECTION|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +025095|altimeterStateFlag|flag|ALTIMETER STATE FLAG|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025096|radiometerStateFlag|flag|RADIOMETER STATE FLAG|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +025097|threeDimensionalErrorEstimateOfNavigatorOrbit|table|THREE-DIMENSIONAL ERROR ESTIMATE OF THE NAVIGATOR ORBIT|CODE TABLE|0|0|4|CODE TABLE|0|2 +025098|altimeterDataQualityFlag|flag|ALTIMETER DATA QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025099|altimeterCorrectionQualityFlag|flag|ALTIMETER CORRECTION QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025100|xbtOrXctdFallRateEquationCoefficientA|long|XBT/XCTD FALL RATE EQUATION COEFFICIENT A|Numeric|5|0|20|Numeric|5|6 +025101|xbtOrXctdFallRateEquationCoefficientB|long|XBT/XCTD FALL RATE EQUATION COEFFICIENT B|Numeric|5|-500000|21|Numeric|5|6 +025102|numberOfMissingLinesExcludingDataGaps|long|NUMBER OF MISSING LINES EXCLUDING DATA GAPS|Numeric|0|0|8|Numeric|0|3 +025103|numberOfDirectionalBins|long|NUMBER OF DIRECTIONAL BINS|Numeric|0|0|8|Numeric|0|3 +025104|numberOfWavelengthBins|long|NUMBER OF WAVELENGTH BINS|Numeric|0|0|8|Numeric|0|3 +025105|firstDirectionalBin|double|FIRST DIRECTIONAL BIN|deg|3|0|19|deg|3|6 +025106|directionalBinStep|double|DIRECTIONAL BIN STEP|deg|3|0|19|deg|3|6 +025107|firstWavelengthBin|double|FIRST WAVELENGTH BIN|m|3|0|29|m|3|9 +025108|lastWavelengthBin|double|LAST WAVELENGTH BIN|m|3|0|29|m|3|9 +025110|imageProcessingSummary|flag|IMAGE PROCESSING SUMMARY|FLAG TABLE|0|0|10|FLAG TABLE|0|4 +025111|numberOfInputDataGaps|long|NUMBER OF INPUT DATA GAPS|Numeric|0|0|8|Numeric|0|3 +025112|bandSpecificAltimeterDataQualityFlag|flag|BAND SPECIFIC ALTIMETER DATA QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025113|bandSpecificAltimeterCorrectionQualityFlag|flag|BAND SPECIFIC ALTIMETER CORRECTION QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025120|ra2L2ProcessingFlag|table|RA2-L2-PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025121|ra2L2ProcessingQuality|long|RA2-L2-PROCESSING QUALITY|%|0|0|7|%|0|3 +025122|hardwareConfigurationForRf|table|HARDWARE CONFIGURATION FOR RF|CODE TABLE|0|0|2|CODE TABLE|0|1 +025123|hardwareConfigurationForHpa|table|HARDWARE CONFIGURATION FOR HPA|CODE TABLE|0|0|2|CODE TABLE|0|1 +025124|mwrL2ProcessingFlag|table|MWR-L2-PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025125|mwrL2ProcessingQuality|long|MWR-L2-PROCESSING QUALITY|%|0|0|7|%|0|3 +025126|modelDryTroposphericCorrection|double|MODEL DRY TROPOSPHERIC CORRECTION|m|3|-32768|16|m|3|5 +025127|invertedBarometerCorrection|double|INVERTED BAROMETER CORRECTION|m|3|-32768|16|m|3|5 +025128|modelWetTroposphericCorrection|double|MODEL WET TROPOSPHERIC CORRECTION|m|3|-32768|16|m|3|5 +025129|mwrDerivedWetTroposphericCorrection|double|MWR DERIVED WET TROPOSPHERIC CORRECTION|m|3|-32768|16|m|3|5 +025130|ra2IonosphericCorrectionOnKuBand|double|RA2 IONOSPHERIC CORRECTION ON KU BAND|m|3|-32768|16|m|3|5 +025131|ionosphericCorrectionFromDorisOnKuBand|double|IONOSPHERIC CORRECTION FROM DORIS ON KU BAND|m|3|-32768|16|m|3|5 +025132|ionosphericCorrectionFromModelOnKuBand|double|IONOSPHERIC CORRECTION FROM MODEL ON KU BAND|m|3|-32768|16|m|3|5 +025133|seaStateBiasCorrectionOnKuBand|double|SEA STATE BIAS CORRECTION ON KU BAND|m|3|-32768|16|m|3|5 +025134|ra2IonosphericCorrectionOnSBand|double|RA2 IONOSPHERIC CORRECTION ON S BAND|m|3|-32768|16|m|3|5 +025135|ionosphericCorrectionFromDorisOnSBand|double|IONOSPHERIC CORRECTION FROM DORIS ON S BAND|m|3|-32768|16|m|3|5 +025136|ionosphericCorrectionFromModelOnSBand|double|IONOSPHERIC CORRECTION FROM MODEL ON S BAND|m|3|-32768|16|m|3|5 +025137|seaStateBiasCorrectionOnSBand|double|SEA STATE BIAS CORRECTION ON S BAND|m|3|-32768|16|m|3|5 +025138|averageSignalToNoiseRatio|long|AVERAGE SIGNAL-TO-NOISE RATIO|Numeric|0|-2048|12|Numeric|0|4 +025139|processingLevel|long|PROCESSING LEVEL|Numeric|0|0|5|Numeric|0|4 +025140|startChannel|long|START CHANNEL|Numeric|0|0|14|Numeric|0|5 +025141|endChannel|long|END CHANNEL|Numeric|0|0|14|Numeric|0|5 +025142|channelScaleFactor|long|CHANNEL SCALE FACTOR|Numeric|0|0|6|Numeric|0|2 +025143|linearCoefficient|long|LINEAR COEFFICIENT|Numeric|6|-5000000|24|Numeric|6|8 +025144|numberOfVisualChannelsUsedInProcessing|long|NUMBER OF VISUAL CHANNELS USED IN PROCESSING|Numeric|0|0|6|Numeric|0|2 +025145|numberOfInfraredChannelsUsedInProcessing|long|NUMBER OF INFRARED CHANNELS USED IN PROCESSING|Numeric|0|0|6|Numeric|0|2 +025148|coefficientOfVariation|long|COEFFICIENT OF VARIATION|Numeric|2|-10000|15|Numeric|2|5 +025149|optimalEstimationCost|long|OPTIMAL ESTIMATION COST|Numeric|0|0|8|Numeric|0|3 +025150|methodOfTropicalCycloneIntensityAnalysisUsingSatelliteData|table|METHOD OF TROPICAL CYCLONE INTENSITY ANALYSIS USING SATELLITE DATA|CODE TABLE|0|0|4|CODE TABLE|0|2 +025160|kuBandNetInstrumentalCorrection|double|KU BAND NET INSTRUMENTAL CORRECTION|m|4|-120000|18|m|4|6 +025161|cBandNetInstrumentalCorrection|double|C BAND NET INSTRUMENTAL CORRECTION|m|4|-120000|18|m|4|6 +025162|seaStateBiasCorrectionOnCBand|double|SEA STATE BIAS CORRECTION ON C BAND|m|4|-6000|13|m|4|4 +025163|altimeterIonosphericCorrectionOnKuBand|double|ALTIMETER IONOSPHERIC CORRECTION ON KU BAND|m|3|-32768|16|m|3|5 +025164|radiometerWetTroposphericCorrection|double|RADIOMETER WET TROPOSPHERIC CORRECTION|m|4|-5000|13|m|4|4 +025165|ionosphericCorrectionFromModelOnSpecificBand|double|IONOSPHERIC CORRECTION FROM MODEL ON SPECIFIC BAND|m|4|-32768|16|m|4|5 +025166|seaStateBiasCorrectionOnSpecificBand|double|SEA STATE BIAS CORRECTION ON SPECIFIC BAND|m|4|-32768|16|m|4|5 +025167|specificBandNetInstrumentalCorrection|double|SPECIFIC BAND NET INSTRUMENTAL CORRECTION|m|4|-120000|18|m|4|6 +025170|samplingIntervalTime|long|SAMPLING INTERVAL (TIME)|s|0|0|10|s|0|4 +025171|sampleAveragingPeriod|long|SAMPLE AVERAGING PERIOD|s|0|0|10|s|0|4 +025172|numberOfSamples|long|NUMBER OF SAMPLES|Numeric|0|0|10|Numeric|0|4 +025174|smosInformationFlag|flag|SMOS INFORMATION FLAG|FLAG TABLE|0|0|14|FLAG TABLE|0|5 +025175|modifiedResidual|long|MODIFIED RESIDUAL|Numeric|2|0|13|Numeric|2|4 +025180|lrmPercent|double|LRM PER CENT|%|2|0|16|%|2|5 +025181|l2ProcessingFlag|table|L2 PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025182|l1ProcessingFlag|table|L1 PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025183|l1ProcessingQuality|double|L1 PROCESSING QUALITY|%|2|0|14|%|2|5 +025184|l2ProductStatus|table|L2 PRODUCT STATUS|CODE TABLE|0|0|2|CODE TABLE|0|1 +025185|encryptionMethod|table|ENCRYPTION METHOD|CODE TABLE|0|0|8|CODE TABLE|0|3 +025186|encryptionKeyVersion|string|ENCRYPTION KEY VERSION|CCITT IA5|0|0|96|Character|0|12 +025187|confidenceFlag|table|CONFIDENCE FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +025188|methodForReducingPressureToSeaLevel|table|METHOD FOR REDUCING PRESSURE TO SEA LEVEL|CODE TABLE|0|0|5|CODE TABLE|0|2 +025189|rangeCutOffWavelength|long|RANGE CUT-OFF WAVELENGTH|m|0|1|9|m|0|3 +025190|altimeterEchoProcessingMode|table|ALTIMETER ECHO PROCESSING MODE|CODE TABLE|0|0|8|CODE TABLE|0|3 +025191|altimeterTrackingMode|table|ALTIMETER TRACKING MODE|CODE TABLE|0|0|8|CODE TABLE|0|3 +026001|principalTimeOfDailyReadingInUtcOfMaximumTemperature|double|PRINCIPAL TIME OF DAILY READING IN UTC OF MAXIMUM TEMPERATURE|h|1|0|12|h|1|3 +026002|principalTimeOfDailyReadingInUtcOfMinimumTemperature|double|PRINCIPAL TIME OF DAILY READING IN UTC OF MINIMUM TEMPERATURE|h|1|0|12|h|1|3 +026003|timeDifference|long|TIME DIFFERENCE|min|0|-1440|12|min|0|4 +026010|hoursIncluded|flag|HOURS INCLUDED|FLAG TABLE|0|0|26|FLAG TABLE|0|9 +026020|durationOfPrecipitation|long|DURATION OF PRECIPITATION|min|0|0|11|min|0|4 +026021|nonCoordinateYear|long|YEAR|a|0|0|12|a|0|4 +026022|nonCoordinateMonth|long|MONTH|mon|0|0|4|mon|0|2 +026023|nonCoordinateDay|long|DAY|d|0|0|6|d|0|2 +026030|measurementIntegrationTime|double|MEASUREMENT INTEGRATION TIME|s|2|0|8|s|2|3 +027001|nonCoordinateLatitude|double|LATITUDE (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +027002|nonCoordinateLatitude|double|LATITUDE (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +027003|alternateLatitude|double|ALTERNATE LATITUDE (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +027004|alternateLatitude|double|ALTERNATE LATITUDE (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +027010|footprintAxis1|long|FOOTPRINT AXIS 1|m|-1|0|14|m|-1|5 +027020|satelliteLocationCounter|long|SATELLITE LOCATION COUNTER|Numeric|0|0|16|Numeric|0|5 +027021|satelliteSublocationDimension|long|SATELLITE SUBLOCATION DIMENSION|Numeric|0|0|16|Numeric|0|5 +027031|DistanceFromEarthCentreInDirectionOf0DegreesLongitude|double|IN DIRECTION OF 0 DEGREES LONGITUDE, DISTANCE FROM THE EARTH'S CENTRE|m|2|-1073741824|31|m|2|10 +027079|horizontalWidthOfSampledVolume|long|HORIZONTAL WIDTH OF SAMPLED VOLUME|m|0|0|18|m|0|6 +027080|viewingAzimuthAngle|double|VIEWING AZIMUTH ANGLE|deg|2|0|16|deg|0|5 +028001|nonCoordinateLongitude|double|LONGITUDE (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +028002|nonCoordinateLongitude|double|LONGITUDE (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +028003|alternateLongitude|double|ALTERNATE LONGITUDE (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +028004|alternateLongitude|double|ALTERNATE LONGITUDE (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +028010|footprintAxis2|long|FOOTPRINT AXIS 2|m|-1|0|14|m|-1|5 +028031|DistanceFromEarthCentreInDirection90DegreesEast|double|IN DIRECTION 90 DEGREES EAST, DISTANCE FROM THE EARTH'S CENTRE|m|2|-1073741824|31|m|2|10 +029001|projectionType|table|PROJECTION TYPE|CODE TABLE|0|0|3|CODE TABLE|0|1 +029002|coordinateGridType|table|COORDINATE GRID TYPE|CODE TABLE|0|0|3|CODE TABLE|0|1 +029014|optionalListOfParametersForAnExternalMapProjectionLibrary|string|OPTIONAL LIST OF PARAMETERS FOR AN EXTERNAL MAP PROJECTION LIBRARY|CCITT IA5|0|0|504|Character|0|63 +030001|pixelValue4Bits|long|PIXEL VALUE (4 BITS)|Numeric|0|0|4|Numeric|0|2 +030002|pixelValue8Bits|long|PIXEL VALUE (8 BITS)|Numeric|0|0|8|Numeric|0|3 +030004|pixelValue16Bits|long|PIXEL VALUE (16 BITS)|Numeric|0|0|16|Numeric|0|5 +030010|numberOfGridPoints|long|NUMBER OF GRID POINTS|Numeric|0|0|13|Numeric|0|4 +030021|numberOfPixelsPerRow|long|NUMBER OF PIXELS PER ROW|Numeric|0|0|12|Numeric|0|4 +030022|numberOfPixelsPerColumn|long|NUMBER OF PIXELS PER COLUMN|Numeric|0|0|12|Numeric|0|4 +030031|pictureType|table|PICTURE TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +030032|combinationWithOtherData|flag|COMBINATION WITH OTHER DATA|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +030033|numberOfBinsAlongRadial|long|NUMBER OF BINS ALONG THE RADIAL|Numeric|0|0|12|Numeric|0|4 +030034|numberOfAzimuths|long|NUMBER OF AZIMUTHS|Numeric|0|0|12|Numeric|0|4 +031000|shortDelayedDescriptorReplicationFactor|long|SHORT DELAYED DESCRIPTOR REPLICATION FACTOR|Numeric|0|0|1|NA|0|0 +031001|delayedDescriptorReplicationFactor|long|DELAYED DESCRIPTOR REPLICATION FACTOR|Numeric|0|0|8|NA|0|0 +031002|extendedDelayedDescriptorReplicationFactor|long|EXTENDED DELAYED DESCRIPTOR REPLICATION FACTOR|Numeric|0|0|16|NA|0|0 +031011|delayedDescriptorAndDataRepetitionFactor|long|DELAYED DESCRIPTOR AND DATA REPETITION FACTOR|Numeric|0|0|8|NA|0|0 +031012|extendedDelayedDescriptorAndDataRepetitionFactor|long|EXTENDED DELAYED DESCRIPTOR AND DATA REPETITION FACTOR|Numeric|0|0|16|NA|0|0 +031021|associatedFieldSignificance|table|ASSOCIATED FIELD SIGNIFICANCE|CODE TABLE|0|0|6|NA|0|0 +031031|dataPresentIndicator|flag|DATA PRESENT INDICATOR|FLAG TABLE|0|0|1|NA|0|0 +033002|qualityInformation|table|QUALITY INFORMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033003|qualityInformation|table|QUALITY INFORMATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +033005|qualityInformationAwsData|flag|QUALITY INFORMATION (AWS DATA)|FLAG TABLE|0|0|30|FLAG TABLE|0|10 +033006|internalMeasurementStatusInformationAws|table|INTERNAL MEASUREMENT STATUS INFORMATION (AWS)|CODE TABLE|0|0|3|CODE TABLE|0|1 +033007|percentConfidence|long|PER CENT CONFIDENCE|%|0|0|7|%|0|3 +033015|dataQualityCheckIndicator|table|DATA QUALITY-CHECK INDICATOR|CODE TABLE|0|0|6|CODE TABLE|0|2 +033020|qualityControlIndicationOfFollowingValue|table|QUALITY CONTROL INDICATION OF FOLLOWING VALUE|CODE TABLE|0|0|3|CODE TABLE|0|1 +033021|qualityOfFollowingValue|table|QUALITY OF FOLLOWING VALUE|CODE TABLE|0|0|2|CODE TABLE|0|1 +033022|qualityOfBuoySatelliteTransmission|table|QUALITY OF BUOY SATELLITE TRANSMISSION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033023|qualityOfBuoyLocation|table|QUALITY OF BUOY LOCATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033024|stationElevationQualityMarkForMobileStations|table|STATION ELEVATION QUALITY MARK (FOR MOBILE STATIONS)|CODE TABLE|0|0|4|CODE TABLE|0|2 +033025|acarsInterpolatedValuesIndicator|table|ACARS INTERPOLATED VALUES INDICATOR|CODE TABLE|0|0|3|CODE TABLE|0|1 +033026|moistureQuality|table|MOISTURE QUALITY|CODE TABLE|0|0|6|CODE TABLE|0|2 +033027|locationQualityClassRangeOfRadiusOf66Confidence|table|LOCATION QUALITY CLASS (RANGE OF RADIUS OF 66 % CONFIDENCE)|CODE TABLE|0|0|3|CODE TABLE|0|1 +033028|snapshotOverallQuality|table|SNAPSHOT OVERALL QUALITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +033030|scanLineStatusFlagsForAtovs|flag|SCAN LINE STATUS FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033031|scanLineQualityFlagsForAtovs|flag|SCAN LINE QUALITY FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033032|channelQualityFlagsForAtovs|flag|CHANNEL QUALITY FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033033|fieldOfViewQualityFlagsForAtovs|flag|FIELD OF VIEW QUALITY FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033035|qualityControl|table|MANUAL/AUTOMATIC QUALITY CONTROL|CODE TABLE|0|0|4|CODE TABLE|0|2 +033036|nominalConfidenceThreshold|long|NOMINAL CONFIDENCE THRESHOLD|%|0|0|7|%|0|3 +033037|windCorrelationError|flag|WIND CORRELATION ERROR|FLAG TABLE|0|0|20|FLAG TABLE|0|7 +033038|qualityFlagsForGroundBasedGnssData|flag|QUALITY FLAGS FOR GROUND-BASED GNSS DATA|FLAG TABLE|0|0|10|FLAG TABLE|0|4 +033039|radioOccultationDataQualityFlags|flag|QUALITY FLAGS FOR RADIO OCCULTATION DATA|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033040|confidenceInterval|long|CONFIDENCE INTERVAL|%|0|0|7|%|0|3 +033041|attributeOfFollowingValue|table|ATTRIBUTE OF FOLLOWING VALUE|CODE TABLE|0|0|2|CODE TABLE|0|1 +033042|typeOfLimitRepresentedByFollowingValue|table|TYPE OF LIMIT REPRESENTED BY FOLLOWING VALUE|CODE TABLE|0|0|3|CODE TABLE|0|1 +033043|astConfidence|flag|AST CONFIDENCE|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +033044|asarQualityInformation|flag|ASAR QUALITY INFORMATION|FLAG TABLE|0|0|15|FLAG TABLE|0|5 +033045|probabilityOfFollowingEvent|long|PROBABILITY OF FOLLOWING EVENT|%|0|0|7|%|0|3 +033046|conditionalProbability|long|CONDITIONAL PROBABILITY OF FOLLOWING EVENT WITH RESPECT TO SPECIFIED CONDITIONING EVENT|%|0|0|7|%|0|3 +033047|measurementConfidenceData|flag|MEASUREMENT CONFIDENCE DATA|FLAG TABLE|0|0|31|FLAG TABLE|0|11 +033048|confidenceMeasureOfSarInversion|table|CONFIDENCE MEASURE OF SAR INVERSION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033049|confidenceMeasureOfWindRetrieval|table|CONFIDENCE MEASURE OF WIND RETRIEVAL|CODE TABLE|0|0|2|CODE TABLE|0|1 +033050|globalGtsppQualityFlag|table|GLOBAL GTSPP QUALITY FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +033052|sBandOceanRetrackingQuality|flag|S BAND OCEAN RETRACKING QUALITY|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +033053|kuBandOceanRetrackingQuality|flag|KU BAND OCEAN RETRACKING QUALITY|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +033054|overallQualityOfRetrievedAtmosphericProfile|table|OVERALL QUALITY OF RETRIEVED ATMOSPHERIC PROFILE|CODE TABLE|0|0|3|CODE TABLE|0|1 +033055|windVectorQualityFlag|flag|WIND VECTOR QUALITY FLAG|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033056|sigma0QualityFlag|flag|SIGMA-0 QUALITY FLAG|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033060|gqisFlagQual|table|GQISFLAGQUAL - INDIVIDUAL IASI-SYSTEM QUALITY FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +033061|gqisQualIndex|long|GQISQUALINDEX - INDICATOR FOR INSTRUMENT NOISE PERFORMANCE (CONTRIBUTIONS FROM SPECTRAL AND RADIOMETRIC CALIBRATION)|%|0|0|7|%|0|3 +033062|gqisQualIndexLoc|long|GQISQUALINDEXLOC - INDICATOR FOR GEOMETRIC QUALITY INDEX|%|0|0|7|%|0|3 +033063|gqisQualIndexRad|long|GQISQUALINDEXRAD - INDICATOR FOR INSTRUMENT NOISE PERFORMANCE (CONTRIBUTIONS FROM RADIOMETRIC CALIBRATION)|%|0|0|7|%|0|3 +033064|gqisQualIndexSpect|long|GQISQUALINDEXSPECT - INDICATOR FOR INSTRUMENT NOISE PERFORMANCE (CONTRIBUTIONS FROM SPECTRAL CALIBRATION)|%|0|0|7|%|0|3 +033065|gqisSysTecQual|long|GQISSYSTECSONDQUAL - OUTPUT OF SYSTEM TEC (TECHNICAL EXPERTISE CENTRE) QUALITY FUNCTION|Numeric|0|0|24|Numeric|0|8 +033066|amvQualityFlag|flag|AMV QUALITY FLAG|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033070|totalOzoneQuality|table|TOTAL OZONE QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +033071|profileOzoneQuality|table|PROFILE OZONE QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +033072|ozoneError|table|OZONE ERROR|CODE TABLE|0|0|5|CODE TABLE|0|2 +033075|scanLevelDataValidityQualityFlags|flag|SCAN-LEVEL QUALITY FLAGS|FLAG TABLE|0|0|13|FLAG TABLE|0|5 +033076|calibrationQualityFlags|flag|CALIBRATION QUALITY FLAGS|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +033077|fieldOfViewQualityFlags|flag|FIELD-OF-VIEW QUALITY FLAGS|FLAG TABLE|0|0|19|FLAG TABLE|0|7 +033078|geolocationQuality|table|GEOLOCATION QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +033079|granuleLevelQualityFlags|flag|GRANULE LEVEL QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033080|scanLevelQualityFlags|flag|SCAN LEVEL QUALITY FLAGS|FLAG TABLE|0|0|20|FLAG TABLE|0|7 +033081|channelDataQualityFlags|flag|CHANNEL DATA QUALITY FLAGS|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +033082|geolocationQualityFlags|flag|GEOLOCATION QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033083|radianceDataQualityFlags|flag|RADIANCE DATA QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033084|pixelLevelQualityFlags|flag|PIXEL LEVEL QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033085|aerosolOpticalThicknessQualityFlags|flag|AEROSOL OPTICAL THICKNESS QUALITY FLAGS|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +033086|qualityOfPixelLevelRetrieval|table|QUALITY OF PIXEL LEVEL RETRIEVAL|CODE TABLE|0|0|3|CODE TABLE|0|1 +033087|extentOfSatelliteWithinSouthAtlanticAnomalyBasedOnClimatologicalData|table|EXTENT OF SATELLITE WITHIN SOUTH ATLANTIC ANOMALY (BASED ON CLIMATOLOGICAL DATA)|CODE TABLE|0|0|4|CODE TABLE|0|1 +033088|ozoneTotalColumnQualityFlag|flag|OZONE TOTAL COLUMN QUALITY FLAG|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +033089|noiseEquivalentDeltaTemperatureNedtQualityIndicatorsForWarmTargetCalibration|double|NOISE EQUIVALENT DELTA TEMPERATURE (NEDT) QUALITY INDICATORS FOR WARM TARGET CALIBRATION|K|2|0|12|K|2|4 +033090|nedtQualityIndicatorsForColdTargetCalibration|double|NEDT QUALITY INDICATORS FOR COLD TARGET CALIBRATION|K|2|0|12|K|2|4 +033091|nedtQualityIndicatorsForOverallCalibration|double|NEDT QUALITY INDICATORS FOR OVERALL CALIBRATION|K|2|0|12|K|2|4 +033092|bandSpecificOceanQualityFlag|flag|BAND SPECIFIC OCEAN QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +033093|extendedQualityFlagsForGroundBasedGnssData|flag|EXTENDED QUALITY FLAGS FOR GROUND-BASED GNSS DATA|FLAG TABLE|0|0|31|FLAG TABLE|0|31 +033094|calibrationQualityControlFlags|flag|CALIBRATION QUALITY CONTROL FLAGS|FLAG TABLE|0|0|24|FLAG TABLE|0|24 +033095|mwiTemperaturesFlag|flag|MWI TEMPERATURES FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +033096|mwiCalibrationFlag|flag|MWI CALIBRATION FLAG|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033097|mwiScanQualityFlag|flag|MWI SCAN QUALITY FLAG|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033098|mwiDataQualityFlag|flag|MWI DATA QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +033099|mwiNavigationStatusFlag|flag|MWI NAVIGATION STATUS FLAG|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033100|iciTemperaturesFlag|flag|ICI TEMPERATURES FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +033101|iciCalibrationFlag|flag|ICI CALIBRATION FLAG|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033102|iciScanQualityFlag|flag|ICI SCAN QUALITY FLAG|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033103|iciDataQualityFlag|flag|ICI DATA QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +033104|iciNavigationStatusFlag|flag|ICI NAVIGATION STATUS FLAG|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033105|iciProcessingFlags|flag|ICI PROCESSING FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033106|mwiProcessingFlags|flag|MWI PROCESSING FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033107|mwsScanLineProcessingFlags|flag|MWS SCAN LINE PROCESSING FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033108|mwsNavigationStatusFlags|flag|MWS NAVIGATION STATUS FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033109|mwsOverallQualityFlags|flag|MWS OVERALL QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033110|mwsChannelProcessingFlags|flag|MWS CHANNEL PROCESSING FLAGS|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +033111|scaQualityFlags|flag|SCA QUALITY FLAGS|FLAG TABLE|0|0|32|FLAG TABLE|0|11 +033112|faradayRotationAngleOneWay|double|FARADAY ROTATION ANGLE (ONE WAY)|deg|2|-18000|16|deg|2|6 +033113|iasiNgGeneralQualityFlags|flag|IASI-NG GENERAL QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033114|outOfBoundsCheck|flag|OUT OF BOUNDS CHECK|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +033115|aerosolOpticalDepthQualityInformation|table|AEROSOL OPTICAL DEPTH QUALITY INFORMATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +033116|firstGuessInBoundsCheck|flag|FIRST GUESS IN BOUNDS CHECK|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +033117|inBoundsCheck|flag|IN BOUNDS CHECK|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +033118|relativeErrorPercentage|double|RELATIVE ERROR PERCENTAGE|%|2|-10000|15|%|2|5 +033119|forecastErrorPercentage|long|FORECAST ERROR PERCENTAGE|%|0|-100|8|%|0|3 +035000|fmAndRegionalCodeNumber|table|FM AND REGIONAL CODE NUMBER|CODE TABLE|0|0|10|CODE TABLE|0|3 +035001|timeFrameForMonitoring|table|TIME FRAME FOR MONITORING|CODE TABLE|0|0|3|CODE TABLE|0|1 +035011|numberOfReportsActuallyReceived|long|NUMBER OF REPORTS ACTUALLY RECEIVED|Numeric|0|0|14|Numeric|0|4 +035021|bulletinBeingMonitoredTtaaii|string|BULLETIN BEING MONITORED (TTAAII)|CCITT IA5|0|0|48|Character|0|6 +035022|bulletinBeingMonitoredYygggg|string|BULLETIN BEING MONITORED (YYGGGG)|CCITT IA5|0|0|48|Character|0|6 +035023|bulletinBeingMonitoredCccc|string|BULLETIN BEING MONITORED (CCCC)|CCITT IA5|0|0|32|Character|0|4 +035024|bulletinBeingMonitoredBbb|string|BULLETIN BEING MONITORED (BBB)|CCITT IA5|0|0|24|Character|0|3 +035030|discrepanciesInAvailabilityOfExpectedData|table|DISCREPANCIES IN THE AVAILABILITY OF EXPECTED DATA|CODE TABLE|0|0|4|CODE TABLE|0|1 +035031|qualifierOnMonitoringResults|table|QUALIFIER ON MONITORING RESULTS|CODE TABLE|0|0|7|CODE TABLE|0|2 +035032|causeOfMissingData|table|CAUSE OF MISSING DATA|CODE TABLE|0|0|4|CODE TABLE|0|1 +035033|observationAndCollectionDeficiencies|table|OBSERVATION AND COLLECTION DEFICIENCIES|CODE TABLE|0|0|7|CODE TABLE|0|2 +035034|statisticalTrendsForAvailabilityOfDataDuringSurveyPeriods|table|STATISTICAL TRENDS FOR AVAILABILITY OF DATA (DURING THE SURVEY PERIOD(S))|CODE TABLE|0|0|3|CODE TABLE|0|1 +035035|reasonForTermination|table|REASON FOR TERMINATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +040001|surfaceSoilMoisture|double|SURFACE SOIL MOISTURE (MS)|%|1|0|10|%|1|4 +040002|estimatedErrorInSurfaceSoilMoisture|double|ESTIMATED ERROR IN SURFACE SOIL MOISTURE|%|1|0|10|%|1|4 +040003|meanSurfaceSoilMoisture|long|MEAN SURFACE SOIL MOISTURE|Numeric|3|0|10|Numeric|3|4 +040004|rainFallDetection|long|RAIN FALL DETECTION|Numeric|3|0|10|Numeric|3|4 +040005|soilMoistureCorrectionFlag|flag|SOIL MOISTURE CORRECTION FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040006|soilMoistureProcessingFlag|flag|SOIL MOISTURE PROCESSING FLAG|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +040007|soilMoistureQuality|double|SOIL MOISTURE QUALITY|%|1|0|10|%|1|4 +040008|frozenLandSurfaceFraction|double|FROZEN LAND SURFACE FRACTION|%|1|0|10|%|1|4 +040009|inundationAndWetlandFraction|double|INUNDATION AND WETLAND FRACTION|%|1|0|10|%|1|4 +040010|topographicComplexity|double|TOPOGRAPHIC COMPLEXITY|%|1|0|10|%|1|4 +040011|interpolationFlag|flag|INTERPOLATION FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040012|radiometerDataQualityFlag|flag|RADIOMETER DATA QUALITY FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040013|radiometerBrightnessTemperatureInterpretationFlag|table|RADIOMETER BRIGHTNESS TEMPERATURE INTERPRETATION FLAG|CODE TABLE|0|0|3|CODE TABLE|0|1 +040014|highFrequencyFluctuationsOfSeaSurfaceTopographyCorrection|double|HIGH-FREQUENCY FLUCTUATIONS OF THE SEA-SURFACE TOPOGRAPHY CORRECTION|m|4|-3000|13|m|4|4 +040015|normalizedDifferentialVegetationIndex|long|NORMALIZED DIFFERENTIAL VEGETATION INDEX (NDVI)|Numeric|2|-100|8|Numeric|2|3 +040016|residualRmsInBand|long|RESIDUAL RMS IN BAND|Numeric|3|0|14|Numeric|3|5 +040017|nonNormalizedPrincipalComponentScore|long|NON-NORMALIZED PRINCIPAL COMPONENT SCORE|Numeric|0|-1073741824|31|Numeric|0|10 +040018|averageOfImagerMeasurements|double|GIACAVGIMAGIIS - AVERAGE OF IMAGER MEASUREMENTS|W m-2 sr-1 m|6|0|24|W m-2 sr-1 m|6|8 +040019|giacvarimagiisVarianceOfImagerMeasurements|double|GIACVARIMAGIIS - VARIANCE OF IMAGER MEASUREMENTS|W m-2 sr-1 m|6|0|24|W m-2 sr-1 m|6|8 +040020|gqisFlagQualDetailed|flag|GQISFLAGQUALDETAILED - QUALITY FLAG FOR THE SYSTEM|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +040021|fractionOfWeightedAvhrrPixelInIasiFovCoveredWithSnowOrIce|long|FRACTION OF WEIGHTED AVHRR PIXEL IN IASI FOV COVERED WITH SNOW/ICE|%|0|0|7|%|0|3 +040022|numberOfMissingBadOrFailedAvhrrPixels|long|NUMBER OF MISSING, BAD OR FAILED AVHRR PIXELS|Numeric|0|0|7|Numeric|0|3 +040023|auxiliaryAltimeterStateFlags|flag|AUXILIARY ALTIMETER STATE FLAGS|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +040024|meteorologicalMapAvailability|table|METEOROLOGICAL MAP AVAILABILITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +040025|interpolationFlagForMeanDiurnalTide|table|INTERPOLATION FLAG FOR MEAN DIURNAL TIDE|CODE TABLE|0|0|2|CODE TABLE|0|1 +040026|scoreQuantizationFactor|long|SCORE QUANTIZATION FACTOR|Numeric|2|0|16|Numeric|2|5 +040027|sunGlintAngle|double|SUN GLINT ANGLE|deg|2|-18000|16|deg|2|5 +040028|gmiQualityFlag|table|GMI QUALITY FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +040029|horizontalObservationIntegrationLength|long|HORIZONTAL OBSERVATION INTEGRATION LENGTH|m|0|0|26|m|0|8 +040030|horizontalLineOfSightWind|double|HORIZONTAL LINE OF SIGHT WIND|m/s|2|-32767|16|m/s|2|5 +040031|errorEstimateOfHorizontalLineOfSightWind|double|ERROR ESTIMATE OF HORIZONTAL LINE OF SIGHT WIND|m/s|2|0|15|m/s|2|5 +040032|derivativeWindToPressure|double|DERIVATIVE WIND TO PRESSURE|m s-1 Pa-1|3|-100000|18|m s-1 Pa-1|3|6 +040033|derivativeWindToTemperature|double|DERIVATIVE WIND TO TEMPERATURE|m s-1 K-1|3|-100000|18|m s-1 K-1|3|6 +040034|derivativeWindToBackscatterRatio|double|DERIVATIVE WIND TO BACKSCATTER RATIO|m/s|3|-200000|19|m/s|3|6 +040035|satelliteRange|long|SATELLITE RANGE|m|0|380000|18|m|0|6 +040036|lidarL2bClassificationType|table|LIDAR L2B CLASSIFICATION TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +040037|backscatterRatio|long|BACKSCATTER RATIO|Numeric|3|500|20|Numeric|3|7 +040038|cloudParticleSize|double|CLOUD PARTICLE SIZE|m|7|0|28|m|7|6 +040039|singleLookComplexImageIntensity|long|SINGLE LOOK COMPLEX IMAGE INTENSITY|Numeric|0|-25|5|Numeric|0|3 +040040|singleLookComplexImageSkewness|long|SINGLE LOOK COMPLEX IMAGE SKEWNESS|Numeric|2|1|13|Numeric|0|4 +040041|singleLookComplexImageKurtosis|long|SINGLE LOOK COMPLEX IMAGE KURTOSIS|Numeric|2|1|13|Numeric|0|4 +040042|singleLookComplexImageVariance|long|SINGLE LOOK COMPLEX IMAGE VARIANCE|Numeric|2|1|13|Numeric|0|4 +040043|satelliteManoeuvreIndicator|table|SATELLITE MANOEUVRE INDICATOR|CODE TABLE|0|0|3|CODE TABLE|0|1 +040044|dustIndex|long|DUST INDEX|Numeric|1|0|8|Numeric|1|3 +040045|cloudFormationAndHeightAssignment|flag|CLOUD FORMATION AND HEIGHT ASSIGNMENT|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +040046|cloudinessSummary|table|CLOUDINESS SUMMARY|CODE TABLE|0|0|3|CODE TABLE|0|1 +040047|validationFlagForIasiOrIasiNgLevel1Product|table|VALIDATION FLAG FOR IASI OR IASI-NG LEVEL 1 PRODUCT|CODE TABLE|0|0|3|CODE TABLE|0|1 +040048|validationFlagOfAmsuALevel1DataFlow|table|VALIDATION FLAG OF AMSU-A LEVEL 1 DATA FLOW|CODE TABLE|0|0|3|CODE TABLE|0|1 +040049|cloudTestsExecutedAndResults|flag|CLOUD TESTS EXECUTED AND RESULTS|FLAG TABLE|0|0|16|FLAG TABLE|0|5 +040050|retrievalInitialisation|flag|RETRIEVAL INITIALISATION|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040051|convergenceOfTheIterativeRetrieval|table|CONVERGENCE OF THE ITERATIVE RETRIEVAL|CODE TABLE|0|0|3|CODE TABLE|0|1 +040052|indicationOfSuperAdiabaticAndSuperSaturationInFinalRetrieval|flag|INDICATION OF SUPER-ADIABATIC AND SUPER-SATURATION IN FINAL RETRIEVAL|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040053|numberOfIterationsUsedForRetrieval|long|NUMBER OF ITERATIONS USED FOR RETRIEVAL|Numeric|0|0|8|Numeric|0|3 +040054|potentialProcessingAndInputsErrors|flag|POTENTIAL PROCESSING AND INPUTS ERRORS|FLAG TABLE|0|0|13|FLAG TABLE|0|4 +040055|diagnosticsOnTheRetrieval|flag|DIAGNOSTICS ON THE RETRIEVAL|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +040056|generalRetrievalQuality|table|GENERAL RETRIEVAL QUALITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +040057|iasiLevel2RetrievalFlags|flag|IASI LEVEL 2 RETRIEVAL FLAGS|FLAG TABLE|0|0|31|FLAG TABLE|0|10 +040058|numberOfVectorsDescribingTheCharacterizationMatrices|long|NUMBER OF VECTORS DESCRIBING THE CHARACTERIZATION MATRICES|Numeric|0|0|8|Numeric|0|3 +040059|numberOfLayersActuallyRetrieved|long|NUMBER OF LAYERS ACTUALLY RETRIEVED|Numeric|0|0|8|Numeric|0|3 +040060|numberOfProfilesRetrievedInScanline|long|NUMBER OF PROFILES RETRIEVED IN SCANLINE|Numeric|0|0|8|Numeric|0|3 +040061|airPartialColumnsOnEachRetrievedLayer|double|AIR PARTIAL COLUMNS ON EACH RETRIEVED LAYER|mol cm-2|3|0|16|mol cm-2|3|5 +040062|aPrioriPartialColumnsOnEachRetrievedLayer|double|A-PRIORI PARTIAL COLUMNS ON EACH RETRIEVED LAYER|mol cm-2|10|0|16|mol cm-2|10|5 +040063|scalingVectorMultiplyingTheAPrioriVectorInOrderToDefineTheRetrievedVector|long|SCALING VECTOR MULTIPLYING THE A PRIORI VECTOR IN ORDER TO DEFINE THE RETRIEVED VECTOR|Numeric|5|0|26|Numeric|5|8 +040064|mainEigenvaluesOfTheSensitivityMatrix|long|MAIN EIGENVALUES OF THE SENSITIVITY MATRIX|Numeric|6|0|31|Numeric|6|10 +040065|mainEigenvectorsOfTheSensitivityMatrix|long|MAIN EIGENVECTORS OF THE SENSITIVITY MATRIX|Numeric|6|-1000000000|31|Numeric|6|10 +040066|qualityIndicatorForAtmosphericWaterVapour|long|QUALITY INDICATOR FOR ATMOSPHERIC WATER VAPOUR|Numeric|1|0|8|Numeric|1|3 +040067|qualityIndicatorForAtmosphericTemperature|long|QUALITY INDICATOR FOR ATMOSPHERIC TEMPERATURE|Numeric|1|0|8|Numeric|1|3 +040068|generalRetrievalQualityFlagForSo2|table|GENERAL RETRIEVAL QUALITY FLAG FOR SO2|CODE TABLE|0|0|4|CODE TABLE|0|2 +040069|pwlrEstimatedRetrievalErrorForSurfaceAirTemperature|double|PWLR ESTIMATED RETRIEVAL ERROR FOR SURFACE AIR TEMPERATURE|K|4|-1000000|21|K|4|7 +040070|pwlrEstimatedRetrievalErrorOfSurfaceDewpoint|double|PWLR ESTIMATED RETRIEVAL ERROR OF SURFACE DEWPOINT|K|4|-1000000|21|K|4|7 +040071|retrievalErrorCovarianceMatrixForOzoneInPrincipalComponentDomain|long|RETRIEVAL ERROR COVARIANCE MATRIX FOR OZONE IN PRINCIPAL COMPONENT DOMAIN|Numeric|4|-1000000|21|Numeric|4|7 +040072|pwlrEstimatedRetrievalQualityIndicatorOfAtmosphericOzone|long|PWLR ESTIMATED RETRIEVAL QUALITY INDICATOR OF ATMOSPHERIC OZONE|Numeric|1|0|8|Numeric|1|3 +040073|pwlrEstimatedRetrievalErrorOfSurfaceSkinTemperature|double|PWLR ESTIMATED RETRIEVAL ERROR OF SURFACE SKIN TEMPERATURE|K|1|0|8|K|1|3 +040074|generalInterferometryQualityFlags|flag|GENERAL INTERFEROMETRY QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|0 +040075|retrievalErrorCovarianceMatrixForHumidityInPrincipalComponentDomain|long|RETRIEVAL ERROR COVARIANCE MATRIX FOR HUMIDITY IN PRINCIPAL COMPONENT DOMAIN|Numeric|0|0|21|Numeric|0|7 +040076|retrievalErrorCovarianceMatrixForTemperatureInPrincipalComponentDomain|long|RETRIEVAL ERROR COVARIANCE MATRIX FOR TEMPERATURE IN PRINCIPAL COMPONENT DOMAIN|Numeric|0|0|21|Numeric|0|7 +040077|oceanProductQualityFlag|flag|OCEAN PRODUCT QUALITY FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040080|cloudTestResultsForIasiNgLevel2|flag|CLOUD TEST RESULTS FOR IASI-NG LEVEL 2|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +041001|pco2|double|PCO2|Pa|3|0|18|Pa|3|6 +041002|fluorescence|double|FLUORESCENCE|kg l-1|12|0|16|kg l-1|12|5 +041003|dissolvedNitrates|double|DISSOLVED NITRATES|umol/kg|3|0|17|umol/kg|3|5 +041004|chlorophyllA|double|CHLOROPHYLL-A|mg m-3|4|0|19|mg m-3|4|7 +041005|turbidity|double|TURBIDITY|NTU|2|0|12|NTU|2|4 +041006|seaWaterPh|long|SEA WATER PH|Numeric|4|70000|15|Numeric|4|5 +041007|bbp700|double|BBP700|/m|7|0|20|/m|7|7 +042001|dominantSwellWaveDirectionOfSpectralPartition|long|DOMINANT SWELL WAVE DIRECTION OF SPECTRAL PARTITION|deg|0|0|9|deg|0|3 +042002|significantSwellWaveHeightOfSpectralPartition|double|SIGNIFICANT SWELL WAVE HEIGHT OF SPECTRAL PARTITION|m|1|0|9|m|1|3 +042003|dominantSwellWavelengthOfSpectralPartition|double|DOMINANT SWELL WAVELENGTH OF SPECTRAL PARTITION|m|2|100|17|m|2|6 +042004|confidenceOfInversionForEachPartitionOfSwellWaveSpectra|table|CONFIDENCE OF INVERSION FOR EACH PARTITION OF SWELL WAVE SPECTRA|CODE TABLE|0|0|4|CODE TABLE|0|2 +042005|ambiguityRemovalFactorForSwellWavePartition|long|AMBIGUITY REMOVAL FACTOR FOR SWELL WAVE PARTITION|Numeric|5|-100000|18|Numeric|5|6 +042006|waveAge|long|WAVE AGE|Numeric|2|1|8|Numeric|2|3 +042007|shortestOceanWavelengthOnSpectralResolution|double|SHORTEST OCEAN WAVELENGTH ON SPECTRAL RESOLUTION|m|2|0|16|m|2|5 +042008|nonlinearInverseSpectralWidth|double|NONLINEAR INVERSE SPECTRAL WIDTH|m|2|0|16|m|2|5 +042009|binPartitionReference|long|BIN PARTITION REFERENCE|Numeric|0|0|8|Numeric|0|3 +042010|partitionNumber|long|PARTITION NUMBER|Numeric|0|1|4|Numeric|0|2 +042011|a1CoefficientOfTheDirectionalFourierSeries|long|A1 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042012|b1CoefficientOfTheDirectionalFourierSeries|long|B1 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042013|a2CoefficientOfTheDirectionalFourierSeries|long|A2 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042014|b2CoefficientOfTheDirectionalFourierSeries|long|B2 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042015|checkFactorK|long|CHECK FACTOR K|Numeric|2|0|12|Numeric|2|4 +042016|seaWaterPotentialDensityReferencedToSeaSurface|double|SEA WATER POTENTIAL DENSITY REFERENCED TO SEA SURFACE|kg m-3|5|-10000000|24|kg m-3|5|9 +042017|qualityFlagOfSwellWaveSpectra|table|QUALITY FLAG OF SWELL WAVE SPECTRA|CODE TABLE|0|0|4|CODE TABLE|0|2 +042018|qualityFlagForEachPartitionOfSwellWaveSpectra|table|QUALITY FLAG FOR EACH PARTITION OF SWELL WAVE SPECTRA|CODE TABLE|0|0|4|CODE TABLE|0|4 diff --git a/definitions/bufr/tables/0/wmo/42/sequence.def b/definitions/bufr/tables/0/wmo/42/sequence.def new file mode 100644 index 000000000..262e978d2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/42/sequence.def @@ -0,0 +1,1303 @@ +"300002" = [ 000002, 000003 ] +"300003" = [ 000010, 000011, 000012 ] +"300004" = [ 300003, 000013, 000014, 000015, 000016, 000017, 000018, 000019, 000020 ] +"300010" = [ 300003, 101000, 031001, 000030 ] +"300015" = [ 000030, 102000, 031002, 000024, 000025 ] +"300016" = [ 000030, 102000, 031001, 000026, 000027 ] +"301001" = [ 001001, 001002 ] +"301002" = [ 001003, 001004, 001005 ] +"301003" = [ 001011, 001012, 001013 ] +"301004" = [ 001001, 001002, 001015, 002001 ] +"301005" = [ 001035, 001034 ] +"301011" = [ 004001, 004002, 004003 ] +"301012" = [ 004004, 004005 ] +"301013" = [ 004004, 004005, 004006 ] +"301014" = [ 102002, 301011, 301012 ] +"301018" = [ 001114, 025185, 025186 ] +"301021" = [ 005001, 006001 ] +"301022" = [ 005001, 006001, 007001 ] +"301023" = [ 005002, 006002 ] +"301024" = [ 005002, 006002, 007001 ] +"301025" = [ 301023, 004003, 301012 ] +"301026" = [ 301021, 004003, 004003, 004004, 004004, 004005, 004005 ] +"301027" = [ 008007, 101000, 031001, 301028, 008007 ] +"301028" = [ 008040, 033042, 007010, 101000, 031002, 301023, 019007, 008040 ] +"301029" = [ 001018, 002001, 301011 ] +"301030" = [ 001018, 002001, 301011, 301024 ] +"301031" = [ 301001, 002001, 301011, 301012, 301022 ] +"301032" = [ 301001, 002001, 301011, 301012, 301024 ] +"301033" = [ 001005, 002001, 301011, 301012, 301021 ] +"301034" = [ 001005, 002001, 301011, 301012, 301023 ] +"301035" = [ 001005, 001012, 001013, 002001, 301011, 301012, 301023 ] +"301036" = [ 301003, 002001, 301011, 301012, 301023 ] +"301037" = [ 301001, 002011, 002012, 301011, 301012, 301022 ] +"301038" = [ 301001, 002011, 002012, 301011, 301012, 301024 ] +"301039" = [ 301003, 002011, 002012, 301011, 301012, 301023 ] +"301040" = [ 301003, 002011, 002012, 301011, 301012, 301024 ] +"301041" = [ 001007, 002021, 002022, 301011, 301012 ] +"301042" = [ 301041, 301021 ] +"301043" = [ 001007, 002023, 301011, 301013, 301021 ] +"301044" = [ 001007, 002024, 301011, 301013, 301021 ] +"301045" = [ 301011, 301012, 201138, 202131, 004006, 201000, 202000, 304030, 304031 ] +"301046" = [ 001007, 001012, 002048, 021119, 025060, 202124, 002026, 002027, 202000, 005040 + ] +"301047" = [ 001007, 025060, 001033, 001034, 001012, 301045, 002021, 301011, 301012, 201138, + 202131, 004006, 201000, 202000, 301023 ] +"301048" = [ 002104, 002121, 002113, 002026, 002027, 002111, 002140, 202127, 001013, 202126, + 007001, 202000, 025010, 021064 ] +"301049" = [ 002111, 002112, 021062, 021063, 021065 ] +"301051" = [ 001006, 002061, 301011, 301012, 301021, 008004 ] +"301055" = [ 001005, 002001, 301011, 301012, 301021, 001012, 001014 ] +"301056" = [ 001087, 001011, 001015, 002008, 002001, 301011, 301012, 301021, 007030, 007031 + ] +"301058" = [ 301011, 301012, 201152, 202135, 004006, 202000, 201000, 301021, 020111, 020112, + 020113, 020114, 020115, 020116, 020117, 020118, 020119, 025035, 020121, 020122, + 020123, 020124, 025175, 020023, 025063, 202136, 201136, 002121, 201000, 202000, + 025061, 002184, 002189, 025036, 101000, 031002, 301059 ] +"301059" = [ 301021, 007030, 007032 ] +"301062" = [ 101000, 031001, 301001 ] +"301065" = [ 001006, 001008, 002001, 002002, 002005, 002062, 002070, 002065 ] +"301066" = [ 301011, 301013, 301023, 007004, 002064, 008004 ] +"301070" = [ 002143, 002142, 002144 ] +"301071" = [ 001007, 001031, 002020, 002028, 002029 ] +"301072" = [ 301071, 301011, 301013, 301021 ] +"301074" = [ 002143, 002142, 002145, 002146 ] +"301075" = [ 301001, 001015, 301024, 008021, 301011, 301012 ] +"301076" = [ 002011, 002143, 002142 ] +"301089" = [ 001101, 001102 ] +"301090" = [ 301004, 301011, 301012, 301021, 007030, 007031 ] +"301091" = [ 002180, 002181, 002182, 002183, 002184, 002179, 002186, 002187, 002188, 002189 + ] +"301092" = [ 001011, 001003, 002001, 301011, 301012, 301021, 007030, 007031, 033024 ] +"301093" = [ 301036, 007030, 007031 ] +"301110" = [ 301001, 001011, 002011, 002014, 002003 ] +"301111" = [ 301001, 001011, 002011, 002013, 002014, 002003 ] +"301112" = [ 001006, 002011, 002013, 002014, 002003 ] +"301113" = [ 008021, 301011, 301013 ] +"301114" = [ 301021, 007030, 007031, 007007, 033024 ] +"301120" = [ 301001, 001094, 002011, 301121 ] +"301121" = [ 008041, 301122, 301021, 007031, 007007 ] +"301122" = [ 301011, 301012, 201135, 202130, 004006, 202000, 201000 ] +"301123" = [ 102002, 008041, 001062, 301001, 001094, 002011, 001018, 001095, 025061, 025068, + 001082, 001083, 001081, 002067, 002066, 002014, 025067, 025065, 025066, 002095, + 002096, 002097, 002016, 002083, 002080, 002081, 001093, 002084, 002085, 002086, + 002082, 008041, 301011 ] +"301125" = [ 001033, 001034, 025060, 001007, 002019, 001012 ] +"301126" = [ 001087, 001015, 002149, 301011, 301012, 301021 ] +"301128" = [ 001081, 001082, 001083, 001095, 002015, 002016, 002017, 002066, 002067, 002080, + 002081, 002082, 002083, 002084, 002085, 002086, 002095, 002096, 002097, 002103, + 002191, 025061, 035035 ] +"301129" = [ 001007, 001031, 002019, 002020 ] +"301130" = [ 301011, 301012, 202131, 201138, 004006, 201000, 202000 ] +"301131" = [ 301021, 007024, 005021, 007025, 005022 ] +"301132" = [ 301150, 301001, 301021, 007030, 008021, 301011, 301012, 002006, 001079, 001085 + ] +"301150" = [ 001125, 001126, 001127, 001128 ] +"302001" = [ 010004, 010051, 010061, 010063 ] +"302002" = [ 010004, 007004, 010003, 010061, 010063 ] +"302003" = [ 011011, 011012, 012004, 012006, 013003, 020001, 020003, 020004, 020005 ] +"302004" = [ 020010, 008002, 020011, 020013, 020012, 020012, 020012 ] +"302005" = [ 008002, 020011, 020012, 020013 ] +"302006" = [ 010004, 010051, 010062, 010063 ] +"302011" = [ 302001, 302003, 302004 ] +"302012" = [ 302002, 302003, 302004 ] +"302013" = [ 302006, 302003, 101000, 031001, 302005 ] +"302021" = [ 022001, 022011, 022021 ] +"302022" = [ 022002, 022012, 022022 ] +"302023" = [ 022003, 022013, 022023 ] +"302024" = [ 302022, 101002, 302023 ] +"302031" = [ 302001, 010062, 007004, 010009 ] +"302032" = [ 007032, 012101, 012103, 013003 ] +"302033" = [ 007032, 020001 ] +"302034" = [ 007032, 013023 ] +"302035" = [ 302032, 302033, 302034, 007032, 302004, 101000, 031001, 302005 ] +"302036" = [ 105000, 031001, 008002, 020011, 020012, 020014, 020017 ] +"302037" = [ 020062, 013013, 012113 ] +"302038" = [ 020003, 004024, 020004, 020005 ] +"302039" = [ 004024, 014031 ] +"302040" = [ 007032, 102002, 004024, 013011 ] +"302041" = [ 007032, 004024, 004024, 012111, 004024, 004024, 012112 ] +"302042" = [ 007032, 002002, 008021, 004025, 011001, 011002, 008021, 103002, 004025, 011043, + 011041 ] +"302043" = [ 302038, 101002, 302039, 302040, 302041, 302042, 007032 ] +"302044" = [ 004024, 002004, 013033 ] +"302045" = [ 004024, 014002, 014004, 014016, 014028, 014029, 014030 ] +"302046" = [ 004024, 004024, 012049 ] +"302047" = [ 102003, 008002, 020054 ] +"302048" = [ 005021, 007021, 020012, 005021, 007021 ] +"302049" = [ 008002, 020011, 020013, 020012, 020012, 020012, 008002 ] +"302050" = [ 008041, 005021, 007005, 202130, 006021, 202000, 008041, 201131, 202129, 002115, + 010004, 002115, 013003, 202000, 201000, 002115, 011001, 011002, 002115, 102002, + 012101, 004024, 002115, 012103, 012102, 101003, 020012, 020011, 020013, 101002, + 020003 ] +"302051" = [ 010004, 010051, 007004, 010003, 012004, 012051, 012016, 012017, 013004, 102004, + 008051, 008020 ] +"302052" = [ 007032, 007033, 012101, 002039, 012102, 012103, 013003 ] +"302053" = [ 007032, 007033, 020001 ] +"302054" = [ 302052, 302053, 007033, 302034, 007032, 302004, 101000, 031001, 302005 ] +"302055" = [ 020031, 020032, 020033, 020034, 020035, 020036, 020037, 020038 ] +"302056" = [ 002038, 007063, 022043, 007063 ] +"302057" = [ 302056, 302021, 302024 ] +"302058" = [ 007032, 007033, 004024, 004024, 012111, 004024, 004024, 012112 ] +"302059" = [ 007032, 007033, 002002, 008021, 004025, 011001, 011002, 008021, 103002, 004025, + 011043, 011041 ] +"302060" = [ 302038, 302040, 302058, 302059 ] +"302062" = [ 025188, 302001, 302093, 101000, 031000, 302053, 007032, 007033, 101000, 031000, + 302004, 101000, 031001, 302005, 008002, 101000, 031000, 302055, 101000, 031000, + 302056, 101000, 031000, 302021, 101000, 031000, 302024 ] +"302063" = [ 302038, 101000, 031000, 302040, 101000, 031000, 302034, 007032, 101000, 031000, + 302058, 101000, 031000, 302064 ] +"302064" = [ 007032, 007033, 002002, 008021, 004025, 011001, 011002, 008021, 103000, 031001, + 004025, 011043, 011041 ] +"302066" = [ 020023, 020024, 020027, 020054, 020023, 020027, 020054, 020025, 020026, 020027, + 020040, 020066, 020027, 020021, 020067, 020027 ] +"302067" = [ 001023, 004025, 002177, 101000, 031001, 020003, 103000, 031001, 005021, 020001, + 005021, 101000, 031000, 302056, 103000, 031000, 033041, 020058, 022061, 101000, + 031000, 302022, 101000, 031001, 302023, 104000, 031001, 020054, 020137, 020012, + 020090, 103000, 031001, 020054, 020137, 020136, 004025, 013012, 004025, 011042, + 104000, 031001, 008021, 004025, 011042, 008021, 115000, 031001, 008021, 004015, + 008021, 004025, 011001, 011002, 008021, 004015, 008021, 004025, 011001, 011002, + 008021, 004025, 004015, 103000, 031001, 004025, 004025, 020003, 110000, 031001, + 004025, 004025, 005021, 005021, 020054, 020024, 020025, 020026, 020027, 020063 + ] +"302069" = [ 007032, 007033, 033041, 020001 ] +"302070" = [ 007032, 007033, 011001, 011002, 011043, 011041, 011016, 011017 ] +"302071" = [ 007032, 007033, 008021, 004025, 011001, 011002, 008021, 103002, 004025, 011043, + 011041, 004025, 011016, 011017 ] +"302072" = [ 007032, 007033, 012101, 012103, 013003 ] +"302073" = [ 020010, 105004, 008002, 020011, 020012, 033041, 020013 ] +"302074" = [ 020003, 004025, 020004, 020005 ] +"302075" = [ 008021, 004025, 013055, 013058, 008021 ] +"302076" = [ 020021, 020022, 026020, 020023, 020024, 020025, 020026 ] +"302077" = [ 007032, 007033, 004025, 012111, 012112, 007032, 004025, 012112 ] +"302078" = [ 002176, 020062, 002177, 013013 ] +"302079" = [ 007032, 002175, 002178, 004025, 013011 ] +"302080" = [ 002185, 004025, 013033 ] +"302081" = [ 004025, 014031 ] +"302082" = [ 004025, 014002, 014004, 014016, 014028, 014029, 014030 ] +"302083" = [ 004025, 008023, 010004, 011001, 011002, 012101, 013003, 008023 ] +"302084" = [ 302031, 302072, 103000, 031000, 101005, 307063, 007061, 101000, 031000, 302069, + 007032, 007033, 105000, 031000, 020031, 020032, 002038, 022043, 302021, 101000, + 031000, 302078, 012113, 101000, 031000, 302004, 105000, 031001, 008002, 020011, + 020012, 033041, 020013, 302036, 101000, 031000, 302047, 008002, 101000, 031000, + 302048 ] +"302085" = [ 105000, 031000, 020003, 103002, 004024, 020004, 020005, 101000, 031000, 302175, + 102000, 031000, 004025, 302076, 102000, 031000, 004025, 013059, 007032, 007033, + 008021, 004025, 011001, 011002, 008021, 103003, 004025, 011043, 011041, 004025, + 011016, 011017, 302077, 007033, 302041, 106000, 031000, 007032, 002175, 002178, + 102005, 004024, 013011, 007032, 103000, 031000, 002185, 101002, 302044, 102000, + 031000, 101002, 302039, 102000, 031000, 101002, 302045, 101000, 031000, 302046, + 101000, 031000, 302083 ] +"302089" = [ 020101, 020102, 020103, 020104, 020105, 020106, 020107, 020108 ] +"302090" = [ 002038, 007063, 022045 ] +"302091" = [ 020001, 004024, 013011 ] +"302092" = [ 011104, 001012, 001013, 010038, 010039, 011007, 011008 ] +"302093" = [ 007032, 007033, 303099, 012101, 103000, 031000, 007032, 007033, 303099, 002039, + 002097, 003024, 003021, 012102, 012103, 013003, 007032, 007033, 303099, 002039, + 002097, 003021, 003024 ] +"302175" = [ 008021, 004025, 013155, 013058, 008021 ] +"303001" = [ 007003, 011001, 011002 ] +"303002" = [ 007004, 011001, 011002 ] +"303003" = [ 007004, 010003, 012001, 012003 ] +"303004" = [ 007004, 010003, 012001, 012003, 011001, 011002 ] +"303011" = [ 007003, 008001, 011001, 011002 ] +"303012" = [ 007004, 008001, 011001, 011002 ] +"303013" = [ 007004, 008001, 010003, 012001, 013003, 011001, 011002 ] +"303014" = [ 007004, 008001, 010003, 012001, 012003, 011001, 011002 ] +"303021" = [ 007004, 007004, 204007, 031021 ] +"303022" = [ 303021, 010003, 204000 ] +"303023" = [ 303021, 012001, 204000 ] +"303024" = [ 303021, 013016, 204000 ] +"303025" = [ 002025, 204007, 031021, 012063, 204000 ] +"303026" = [ 007004, 008003, 204007, 031021, 012001, 204000 ] +"303027" = [ 007004, 204007, 031021, 010003, 204000 ] +"303031" = [ 007004, 008003, 007021, 007022, 008012, 012061 ] +"303032" = [ 020011, 020016 ] +"303033" = [ 020010, 020016 ] +"303040" = [ 008041, 004025, 004026, 301021, 301122, 201131, 202129, 025069, 007004, 013003, + 202000, 201000, 002013, 012101, 010009, 102002, 008040, 035035 ] +"303041" = [ 002152, 002023, 007004, 011001, 011002, 002153, 002154, 012071 ] +"303050" = [ 004086, 008042, 007004, 005015, 006015, 011001, 011002 ] +"303051" = [ 004086, 008042, 007004, 005015, 006015, 011061, 011062 ] +"303052" = [ 004086, 008042, 007009, 005015, 006015, 011001, 011002 ] +"303053" = [ 004086, 008042, 007009, 005015, 006015, 011061, 011062 ] +"303054" = [ 004086, 008042, 007004, 010009, 005015, 006015, 012101, 012103, 011001, 011002 + ] +"303055" = [ 004086, 008042, 007009, 005015, 006015, 012101, 013009, 012103, 011001, 011002 + ] +"303056" = [ 004086, 008042, 207001, 007004, 010009, 207000, 005015, 006015, 012101, 012103, + 011001, 011002 ] +"303099" = [ 003005, 003006, 003007, 002096, 003022, 003003, 003020, 003004, 003023, 003008, + 003009 ] +"303100" = [ 013165, 013045, 013166, 013044, 013042, 013167, 013168, 013169, 013170, 013171 + ] +"304001" = [ 008003, 010004, 012001, 011001, 011002 ] +"304002" = [ 008003, 010004, 011001, 011002 ] +"304003" = [ 008003, 012001 ] +"304004" = [ 008003, 010004, 020010, 012001 ] +"304005" = [ 002024, 007004, 007004, 013003 ] +"304006" = [ 014001, 014001, 014003 ] +"304011" = [ 002163, 002164, 008012, 007024, 002057, 008021, 004001, 004002, 004003, 004004, + 008021, 004024, 110004, 008021, 004004, 004005, 004006, 008021, 004004, 004005, + 004006, 011001, 011002, 103010, 002163, 007004, 012001 ] +"304030" = [ 027031, 028031, 010031 ] +"304031" = [ 001041, 001042, 001043 ] +"304032" = [ 002153, 002154, 020081, 020082, 020012 ] +"304033" = [ 002152, 002166, 002167, 002153, 002154, 012075, 012076, 012063 ] +"304034" = [ 102004, 027001, 028001, 007022, 005043, 020010, 020016, 033003, 010040 ] +"304035" = [ 002153, 002154, 012063, 008001, 012063, 008001, 012063, 008001, 008003, 012063, + 008003, 012063, 008003, 012063, 008003 ] +"304036" = [ 020082, 008012, 020082, 008012, 020081, 008003, 020081, 008003, 020081, 008003, + 020081, 008003 ] +"304037" = [ 002153, 002154, 012063, 008011, 012063, 008011, 012063, 008011, 008003, 012063, + 008003, 012063, 008003, 012063 ] +"304039" = [ 201136, 005042, 201000, 014046 ] +"304040" = [ 025140, 025141, 040026, 040016, 025062, 101000, 031002, 040017 ] +"305001" = [ 011001, 011002, 013060, 013071 ] +"305002" = [ 301012, 012001, 013003, 014051, 013060, 013072, 013080, 013081, 013082, 013083, + 013084 ] +"305003" = [ 301012, 004065, 101000, 031001, 305001 ] +"305004" = [ 301030, 305002, 305003 ] +"305006" = [ 013072, 013082, 013019, 012001, 013073, 013060 ] +"305007" = [ 301029, 301012, 004065, 101000, 031001, 305006 ] +"305008" = [ 305006, 012030 ] +"305009" = [ 301029, 301012, 004065, 101000, 031001, 305008 ] +"305010" = [ 305008, 002091, 002091 ] +"305011" = [ 301029, 301012, 004065, 101000, 031001, 305010 ] +"305016" = [ 014021, 007004, 013003, 011002, 011001, 011041, 011043 ] +"305017" = [ 013080, 013081, 013083, 013085, 013084 ] +"305018" = [ 301029, 301012, 004065, 103000, 031001, 305008, 305016, 305017 ] +"306001" = [ 002032, 102000, 031001, 007062, 022042 ] +"306002" = [ 002031, 022004, 022031 ] +"306003" = [ 002002, 011011, 011012, 012004 ] +"306004" = [ 002032, 002033, 103000, 031001, 007062, 022043, 022062 ] +"306005" = [ 002031, 103000, 031001, 007062, 022004, 022031 ] +"306006" = [ 306003, 306002, 022063 ] +"306007" = [ 001012, 001014, 306008, 004024, 027003, 028003 ] +"306008" = [ 002034, 002035, 002036 ] +"306011" = [ 301021, 001075, 002147, 301011, 301013 ] +"306012" = [ 002007, 008015, 008032, 306029 ] +"306013" = [ 306012, 301011, 301013, 022120, 022121, 004015, 004065, 102000, 031001, 022038, + 022040 ] +"306014" = [ 306012, 301011, 301013, 022120, 022121, 004015, 004065, 101000, 031001, 022038 + ] +"306016" = [ 301011, 301013, 010004, 010051, 302032, 007032, 002002, 008021, 004025, 011001, + 011002, 004025, 011043, 011041, 025026, 012060 ] +"306017" = [ 002032, 008034, 106000, 031002, 007065, 008080, 033050, 022045, 008080, 033050, + 008034 ] +"306018" = [ 002032, 008034, 109000, 031002, 007065, 008080, 033050, 022045, 008080, 033050, + 022064, 008080, 033050, 008034 ] +"306019" = [ 001075, 301011, 301012, 022042, 022120, 022121, 004015, 004065 ] +"306020" = [ 001075, 301011, 301012, 022042, 022120, 022121, 004075, 004065 ] +"306021" = [ 001075, 301011, 301012, 022122, 022123, 012001, 303002 ] +"306022" = [ 001075, 301011, 301012, 022038, 022039 ] +"306023" = [ 001015, 301023, 301011, 301012, 022038, 022039, 022120, 022121 ] +"306024" = [ 306020, 102006, 022038, 022039 ] +"306025" = [ 306019, 102006, 022038, 022039 ] +"306027" = [ 001005, 001052, 002047, 301011, 301013 ] +"306028" = [ 306027, 301011, 301013, 301021 ] +"306029" = [ 025170, 025171, 025172 ] +"306030" = [ 306027, 306029, 111000, 031001, 033002, 301011, 301013, 025025, 025025, 025026, + 022185, 004015, 004065, 101004, 022182 ] +"306031" = [ 306027, 306029, 001053, 033002, 301011, 301013, 301011, 301013, 022185, 022182, + 004016, 004066, 101000, 031001, 022184 ] +"306033" = [ 002033, 007063, 022064 ] +"306034" = [ 002031, 003010, 002040, 022005, 022032 ] +"306035" = [ 112000, 031002, 007062, 008080, 033050, 007065, 008080, 033050, 022043, 008080, + 033050, 022064, 008080, 033050 ] +"306036" = [ 112000, 031002, 007062, 008080, 033050, 007065, 008080, 033050, 022031, 008080, + 033050, 022004, 008080, 033050 ] +"306037" = [ 109000, 031002, 007062, 008080, 033050, 007065, 008080, 033050, 022188, 008080, + 033050 ] +"306038" = [ 010004, 010051, 007033, 012101, 012103, 013003, 007033, 008021, 004025, 011001, + 011002, 008021, 004025, 011041, 004025, 007033, 002005, 007063, 022049 ] +"306039" = [ 022078, 022070, 022073, 022074, 022071, 022076, 022077 ] +"306040" = [ 022078, 022082, 106000, 031001, 022080, 022069, 022086, 022087, 022088, 022089 + ] +"306041" = [ 002032, 102000, 031001, 007062, 022043 ] +"306042" = [ 002169, 007033, 008021, 004025, 011001, 011002 ] +"306043" = [ 041001, 008043, 015028, 008043, 013080, 041005, 041003, 022188, 041002, 106000, + 031000, 004024, 014002, 014002, 014012, 014004, 004024 ] +"306044" = [ 203014, 022188, 203255, 108000, 031002, 007065, 008080, 033050, 201129, 022188, + 201000, 008080, 033050, 203000 ] +"306045" = [ 203011, 041004, 203255, 106000, 031002, 007065, 008080, 033050, 041004, 008080, + 033050, 203000 ] +"306046" = [ 203015, 041003, 203255, 106000, 031002, 007065, 008080, 033050, 041003, 008080, + 033050, 203000 ] +"306047" = [ 106000, 031002, 007065, 008080, 033050, 041006, 008080, 033050 ] +"306048" = [ 203009, 041007, 203255, 106000, 031002, 007065, 008080, 033050, 041007, 008080, + 033050, 203000 ] +"307001" = [ 301031, 302011 ] +"307002" = [ 301032, 302011 ] +"307003" = [ 307001, 101000, 031001, 302005 ] +"307004" = [ 307002, 101000, 031001, 302005 ] +"307005" = [ 307001, 101004, 302005 ] +"307006" = [ 307002, 101004, 302005 ] +"307007" = [ 301031, 302012 ] +"307008" = [ 301032, 302012 ] +"307009" = [ 301031, 302013 ] +"307011" = [ 001063, 002001, 301011, 301012, 301024, 007006, 011001, 011016, 011017, 011002, + 011041, 007006, 012001, 012003, 010052, 020009 ] +"307012" = [ 103000, 031001, 008023, 005021, 020001 ] +"307013" = [ 106000, 031001, 001064, 008014, 020061, 008014, 020061, 020018 ] +"307014" = [ 101000, 031001, 020019 ] +"307015" = [ 101000, 031001, 302005, 020002 ] +"307016" = [ 101000, 031001, 020020 ] +"307017" = [ 101000, 031001, 011070 ] +"307018" = [ 008016, 102000, 031001, 008017, 301012, 104000, 031001, 007006, 011001, 011002, + 011041, 020009, 101000, 031001, 020001, 307014 ] +"307020" = [ 307011, 307014, 307016 ] +"307021" = [ 307011, 307012, 307013, 307014, 307015, 307016, 307017, 307018, 307015 ] +"307022" = [ 001015, 301011, 301012, 301022, 008021, 004025, 010004, 012001, 013003, 033038, + 008022, 106025, 002020, 001050, 005021, 007021, 015031, 015032, 008060, 015033, + 015034, 008060, 015033, 015034, 015035, 201131, 202129, 013016, 202000, 201000, + 015011 ] +"307024" = [ 301150, 001015, 001040, 008021, 301011, 301013, 301022, 010036, 025061, 010004, + 012001, 013003, 120000, 031000, 025060, 008021, 004025, 115000, 031001, 015079, + 015080, 008022, 033093, 015089, 015035, 102002, 008060, 015083, 201131, 202129, + 013016, 202000, 201000, 015011, 131000, 031000, 025060, 008021, 004025, 033093, + 125000, 031001, 002020, 001050, 001150, 202127, 304030, 202000, 005021, 007021, + 015038, 015039, 015090, 015081, 015082, 015079, 015089, 015035, 102002, 008060, + 015083, 015084, 015085, 015086, 015087, 015088, 015011 ] +"307030" = [ 015001, 015002 ] +"307031" = [ 008022, 008023, 015001, 008023, 015001, 008023, 015002 ] +"307041" = [ 301001, 001015, 301024, 301011, 301012, 301070, 307030 ] +"307042" = [ 301001, 001015, 301024, 301011, 301012, 008021, 004025, 301070, 307031 ] +"307043" = [ 301001, 001015, 301024, 301011, 301012, 301074, 307030 ] +"307044" = [ 301001, 001015, 301024, 301011, 301012, 008021, 004025, 301074, 307031 ] +"307045" = [ 001063, 008079, 002001, 301011, 301012, 301023, 007030, 007031, 007032, 011001, + 011016, 011017, 008054, 011083, 011084, 011002, 008054, 011085, 011086, 011041, + 008054, 007032, 012023, 012024, 007032, 010052, 020009 ] +"307046" = [ 020060, 102000, 031001, 005021, 020059 ] +"307047" = [ 105000, 031001, 008002, 020011, 020012, 020013, 020092, 020002, 020091 ] +"307048" = [ 008016, 102000, 031001, 008017, 301012, 112000, 031000, 007032, 011001, 008054, + 011083, 011084, 011002, 008054, 011085, 011086, 011041, 008054, 007032, 020009, + 101000, 031000, 020060, 307014, 307047 ] +"307049" = [ 102000, 031000, 022043, 022021 ] +"307050" = [ 101000, 031000, 020085, 102000, 031001, 001064, 020085, 105000, 031001, 001064, + 020086, 020087, 020088, 020089 ] +"307051" = [ 307045, 307046, 307013, 307014, 307047, 307016, 307017, 307049, 307050, 101000, + 031001, 307048 ] +"307052" = [ 001063, 008039, 301011, 301012, 008079, 008039, 301011, 301012, 008039, 301011, + 301012, 301023, 007030, 007031 ] +"307053" = [ 007032, 011001, 008054, 011083, 011084, 011002, 008054, 011085, 011086, 011041, + 008054, 007032, 020009, 020060, 307014, 307047 ] +"307054" = [ 007032, 008039, 004003, 004004, 008023, 012023, 008039, 004003, 004004, 008023, + 012023, 008023, 007032 ] +"307055" = [ 033045, 008016, 008039, 004003, 301012, 008039, 004003, 301012, 307053 ] +"307056" = [ 307052, 307053, 307054, 101000, 031001, 307055 ] +"307060" = [ 007061, 012030 ] +"307061" = [ 301031, 101005, 307060 ] +"307062" = [ 301032, 101005, 307060 ] +"307063" = [ 007061, 012130 ] +"307064" = [ 004025, 106000, 031001, 007061, 201131, 202129, 012130, 201000, 202000 ] +"307071" = [ 301090, 004074, 004023, 008023, 010004, 010051, 007004, 010009, 007032, 012101, + 002051, 004051, 012118, 004052, 012119, 013004, 008023, 012151, 007032, 102005, + 008050, 008020, 014032, 014033, 008050, 008020, 102018, 008052, 008022, 007032, + 008053, 004003, 012152, 008053, 004003, 012153, 008053, 004003, 008023, 012101, + 008053, 004003, 008023, 012101, 008023, 007032, 002002, 008053, 004003, 011046, + 008053, 004003, 004004, 004023, 007032, 013060, 013051, 004053, 008050, 008020, + 102006, 008052, 008022, 008053, 004003, 013052, 007032 ] +"307072" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010004, 010051, + 007004, 010009, 007032, 012101, 002051, 004051, 012118, 004052, 012119, 013004, + 012151, 007032, 014032, 008023, 004001, 004001, 004002, 004003, 004004, 004022, + 007032, 008023, 013060, 004053, 008023, 102008, 008050, 008020 ] +"307073" = [ 307071, 307072 ] +"307074" = [ 301001, 004001, 004002, 301021, 007030, 007032, 112000, 031001, 004003, 004004, + 004024, 102003, 008023, 012101, 008023, 004004, 004024, 013060, 013012, 013013 + ] +"307075" = [ 301150, 301001, 301021, 007030, 008095, 008096, 008094, 301011, 004023, 301013, + 204008, 031021, 013060, 204000, 004023, 301013, 204008, 031021, 013012, 204000, + 004023, 301013, 204008, 031021, 013013, 204000, 007032, 107003, 004023, 301013, + 008023, 204008, 031021, 012101, 204000, 008023 ] +"307076" = [ 301090, 004074, 004023, 008023, 010004, 010051, 007004, 010009, 007032, 012101, + 002051, 004051, 012118, 004052, 012119, 013004, 008023, 012151, 007032, 102005, + 008050, 008020, 014032, 014033, 008050, 008020, 102018, 008052, 008022, 007032, + 008053, 004003, 012152, 008053, 004003, 012153, 008053, 004003, 008023, 012101, + 008053, 004003, 008023, 012101, 008023, 007032, 002002, 008053, 004003, 011046, + 008053, 004003, 004004, 004074, 004023, 007032, 013060, 013051, 004053, 008050, + 008020, 102006, 008052, 008022, 008053, 004003, 013052, 007032 ] +"307077" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010004, 010051, + 007004, 010009, 007032, 012101, 002051, 004051, 012118, 004052, 012119, 013004, + 012151, 007032, 014032, 008023, 004001, 004001, 004002, 004003, 004004, 004074, + 004022, 007032, 008023, 013060, 004053, 008023, 102008, 008050, 008020 ] +"307078" = [ 307076, 307077 ] +"307079" = [ 301090, 302031, 302035, 302036, 101000, 031000, 302047, 008002, 101000, 031000, + 302048, 302037, 102000, 031000, 022061, 020058, 101000, 031000, 302056, 101000, + 031000, 302055, 302043, 302044, 101000, 031001, 302045, 101000, 031000, 302046 + ] +"307080" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 302043, 302044, + 101002, 302045, 302046 ] +"307081" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012122, 013056, + 013057, 020101, 020102, 020103, 020104, 020105, 020106, 020107, 020108, 302043, + 302044, 101002, 302045, 302046 ] +"307082" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012121, 012122, + 302043, 302044, 101002, 302045, 302046 ] +"307083" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012122, 302043, + 302044, 101002, 302045, 302046 ] +"307084" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 020055, 101000, + 031001, 205001, 302043, 302044, 101002, 302045, 302046 ] +"307086" = [ 301090, 302031, 302035, 302036, 008002, 302037, 302066, 302043, 302044, 101002, + 302045 ] +"307087" = [ 301001, 002001, 301011, 301012, 301023, 007030, 007031, 302001, 010062, 007004, + 010009, 007032, 012101, 012103, 013003, 007032, 020001, 302004, 101000, 031001, + 302005 ] +"307088" = [ 020003, 004024, 020004, 020005, 004024, 002004, 013033, 102002, 004024, 014031, + 102002, 004024, 013011, 007032, 004024, 012111, 004024, 012112, 007032, 002002, + 008021, 004025, 011001, 011002, 008021 ] +"307089" = [ 307087, 307088 ] +"307090" = [ 301092, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 302043, 302044, + 101002, 302045, 302046 ] +"307091" = [ 301089, 301090, 008010, 301091, 302001, 007004, 010009, 302072, 103000, 031000, + 101005, 307063, 007061, 101000, 031000, 302069, 007032, 007033, 105000, 031000, + 020031, 020032, 002038, 022043, 302021, 101000, 031000, 302078, 101000, 031000, + 302073, 101000, 031000, 302074, 101000, 031000, 302175, 102000, 031000, 004025, + 302076, 302071, 302077, 007033, 101000, 031000, 302079, 007032, 101000, 031000, + 302080, 101000, 031000, 302081, 101000, 031000, 302082, 102000, 031000, 004025, + 013059, 101000, 031000, 302083, 033005, 033006 ] +"307092" = [ 301150, 301001, 208040, 001019, 208000, 301011, 301012, 301021, 007030, 001023, + 108000, 031000, 007031, 204018, 031021, 010004, 010051, 007004, 010009, 204000, + 115000, 031001, 007032, 008010, 204018, 031021, 012101, 012103, 202129, 201132, + 013003, 201000, 202000, 013009, 204000, 007032, 008010, 107000, 031001, 007061, + 204018, 031021, 012130, 013111, 204000, 007061, 105000, 031000, 033041, 204018, + 031021, 020001, 204000, 113000, 031000, 204018, 031021, 020010, 204000, 107000, + 031001, 008002, 204018, 031021, 020011, 020013, 204000, 008002, 105000, 031000, + 204018, 031021, 020062, 013013, 204000, 105000, 031000, 004025, 204018, 031021, + 020003, 204000, 105000, 031000, 004025, 204018, 031021, 013011, 204000, 115000, + 031001, 007032, 008021, 004025, 204018, 031021, 011001, 011002, 204000, 008021, + 204018, 031021, 011043, 011041, 204000, 007032, 105000, 031000, 004025, 204018, + 031021, 014031, 204000, 110000, 031000, 004025, 204018, 031021, 014002, 014002, + 014004, 014028, 014029, 014030, 204000, 113000, 031000, 004025, 002071, 002072, + 204018, 031021, 014072, 204000, 002071, 002072, 204018, 031021, 014072, 204000 + ] +"307096" = [ 301090, 301089, 008010, 301091, 302084, 302085, 033005, 033006 ] +"307101" = [ 301089, 001019, 002001, 301011, 301012, 301021, 007030, 007032, 012101, 007032, + 002177, 020062, 013013 ] +"307102" = [ 301089, 001018, 001015, 001104, 001105, 001106, 003017, 003018, 003019, 301011, + 301012, 301021, 007030, 007032, 012101, 012103, 013003, 007032, 020001, 109000, + 031001, 003016, 012128, 102000, 031001, 007061, 012129, 007061, 013116, 020138, + 004025, 020024, 013055, 020021, 013011, 007032, 008021, 004025, 011001, 011002, + 008021, 004025, 011043, 011041, 033005 ] +"307103" = [ 301150, 307101, 013117, 003028, 013163 ] +"307182" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012120, 012122, + 302043, 302044, 101002, 302045, 302046 ] +"308001" = [ 301033, 302011, 022042 ] +"308002" = [ 301034, 302011, 022042 ] +"308003" = [ 301035, 302011, 022042 ] +"308004" = [ 301036, 302011, 022042 ] +"308005" = [ 308004, 302024 ] +"308006" = [ 010004, 010061, 010063, 011001, 011002, 012004, 013003, 022042 ] +"308007" = [ 301055, 302011, 007062, 022042 ] +"308009" = [ 301093, 302001, 302054, 008002, 302055, 302057, 302060 ] +"308010" = [ 001011, 113000, 031001, 301011, 301012, 301021, 004080, 022049, 004080, 022059, + 004080, 022005, 002042, 022032, 002042, 004080 ] +"308011" = [ 001011, 002001, 301011, 301012, 301023, 007030, 007031, 004074, 004023, 008023, + 010051, 007032, 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004003, + 004004, 004023, 007032, 013060, 013051, 004053, 007032 ] +"308012" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010051, 007032, + 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004001, 004001, 004002, + 004003, 004004, 004022, 007032, 008023, 013060, 004053, 008023 ] +"308013" = [ 308011, 308012 ] +"308014" = [ 101000, 031000, 301018, 003001, 301093, 208032, 001079, 208000, 302062, 302063, + 101000, 031000, 302092, 101000, 031000, 306033, 101000, 031000, 306034, 101000, + 031000, 306043 ] +"308015" = [ 001003, 001020, 001005, 001011, 001007, 001001, 001002, 002044, 002045, 301011, + 301012, 301021, 022063, 022076, 022077, 022094, 025043, 022078, 105002, 002046, + 022070, 022071, 022073, 022074, 127000, 031001, 002046, 008090, 022102, 008090, + 022084, 120000, 031001, 022080, 022108, 022086, 022087, 022088, 022089, 105000, + 031001, 008090, 022104, 008090, 022186, 022187, 105000, 031001, 008090, 022106, + 008090, 022186, 022187 ] +"308016" = [ 001003, 001020, 001005, 001011, 001007, 001001, 001002, 002044, 002045, 301011, + 301012, 301021, 022063, 022076, 022077, 022094, 025044, 022079, 105002, 002046, + 022070, 022072, 022073, 022075, 127000, 031001, 002046, 008090, 022103, 008090, + 022084, 120000, 031001, 022081, 022108, 022086, 022087, 022088, 022089, 105000, + 031001, 008090, 022105, 008090, 022186, 022187, 105000, 031001, 008090, 022107, + 008090, 022186, 022187 ] +"308017" = [ 301056, 302001, 302052, 101000, 031000, 302056, 302064, 302053, 101000, 031000, + 302004, 101000, 031000, 302005, 101000, 031000, 302038, 101000, 031000, 306039 + ] +"308018" = [ 301150, 301093, 302001, 302072, 101000, 031000, 302056, 101000, 031000, 302064 + ] +"308021" = [ 001011, 002001, 301011, 301012, 301023, 007030, 007031, 004074, 004023, 008023, + 010051, 007032, 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004003, + 004004, 004074, 004023, 007032, 013060, 013051, 004053, 007032 ] +"308022" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010051, 007032, + 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004001, 004001, 004002, + 004003, 004004, 004074, 004022, 007032, 008023, 013060, 004053, 008023 ] +"308023" = [ 308021, 308022 ] +"309001" = [ 301037, 101000, 031001, 303011 ] +"309002" = [ 301038, 101000, 031001, 303011 ] +"309003" = [ 301037, 101000, 031001, 303012 ] +"309004" = [ 301038, 101000, 031001, 303012 ] +"309005" = [ 301037, 302004, 101000, 031001, 303013 ] +"309006" = [ 301038, 302004, 101000, 031001, 303013 ] +"309007" = [ 301037, 302004, 101000, 031001, 303014 ] +"309008" = [ 301038, 302004, 101000, 031001, 303014 ] +"309011" = [ 301039, 101000, 031001, 303011 ] +"309012" = [ 301039, 101000, 031001, 303012 ] +"309013" = [ 301039, 302004, 101000, 031001, 303013 ] +"309014" = [ 301039, 302004, 101000, 031001, 303014 ] +"309015" = [ 301040, 101000, 031001, 303011 ] +"309016" = [ 301040, 101000, 031001, 303012 ] +"309017" = [ 301040, 302004, 101000, 031001, 303013 ] +"309018" = [ 301040, 302004, 101000, 031001, 303014 ] +"309019" = [ 301031, 002003, 101000, 031001, 303011 ] +"309020" = [ 301031, 002003, 104000, 031001, 007003, 011003, 011004, 011005 ] +"309021" = [ 301001, 005001, 006001, 007030, 301014, 002003, 002121, 112000, 031001, 007007, + 301021, 011003, 011110, 011004, 011111, 033002, 011006, 011112, 033002, 010071, + 027079 ] +"309022" = [ 301001, 005001, 006001, 007030, 301014, 002003, 002121, 110000, 031001, 007007, + 301021, 012007, 012008, 033002, 011006, 011112, 033002, 010071, 027079 ] +"309023" = [ 301001, 005001, 006001, 007030, 301014, 002003, 302004, 302005, 114000, 031001, + 007007, 301021, 101000, 031001, 002121, 015063, 015064, 015065, 015066, 015067, + 015068, 015069, 015070, 015071, 015072, 033002, 010071, 027079 ] +"309024" = [ 301132, 201151, 202130, 002121, 202000, 201000, 008021, 004025, 109000, 031002, + 007007, 301021, 011003, 011004, 033002, 011006, 033002, 010071, 027079 ] +"309025" = [ 301132, 201151, 202130, 002121, 202000, 201000, 008021, 004025, 106000, 031002, + 007007, 301021, 012007, 033002, 010071, 027079 ] +"309026" = [ 301132, 302004, 302005, 008092, 008093, 008021, 004025, 201138, 202126, 002121, + 202000, 201000, 115000, 031002, 007007, 301021, 015073, 015064, 015074, 015066, + 015075, 015068, 015076, 015077, 015078, 015072, 033002, 010071, 027079 ] +"309027" = [ 301132, 008043, 025061, 302004, 302005, 008092, 008093, 008021, 004025, 118000, + 031001, 002090, 115000, 031002, 007007, 301021, 015073, 015064, 015074, 015066, + 015075, 015068, 015076, 015077, 015078, 015072, 033002, 010071, 027079 ] +"309030" = [ 015004, 015005, 104000, 031001, 004015, 008006, 007004, 015003 ] +"309031" = [ 015004, 015005, 104000, 031001, 004025, 008006, 007004, 015003 ] +"309040" = [ 301075, 301076, 309030 ] +"309041" = [ 307041, 301075, 301076, 309030 ] +"309042" = [ 307042, 301075, 301076, 309030 ] +"309043" = [ 307043, 301075, 301076, 309030 ] +"309044" = [ 307044, 301075, 301076, 309030 ] +"309045" = [ 301075, 301076, 309031 ] +"309046" = [ 307041, 301075, 301076, 309031 ] +"309047" = [ 307042, 301075, 301076, 309031 ] +"309048" = [ 307043, 301075, 301076, 309031 ] +"309049" = [ 307044, 301075, 301076, 309031 ] +"309050" = [ 301110, 301113, 301114, 101000, 031002, 303050, 101000, 031001, 303051 ] +"309051" = [ 301110, 301113, 301114, 101000, 031002, 303052, 101000, 031001, 303053 ] +"309052" = [ 301111, 301113, 301114, 302049, 022043, 101000, 031002, 303054, 101000, 031001, + 303051 ] +"309053" = [ 301112, 301113, 301114, 101000, 031002, 303054, 101000, 031001, 303051 ] +"309054" = [ 301001, 001011, 301011, 301012, 301021, 007030, 007031, 007007, 004023, 004059, + 115000, 031001, 008001, 008023, 007004, 010009, 012101, 012103, 008023, 011001, + 011002, 008023, 011019, 008050, 008020, 008050, 008020 ] +"309055" = [ 301111, 025061, 001081, 001082, 002067, 002095, 002096, 002097, 002081, 002082, + 002084, 002191, 301113, 301114, 010004, 302032, 007032, 002002, 011001, 011002, + 007032, 020003, 302049, 022043, 101000, 031002, 303055 ] +"309056" = [ 301150, 301111, 301128, 301113, 008091, 301021, 007007, 008091, 101000, 031002, + 303056, 101000, 031001, 303051 ] +"309057" = [ 301150, 301111, 301128, 301113, 301114, 302049, 022043, 101000, 031002, 303056, + 101000, 031001, 303051 ] +"309060" = [ 301123, 301121, 302050, 303040 ] +"309061" = [ 301120, 008041, 301122, 201131, 202129, 025069, 007004, 202000, 201000, 033007, + 033035, 033015, 013009, 033007, 033035, 033015, 002013, 012101, 033007, 033035, + 033015 ] +"309062" = [ 301120, 008041, 301122, 005001, 033035, 033015, 006001, 033035, 033015, 007007, + 033035, 033015, 011003, 033035, 033015, 011004, 033035, 033015, 033007 ] +"309063" = [ 301120, 008041, 301122, 005001, 033035, 033015, 006001, 033035, 033015, 007007, + 033035, 033015, 011003, 033035, 033015, 011004, 033035, 033015, 033007 ] +"309064" = [ 301120, 008041, 301122, 201131, 202129, 104002, 025069, 007004, 033035, 033015, + 013003, 033035, 033015, 202000, 201000, 104002, 002013, 012101, 033035, 033015, + 012103, 033035, 033015, 010009, 033035, 033015 ] +"309065" = [ 301120, 008041, 301122, 005001, 033035, 033015, 006001, 033035, 033015, 007007, + 033035, 033015, 011003, 033035, 033015, 011004, 033035, 033015 ] +"309066" = [ 301120, 008041, 301122, 008040, 201131, 202129, 025069, 007004, 013003, 202000, + 201000, 002013, 012101, 012103, 010009, 010007, 011002, 011001 ] +"309070" = [ 001035, 001032, 001015, 001063, 301001, 301011, 301012, 301021, 207001, 010001, + 207000, 008086, 007030, 025031, 008021, 004014, 010004, 010051, 010009, 020010, + 013095, 128000, 031002, 113000, 031000, 008086, 007004, 011001, 011002, 012101, + 012102, 012103, 010009, 103000, 031000, 011021, 011022, 011005, 104000, 031000, + 008086, 007006, 011001, 011002, 105000, 031000, 008086, 007006, 012101, 012102, + 012103 ] +"309071" = [ 301001, 002014, 002003, 301113, 301114, 301023, 007030, 007007, 103000, 031001, + 007009, 011001, 011002 ] +"309072" = [ 301132, 107000, 031001, 003032, 003033, 002106, 102000, 031001, 003032, 012190, + 113000, 031001, 008021, 301011, 301013, 008021, 004026, 002134, 002135, 020143, + 103000, 031001, 003032, 033021, 012063, 114000, 031001, 008021, 301011, 301013, + 008021, 004026, 002134, 002135, 105000, 031001, 003034, 003031, 002106, 033021, + 012063 ] +"309073" = [ 301132, 008021, 004026, 013095, 013109, 020013, 008092, 008093, 013095, 013109, + 020013, 008092, 008093, 303100, 117000, 031002, 007007, 301021, 033021, 012001, + 033021, 013002, 033021, 013003, 008092, 008093, 012001, 013002, 013003, 008092, + 008093, 010071, 027079 ] +"310001" = [ 301042, 303031, 303032, 101026, 303025 ] +"310002" = [ 301042, 303031, 303032, 101009, 303023 ] +"310003" = [ 301042, 303031, 303032, 101006, 303023 ] +"310004" = [ 301042, 303031, 303032, 101003, 303024 ] +"310005" = [ 301042, 303031, 303033, 101000, 031001, 303025 ] +"310006" = [ 301042, 303031, 303033, 101000, 031001, 303023 ] +"310007" = [ 301042, 303031, 303033, 101000, 031001, 303024 ] +"310008" = [ 310011, 101019, 310012, 002150, 025079, 025080, 033032, 014045 ] +"310009" = [ 310011, 101015, 310012 ] +"310010" = [ 310011, 101005, 310012 ] +"310011" = [ 008070, 001033, 001034, 008070, 001033, 001034, 001007, 002048, 005040, 025075, + 201133, 005041, 201000, 005043, 025070, 033030, 033031, 004001, 004002, 004003, + 004004, 004005, 202131, 201138, 004006, 201000, 202000, 005001, 006001, 202126, + 007001, 202000, 007024, 005021, 007025, 005022, 033033, 002151, 012064, 002151, + 012064, 002151, 012064, 002151, 012064 ] +"310012" = [ 002150, 025076, 025077, 025078, 033032, 201132, 202129, 012063, 202000, 201000 + ] +"310013" = [ 001007, 005040, 004001, 004002, 004003, 004004, 004005, 004006, 005001, 006001, + 007025, 005043, 025085, 201131, 202129, 002150, 008023, 008072, 014027, 008072, + 014027, 002150, 008023, 008072, 014027, 008072, 014027, 002150, 008023, 008072, + 014027, 008072, 014027, 202000, 201000, 201132, 202129, 002150, 008023, 008072, + 012063, 008072, 012063, 002150, 008023, 008072, 012063, 008072, 012063, 008023, + 008072, 012063, 008072, 012063, 002150, 008023, 008072, 012063, 008072, 012063, + 202000, 201000 ] +"310014" = [ 301072, 303041, 304011 ] +"310015" = [ 301072, 007024, 010002, 303041, 101003, 304032, 002152, 002024, 007004, 007004, + 013003, 101003, 304033 ] +"310016" = [ 301072, 007024, 010002, 303041, 101012, 304032, 002152, 002024, 007004, 007004, + 013003, 101012, 304033 ] +"310018" = [ 001007, 005040, 004001, 004043, 004004, 004005, 004006, 207002, 026030, 207000, + 005002, 006002, 033072, 007025, 005022, 207002, 015001, 207000, 008003, 207001, + 010004, 207000, 008003, 008003, 033042, 207001, 007004, 207000, 207002, 015001, + 207000, 008003, 207002, 020081, 207000, 020065, 008029, 207004, 015030, 207000, + 008075 ] +"310019" = [ 001007, 002019, 301011, 301013, 301023, 007025, 008021, 007025, 008021, 007025, + 008021, 008029, 005040, 008075, 008003, 010004, 008003, 207002, 015001, 207000, + 033070, 015030, 207002, 020081, 207000, 008003, 033042, 007004, 207002, 015001, + 207000, 008003, 113021, 007004, 007004, 207002, 008021, 015005, 008021, 015005, + 033007, 207000, 008026, 101020, 025143, 008026, 008043, 109015, 007004, 008090, + 207006, 015008, 207000, 008090, 207002, 033007, 207000, 008043, 033071, 108008, + 202124, 201107, 002071, 201000, 202000, 207002, 020081, 207000 ] +"310020" = [ 310022, 301011, 301013, 301021, 304034, 310021 ] +"310021" = [ 108000, 031001, 201131, 202129, 007004, 007004, 202000, 201000, 015020, 010002 + ] +"310022" = [ 001007, 002019, 001033, 002172 ] +"310023" = [ 301072, 030021, 030022, 008012, 007024, 007025, 010002, 101012, 304032, 105002, + 002152, 002024, 007004, 007004, 013003, 101012, 304033 ] +"310024" = [ 301072, 030021, 030022, 008012, 007024, 007025, 010002, 101003, 304032, 105002, + 002152, 002024, 007004, 007004, 013003, 101003, 304033 ] +"310025" = [ 001007, 008021, 004001, 004002, 004003, 004004, 004005, 201138, 202131, 004006, + 202000, 201000, 201132, 005041, 201000, 201129, 005043, 201000, 005002, 006002, + 013040, 020029, 104024, 005042, 012163, 021083, 021084, 115003, 004001, 004002, + 004003, 201142, 202131, 004026, 202000, 201000, 005001, 006001, 201138, 202129, + 007001, 202000, 201000, 008021, 004001, 004002, 004003, 004004, 004005, 005040, + 101003, 012070, 025054, 101004, 025055, 008007, 104028, 005002, 006002, 002111, + 005021 ] +"310026" = [ 310022, 025060, 008021, 301011, 301012, 201138, 202131, 004006, 202000, 201000, + 033039, 033007, 304030, 304031, 002020, 001050, 202127, 304030, 202000, 304031, + 201133, 202131, 004016, 202000, 201000, 301021, 304030, 010035, 005021, 010036, + 113000, 031002, 301021, 005021, 108000, 031001, 002121, 007040, 015037, 008023, + 201125, 015037, 201000, 008023, 033007, 108000, 031002, 007007, 015036, 008023, + 201123, 015036, 201000, 008023, 033007, 116000, 031002, 007009, 010004, 012001, + 013001, 008023, 201120, 010004, 201000, 201122, 012001, 201000, 201123, 013001, + 201000, 008023, 033007, 008003, 007009, 010004, 008023, 201120, 010004, 201000, + 008023, 033007 ] +"310027" = [ 301071, 301011, 301013, 301021, 030021, 030022, 010002, 304036, 002152, 002167, + 101011, 304035 ] +"310028" = [ 301071, 301011, 301013, 301021, 030021, 030022, 010002, 304036, 002152, 002167, + 101011, 304037 ] +"310029" = [ 110000, 031001, 201138, 202130, 007004, 007004, 202000, 201000, 015020, 010002, + 012101, 013098 ] +"310030" = [ 310022, 301011, 301013, 301021, 304034, 310029 ] +"310050" = [ 310051, 310052, 101000, 031002, 310053, 101004, 310054, 020010, 310052, 101015, + 310053, 310052, 101005, 310053 ] +"310051" = [ 001007, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 007025, 005022, 102009, 002151, 012064 ] +"310052" = [ 002019, 301011, 301012, 202131, 201138, 004006, 201000, 202000, 301021, 007024, + 005021, 005043 ] +"310053" = [ 201134, 005042, 201000, 025076, 033032, 012163 ] +"310054" = [ 201134, 005042, 201000, 025076, 033032, 201131, 202129, 102002, 008023, 014027, + 008023, 202000, 201000 ] +"310055" = [ 310051, 310052, 102020, 025076, 025052, 101000, 031002, 025050 ] +"310060" = [ 001007, 001033, 002019, 002020, 301011, 301012, 207003, 004006, 207000, 304030, + 301021, 007024, 005021, 007025, 005022, 008075, 201133, 005041, 201000, 005045, + 005043, 005040, 010001, 201129, 007002, 201000, 202127, 201125, 021166, 201000, + 202000, 008012, 020010, 020014, 002165, 033075, 107003, 008076, 006029, 006029, + 025140, 025141, 033076, 033077, 008076, 033078, 033003, 104000, 031002, 201133, + 005042, 201000, 014044 ] +"310061" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 005041, 005043, 033079, 033080, 033078, 301021, 201129, 007002, 201000, + 007024, 005021, 007025, 005022, 025075, 111000, 031002, 005042, 202131, 002153, + 002154, 202000, 002104, 012066, 012163, 012158, 012159, 033081 ] +"310062" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 201133, 005041, 005043, 201000, 008076, 033082, 301021, 201129, 007002, + 201000, 007024, 005021, 007025, 005022, 008072, 008029, 105000, 031002, 005042, + 002155, 033083, 014043, 015042 ] +"310063" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 201133, 005041, 005043, 201000, 033082, 301021, 201129, 007002, 201000, + 007024, 005021, 007025, 005022, 008075, 008013, 008072, 033084, 007062, 033086, + 022043, 007062, 007062, 033086, 022043 ] +"310064" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 201133, 005041, 005043, 201000, 033082, 301021, 201129, 007002, 201000, + 007024, 005021, 007025, 005022, 008075, 008029, 008046, 033085, 033086, 015049, + 033086, 102011, 002155, 015062 ] +"310065" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 033082, 301021, 201129, 007002, 201000, 007024, 005021, 007025, 005022, + 008075, 033071, 033070, 020021, 015045, 015046, 008065, 033087, 008003, 010004, + 008003, 207002, 015001, 207000, 105012, 010040, 010004, 207003, 015005, 207000, + 008046, 107019, 010040, 010004, 008090, 207006, 015008, 207000, 008090 ] +"310066" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 033082, 301021, 201129, 007002, 201000, 007024, 005021, 007025, 005022, + 008075, 020081, 207004, 015030, 207000, 020065, 015041, 033086, 033087, 033088, + 008003, 207001, 007004, 207000, 008003, 207002, 015001, 207000, 008003, 033042, + 207001, 007004, 207000, 207002, 015001, 207000, 008003, 001032, 207002, 015001, + 207000 ] +"310067" = [ 001033, 001034, 025061, 025062, 001007, 002153, 001012, 201138, 002026, 002027, + 201000, 002028, 002029, 002161, 002164, 002023, 008012, 008013, 001124, 005001, + 006001, 004001, 004002, 004003, 004004, 004005, 004006, 004086, 011001, 011002, + 011003, 011004, 002162, 007004, 012001, 020014, 007024, 001023, 104000, 031001, + 002162, 007004, 012001, 020014, 113000, 031001, 004086, 002020, 001007, 002019, + 005042, 002153, 005040, 007024, 005021, 002162, 007004, 012001, 020014, 119000, + 031001, 004086, 004086, 005001, 006001, 011003, 011004, 011113, 025148, 103000, + 031001, 008023, 011003, 011004, 008023, 103000, 031001, 020111, 020112, 020114, + 001033, 008021, 011095, 011096, 007004, 008021, 011095, 011096, 007004, 008021, + 008086, 011095, 011096, 007004, 008086, 102004, 001032, 033007, 008092, 011003, + 011004, 007004, 008092, 033066, 020081, 020012, 020056, 117000, 031001, 008023, + 020016, 008092, 008003, 012001, 008003, 020016, 008092, 025149, 020016, 020014, + 013093, 013109, 040038, 008011, 014050, 008011, 008023 ] +"310068" = [ 008070, 001033, 001034, 001007, 002019, 012064, 005040, 201136, 005041, 201000, + 005043, 301011, 301012, 201138, 202131, 004006, 202000, 201000, 005001, 006001, + 202126, 007001, 202000, 010007, 007024, 005021, 007025, 005022, 013040, 012101, + 201131, 202129, 011011, 202000, 201000, 201130, 202129, 011012, 202000, 201000, + 020029, 020010, 020014, 013162, 014050 ] +"310069" = [ 005042, 201139, 002155, 201000, 025077, 025078, 033007, 201132, 202129, 012063, + 202000, 201000 ] +"310070" = [ 310068, 101013, 310069 ] +"310071" = [ 310068, 101015, 310069 ] +"310072" = [ 310068, 101026, 310069 ] +"310077" = [ 001033, 001034, 025061, 025062, 001007, 002153, 001012, 201138, 002026, 002027, + 201000, 002028, 002029, 002161, 002164, 002023, 008012, 008013, 001124, 005001, + 006001, 004001, 004002, 004003, 004004, 004005, 004006, 004086, 002162, 007004, + 011001, 011002, 011003, 011004, 012001, 020014, 007024, 001023, 104000, 031001, + 002162, 007004, 012001, 020014, 113000, 031001, 004086, 002020, 001007, 002019, + 005042, 002153, 005040, 007024, 005021, 002162, 007004, 012001, 020014, 119000, + 031001, 004086, 004086, 005001, 006001, 011003, 011004, 011113, 025148, 103000, + 031001, 008023, 011003, 011004, 008023, 103000, 031001, 020111, 020112, 020114, + 001033, 008021, 007004, 011095, 011096, 008021, 007004, 011095, 011096, 008021, + 008086, 007004, 011095, 011096, 008086, 102004, 001044, 033007, 008092, 007004, + 011003, 011004, 008092, 033066, 020081, 020012, 020056, 117000, 031001, 008023, + 020016, 008092, 008003, 012001, 008003, 020016, 008092, 025149, 020016, 020014, + 013093, 013109, 040038, 008011, 014050, 008011, 008023 ] +"310078" = [ 001007, 001016, 002019, 002020, 001033, 001034, 301011, 301013, 005040, 201132, + 005041, 201000, 005043, 033079, 033080, 033078, 007002, 102003, 008097, 012164, + 117000, 031001, 005001, 006001, 007024, 005021, 007025, 005022, 109000, 031001, + 005042, 002153, 002154, 002104, 012066, 012163, 012158, 012159, 033094 ] +"310080" = [ 001033, 001034, 001007, 002019, 005040, 025061, 201133, 005041, 201000, 301011, + 301012, 207003, 004006, 207000, 202126, 007001, 202000, 005063, 005064, 005066, + 005077, 006043, 006041, 006042, 008098, 012101, 008098, 012101, 008098, 012101, + 008098, 012101, 008098, 007074, 005076, 201124, 202127, 025084, 202000, 201000, + 033100, 033102, 033104, 033105, 113007, 005078, 005001, 006001, 007024, 005021, + 007025, 005022, 007073, 201132, 202129, 021166, 202000, 201000, 117003, 005042, + 202131, 002153, 002154, 202000, 025077, 025078, 033101, 033103, 002104, 201131, + 202136, 014045, 202000, 201000, 012158, 012159, 117002, 005042, 202131, 002153, + 002154, 202000, 025077, 025078, 033101, 033103, 002104, 201132, 202136, 014045, + 202000, 201000, 012158, 012159, 117003, 005042, 202131, 002153, 002154, 202000, + 025077, 025078, 033101, 033103, 002104, 201133, 202136, 014045, 202000, 201000, + 012158, 012159, 117003, 005042, 202131, 002153, 002154, 202000, 025077, 025078, + 033101, 033103, 002104, 201133, 202136, 014045, 202000, 201000, 012158, 012159, + 117002, 005042, 202131, 002153, 002154, 202000, 025077, 025078, 033101, 033103, + 002104, 201131, 202135, 014045, 202000, 201000, 012158, 012159 ] +"310081" = [ 001033, 001034, 001007, 002019, 005040, 025061, 201133, 005041, 201000, 301011, + 301012, 207003, 004006, 207000, 202126, 007001, 202000, 005063, 005064, 005066, + 005077, 006043, 006041, 006042, 008098, 012101, 008098, 012101, 008098, 012101, + 008098, 012101, 008098, 007074, 005076, 201124, 202127, 025084, 202000, 201000, + 033095, 033097, 033106, 033099, 113008, 005078, 005001, 006001, 007024, 005021, + 007025, 005022, 007073, 201132, 202129, 021166, 202000, 201000, 117002, 005042, + 202131, 002153, 002154, 202000, 025077, 025078, 033096, 033098, 002104, 201131, + 202138, 014045, 202000, 201000, 012158, 012159, 117002, 005042, 202131, 002153, + 002154, 202000, 025077, 025078, 033096, 033098, 002104, 201132, 202138, 014045, + 202000, 201000, 012158, 012159, 117002, 005042, 202131, 002153, 002154, 202000, + 025077, 025078, 033096, 033098, 002104, 201132, 202138, 014045, 202000, 201000, + 012158, 012159, 117008, 005042, 202131, 002153, 002154, 202000, 025077, 025078, + 033096, 033098, 002104, 201131, 202137, 014045, 202000, 201000, 012158, 012159, + 117002, 005042, 202131, 002153, 002154, 202000, 025077, 025078, 033096, 033098, + 002104, 201132, 202137, 014045, 202000, 201000, 012158, 012159, 117004, 005042, + 202131, 002153, 002154, 202000, 025077, 025078, 033096, 033098, 002104, 201133, + 202137, 014045, 202000, 201000, 012158, 012159, 117001, 005042, 202131, 002153, + 002154, 202000, 025077, 025078, 033096, 033098, 002104, 201131, 202136, 014045, + 202000, 201000, 012158, 012159, 117005, 005042, 202131, 002153, 002154, 202000, + 025077, 025078, 033096, 033098, 002104, 201131, 202136, 014045, 202000, 201000, + 012158, 012159 ] +"310082" = [ 008070, 001033, 001034, 001007, 002019, 005040, 025061, 201133, 005041, 201000, + 005043, 006042, 301011, 301012, 207003, 004006, 207000, 301021, 107002, 005080, + 201132, 202129, 021166, 202000, 201000, 007007, 202126, 007001, 202000, 007024, + 005021, 007025, 005022, 201124, 202127, 025084, 202000, 201000, 007073, 012070, + 012064, 008098, 012101, 008098, 033107, 033108, 033109, 118024, 005042, 104004, + 005079, 202130, 002154, 202000, 002104, 002153, 025077, 025078, 207002, 012063, + 207000, 207001, 033089, 033090, 207000, 033110 ] +"310083" = [ 001033, 001034, 025060, 001007, 002019, 127012, 005040, 201130, 006034, 201000, + 005034, 301021, 008012, 301011, 301012, 004007, 008085, 003030, 002104, 003030, + 002104, 003029, 008075, 202129, 201131, 002111, 201000, 202000, 005021, 021062, + 021026, 021027, 033111 ] +"310084" = [ 001033, 001034, 025060, 001007, 002019, 005040, 006034, 005034, 301021, 301011, + 301012, 004007, 014058, 033112, 117005, 008085, 008012, 003030, 002104, 003030, + 002104, 008075, 202129, 201131, 002111, 201000, 202000, 005021, 021062, 021026, + 021027, 025056 ] +"310085" = [ 001007, 301005, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 202126, 007001, 202000, 033113, 105170, + 104100, 201137, 005042, 201000, 014046, 002019, 110007, 005060, 005061, 020083, + 106020, 005042, 008023, 014044, 008023, 014044, 008023, 008072, 020083, 008029, + 020083 ] +"310086" = [ 001007, 301005, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 202126, 007001, 202000, 033113, 109004, + 025140, 201129, 025141, 201000, 040026, 040016, 101000, 031002, 040017, 002019, + 110007, 005060, 005061, 020083, 106020, 005042, 008023, 014044, 008023, 014044, + 008023, 008072, 020083, 008029, 020083 ] +"310087" = [ 001007, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 202126, 007001, 202000, 040052, 040047, + 008065, 204004, 031021, 002019, 002019, 001030, 204000, 002019, 040046, 033116, + 033117, 040080, 040051, 008003, 021166, 022046, 010001, 008023, 010001, 008023, + 008003 ] +"310088" = [ 310087, 040053, 102003, 008071, 025149, 106000, 031000, 101000, 031002, 040076, + 101000, 031002, 040075, 040067, 040066, 202126, 013098, 202000, 107101, 202131, + 201138, 007004, 201000, 202000, 012101, 013001 ] +"310089" = [ 310087, 012083, 008043, 040044, 008043, 020056, 013109, 020056, 013109, 008003, + 109002, 020056, 020081, 202131, 201138, 020016, 201000, 202000, 012101, 020131 + ] +"310090" = [ 310087, 008003, 040067, 040066, 102012, 005042, 014050, 012001, 202131, 201138, + 010004, 201000, 202000, 008003, 012083, 011012, 008043, 040044, 008043 ] +"310091" = [ 310087, 104003, 008043, 102007, 007004, 015021 ] +"310092" = [ 001007, 025060, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, + 202131, 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, + 005022, 005043, 005040, 201133, 005041, 201000, 202126, 010007, 202000 ] +"310093" = [ 310092, 008046, 015021, 040056, 040058, 040059, 040060, 040057, 103019, 040061, + 040062, 040063, 101190, 040065 ] +"310094" = [ 310092, 008046, 015021, 040056, 040058, 040059, 040060, 040057, 103041, 040061, + 040062, 040063, 102021, 101041, 040065 ] +"310095" = [ 310092, 008046, 040068, 010073, 015007, 012169, 102005, 007004, 015007 ] +"310096" = [ 301005, 001007, 002019, 002020, 025060, 301011, 301013, 005040, 005001, 006001, + 202126, 007001, 202000, 007024, 005021, 007025, 005022, 033028 ] +"310097" = [ 310096, 008011, 033007, 008011, 008072, 008029 ] +"310098" = [ 310096, 013094, 020016, 020014, 008093, 013094, 020016, 020014, 008093 ] +"310099" = [ 310096, 025144, 025145, 020139, 008029, 120002, 008002, 013094, 020016, 012001, + 202131, 201139, 020131, 201000, 202000, 020014, 008093, 013094, 020016, 202131, + 201139, 020131, 201000, 202000, 020014, 008093 ] +"310100" = [ 310096, 202129, 201132, 013060, 201000, 202000, 033118, 033119 ] +"310191" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 007024, 005021, 007025, 005022, 102002, 008076, 301021, 201131, 005041, 201000, + 005045, 201133, 005043, 201000, 202126, 201132, 007001, 201000, 202000, 025182, + 002165, 108002, 008076, 006029, 006029, 025140, 025141, 033076, 033077, 025187, + 008076, 105000, 031002, 201133, 005042, 201000, 014044, 014049 ] +"311001" = [ 301051, 007002, 012001, 011001, 011002, 011031, 011032, 011033, 020041 ] +"311002" = [ 301065, 301066, 311003, 311004 ] +"311003" = [ 010070, 011001, 011002, 012001, 013002 ] +"311004" = [ 101000, 031000, 011034, 101000, 031000, 011035, 101000, 031000, 011075, 101000, + 031000, 011076, 101000, 031000, 033025, 101000, 031000, 033026 ] +"311005" = [ 001008, 001023, 301021, 301011, 301013, 007010, 008009, 011001, 011002, 011031, + 011036, 012101, 033025 ] +"311006" = [ 007010, 011001, 011002, 002064, 012101, 012103 ] +"311007" = [ 007010, 301021, 011001, 011002, 002064, 012101, 012103 ] +"311008" = [ 001008, 301011, 301013, 301021, 008004, 101000, 031001, 311006 ] +"311009" = [ 001008, 301011, 301013, 301021, 008004, 101000, 031001, 311007 ] +"311010" = [ 001008, 001023, 001006, 001110, 001111, 001112, 204002, 031021, 301011, 301013, + 301021, 007010, 010053, 008009, 011001, 011002, 002064, 011100, 011101, 011102, + 011103, 011104, 012101, 002170, 201144, 202133, 013002, 202000, 201000, 201135, + 202130, 013003, 202000, 201000, 101000, 031000, 012103, 033026, 101000, 031000, + 020042, 103000, 031000, 020043, 020044, 020045, 101000, 031000, 033025, 103000, + 031001, 011075, 011076, 011039, 102000, 031000, 011037, 011077, 103000, 031000, + 011034, 011035, 011036, 204000, 119000, 031001, 301011, 301013, 301021, 007007, + 011105, 204007, 031021, 011076, 011075, 204000, 011106, 011107, 011108, 011109, + 012101, 011001, 201130, 011084, 201000 ] +"311011" = [ 001023, 008004, 301011, 301013, 005002, 006002, 007004, 011001, 011002, 012101, + 106000, 031001, 008046, 201139, 202126, 015026, 202000, 201000, 106000, 031001, + 008046, 201138, 202130, 015026, 202000, 201000, 015052, 015053, 015054, 015055, + 007004, 007004, 013099, 013100, 013101 ] +"311012" = [ 301150, 001008, 001111, 001112, 301011, 301013, 301021, 008004, 110000, 031002, + 301011, 301013, 311007, 201144, 202133, 013002, 202000, 201000, 013003, 033026 + ] +"311013" = [ 301150, 001008, 001095, 301011, 301013, 301021, 001013, 008009, 007010, 033003, + 011001, 011002, 012101, 002170, 201144, 202133, 013002, 202000, 201000, 201135, + 202130, 013003, 202000, 201000, 011073, 011075 ] +"312001" = [ 301043, 304001 ] +"312002" = [ 301043, 304002 ] +"312003" = [ 301042, 304003 ] +"312004" = [ 301042, 304004 ] +"312005" = [ 301042, 020014 ] +"312006" = [ 301044, 304005 ] +"312007" = [ 301042, 304006 ] +"312010" = [ 001007, 005040, 002021, 005041, 004001, 004043 ] +"312011" = [ 202131, 201149, 004006, 201000, 202126, 010002, 202000, 005043, 005053 ] +"312012" = [ 202129, 201132, 101019, 012063, 201000, 202000 ] +"312013" = [ 005042, 202129, 201135, 012063, 201000, 202000 ] +"312014" = [ 312010, 312011, 105056, 301023, 005042, 005052, 312012, 312013 ] +"312015" = [ 109011, 301023, 005042, 005052, 202129, 201132, 101004, 012063, 202000, 201000 + ] +"312016" = [ 312010, 312011, 312015 ] +"312017" = [ 109008, 301023, 005042, 005052, 202129, 201132, 101003, 012063, 202000, 201000 + ] +"312018" = [ 312010, 312011, 312017 ] +"312019" = [ 301047, 301048, 015015, 029002, 021076, 106012, 201129, 006030, 201000, 102012, + 005030, 021075, 021066 ] +"312020" = [ 301047, 301048, 015015, 029002, 021076, 104012, 006030, 102012, 005030, 021075, + 021066 ] +"312021" = [ 301047, 101003, 301049, 011012, 011011, 021067 ] +"312022" = [ 301047, 008022, 011012, 011050, 022070, 022026, 312041, 010050, 021068, 021071, + 021072, 021073, 312042, 021062, 015011 ] +"312023" = [ 301047, 103003, 008022, 012061, 022050, 021069, 021085 ] +"312024" = [ 312020, 008060, 008022, 008060, 008022, 025014, 022101, 022097, 022098, 022099, + 022100 ] +"312025" = [ 312019, 008060, 008022, 008060, 008022, 025014, 022101, 022097, 022098, 022099, + 022100 ] +"312026" = [ 301046, 301011, 301013, 301023, 312031, 101004, 312030, 021110, 301023, 321027, + 021111, 301023, 321027, 021112, 301023, 321027, 021113, 301023, 321027 ] +"312027" = [ 301047, 105009, 301023, 007021, 012061, 007021, 012061, 021085, 021070 ] +"312028" = [ 301046, 301011, 301013, 301023, 008025, 201136, 004006, 201000, 312031, 312032, + 101004, 312030, 101002, 312033, 021110, 301023, 321028, 021111, 301023, 321028, + 021112, 301023, 321028, 021113, 301023, 321028 ] +"312029" = [ 301046, 301011, 301013, 301023, 008025, 201136, 004006, 201000, 005034, 201129, + 006034, 201000, 033055, 011081, 011082, 021101, 021102, 021103, 312032, 101004, + 312030, 101002, 312033, 021110, 301023, 321028, 021111, 301023, 321028, 021112, + 301023, 321028, 021113, 301023, 321028 ] +"312030" = [ 201130, 202129, 011012, 202000, 201000, 011052, 201135, 202130, 011011, 202000, + 201000, 011053, 021104 ] +"312031" = [ 005034, 006034, 021109, 011081, 011082, 021101, 021102, 021103 ] +"312032" = [ 021120, 021121, 013055, 021122 ] +"312033" = [ 002104, 008022, 012063, 012065 ] +"312034" = [ 301046, 301011, 301013, 301023, 008025, 201136, 004006, 201000, 312031, 312032, + 101004, 312030, 101002, 312033, 103018, 021110, 301023, 321028 ] +"312035" = [ 001007, 001031, 002048, 202124, 002026, 002027, 202000, 005040, 004001, 004002, + 004003, 004004, 004005, 004006, 005002, 006002, 005034, 006031, 201129, 006034, + 201000, 005021, 002111, 012063, 021095, 021096, 021097, 021030, 021105, 033056 + ] +"312041" = [ 201141, 202130, 007001, 201000, 202000 ] +"312042" = [ 021077, 021078, 021079, 021080, 021081, 021082 ] +"312045" = [ 001007, 002019, 001096, 025061, 005040, 301011, 301013, 301021, 007002, 012180, + 012181, 012182, 012183, 012184, 012185, 002174, 021086, 012186, 021087, 012187, + 033043 ] +"312050" = [ 001007, 002019, 001096, 025061, 005040, 301011, 301013, 301021, 007025, 005022, + 010080, 027080, 008003, 007004, 013093, 008003, 201131, 202129, 007004, 007004, + 202000, 201000, 013095 ] +"312051" = [ 001007, 002019, 001096, 025061, 005040, 008075, 301011, 301013, 301021, 001012, + 201131, 001013, 201000, 010032, 010033, 010034, 007002, 008012, 025110, 025111, + 025102, 002104, 025103, 025104, 025105, 025106, 025107, 025108, 002111, 002121, + 002026, 002027, 021130, 021131, 021132, 021133, 021064, 025014, 021134, 107018, + 005030, 105024, 201130, 006030, 201000, 021135, 021136, 033044 ] +"312052" = [ 001007, 002019, 001096, 025061, 005040, 025120, 025121, 025124, 025125, 025122, + 025123, 301011, 301013, 301021, 007002, 002119, 033047, 010081, 010082, 010083, + 010084, 002116, 002117, 002118, 002156, 002157, 014055, 022150, 022151, 022152, + 022153, 022154, 022155, 022156, 022157, 022158, 022159, 021137, 021138, 021139, + 021140, 021141, 021142, 010085, 010086, 010087, 010088, 010089, 010090, 010091, + 010092, 010093, 011002, 025126, 025127, 025128, 025129, 025130, 025131, 025132, + 025133, 025134, 025135, 025136, 025137, 013096, 013097, 011095, 011096, 012188, + 012189, 002158, 002159, 033052, 033053, 021143, 021144 ] +"312053" = [ 001007, 002019, 001096, 025061, 005040, 008075, 301011, 301013, 301021, 001012, + 201131, 001013, 201000, 010032, 010033, 010034, 007002, 008012, 025110, 025111, + 025102, 002104, 025103, 025104, 025105, 025106, 025107, 025108, 011001, 011002, + 022160, 025138, 201130, 202129, 022021, 202000, 201000, 033048, 033049, 002026, + 002027, 021130, 021131, 021132, 021133, 025014, 106036, 005030, 104024, 201130, + 006030, 201000, 022161, 033044 ] +"312055" = [ 005033, 005040, 006034, 010095, 021157 ] +"312056" = [ 025060, 001032, 011082, 011081, 020095, 020096, 021155, 201133, 021101, 021102, + 201000 ] +"312057" = [ 201130, 202129, 011012, 202000, 201000, 201131, 202129, 011011, 202000, 201000, + 021156, 021104 ] +"312058" = [ 301125, 301011, 301013, 301021, 312055, 021150, 101003, 321030 ] +"312059" = [ 312056, 101000, 031001, 312057 ] +"312060" = [ 025060, 025062, 040001, 040002, 021062, 021151, 021152, 021153, 021154, 021062, + 021088, 040003, 040004, 040005, 040006, 040007, 020065, 040008, 040009, 040010 + ] +"312061" = [ 312058, 312060, 312059 ] +"312062" = [ 001007, 002019, 301011, 301013, 301021, 020065, 008023, 020065, 008023 ] +"312070" = [ 001007, 002019, 001144, 001124, 030010, 301011, 301013, 301021, 007012, 015012, + 012165, 012166, 012167, 012168, 027010, 028010, 002099, 013048, 025081, 025082, + 025083, 025084, 012080, 012081, 012082, 025174, 033028 ] +"312071" = [ 001007, 002019, 002139, 001096, 001040, 025061, 005040, 005044, 008075, 008077, + 004001, 004002, 004003, 004004, 004005, 004006, 005001, 006001, 010081, 022156, + 022142, 101020, 022149, 022143, 022144, 021137, 101020, 021181, 021138, 021180, + 021177, 021178, 021179, 010079, 010085, 010086, 010087, 010089, 010090, 010091, + 010092, 010093, 011097, 021093, 101020, 021182, 033053, 022151, 022145, 022148, + 022146, 022147, 025126, 025128, 025127, 021176, 025132, 025133, 025182, 025183, + 025180, 025184, 025181, 033080 ] +"313009" = [ 021001, 101000, 031001, 021001 ] +"313010" = [ 021036, 101000, 031001, 021036 ] +"313031" = [ 006002, 006012, 101000, 031002, 030001 ] +"313032" = [ 005002, 005012, 101000, 031002, 313031 ] +"313041" = [ 006002, 110000, 031001, 104000, 031001, 006012, 101000, 031012, 030001, 006012, + 101000, 031001, 030001 ] +"313042" = [ 005002, 005012, 101000, 031002, 313041 ] +"313043" = [ 006002, 005002, 005012, 112000, 031001, 110000, 031001, 104000, 031001, 006012, + 101000, 031011, 030001, 006012, 101000, 031001, 030001 ] +"315001" = [ 001011, 301011, 301012, 301023, 306001 ] +"315002" = [ 001011, 301011, 301012, 301023, 306004 ] +"315003" = [ 001087, 001085, 001086, 002036, 002148, 002149, 022055, 022056, 022067, 301011, + 301012, 301021, 008080, 033050, 109000, 031002, 007065, 008080, 033050, 022045, + 008080, 033050, 022064, 008080, 033050 ] +"315004" = [ 001079, 001011, 001103, 001087, 001019, 001080, 005036, 001036, 001013, 001012, + 301011, 301012, 301021, 007032, 007033, 002002, 011002, 011001, 007032, 007033, + 012101, 012103, 007032, 007033, 302021, 002031, 002030, 022005, 022032, 022063, + 008080, 033050, 022178, 022177, 022067, 008041, 026021, 026022, 026023, 022068, + 025061, 008041, 008080, 002171, 302090, 002171, 002032, 315005 ] +"315005" = [ 106000, 031002, 007063, 008080, 033050, 022043, 008080, 033050 ] +"315006" = [ 001079, 001011, 001103, 001087, 001019, 001080, 005036, 001036, 001013, 001012, + 301011, 301012, 301021, 007032, 007033, 002002, 011002, 011001, 007032, 007033, + 012101, 012103, 007032, 007033, 302021, 002031, 002030, 022005, 022032, 022063, + 008080, 033050, 022178, 022177, 022067, 008041, 026021, 026022, 026023, 022068, + 025061, 008041, 008080, 002171, 302090, 002171, 002032, 109000, 031002, 007063, + 008080, 033050, 022043, 008080, 033050, 022064, 008080, 033050 ] +"315007" = [ 301003, 001019, 001103, 001087, 001036, 001115, 001080, 005036, 301011, 301012, + 301021, 001079, 001023, 022063, 101000, 031000, 302001, 101000, 031000, 302021, + 101000, 031000, 302052, 101000, 031000, 302059, 022067, 002171, 302090, 306033, + 306034, 002171, 022067, 002038, 022067, 022068, 002171, 002033, 002032, 022056, + 003011, 306035, 107000, 031000, 002032, 003010, 002031, 002040, 022056, 003011, + 306036, 104000, 031000, 002032, 003012, 003011, 306037 ] +"315008" = [ 301126, 306038, 101000, 031000, 302091, 101000, 031000, 302082, 101000, 031000, + 306039, 101000, 031000, 306040, 102000, 031000, 002005, 306041, 102000, 031000, + 002005, 306004, 101000, 031000, 306005 ] +"315009" = [ 001087, 001019, 002149, 008021, 301011, 301012, 301021, 208016, 001051, 208000, + 002148, 001012, 001014, 033022, 033023, 033027, 025026, 002034, 022060, 007070, + 002190, 008021, 301011, 301012, 002005, 022043, 002033, 022059, 008029, 013115, + 103000, 031000, 002005, 306004, 002005, 010004, 010051, 102000, 031000, 007033, + 012101, 101000, 031000, 306042, 101000, 031000, 306039 ] +"315010" = [ 112000, 031001, 201144, 202133, 022080, 022096, 022069, 202000, 201000, 042011, + 042012, 042013, 042014, 042015 ] +"315011" = [ 301150, 001087, 001036, 001085, 001086, 003001, 208032, 001079, 208000, 301011, + 301012, 301021, 001012, 001014, 011104, 103000, 031000, 007031, 306038, 012161, + 101000, 031000, 306034, 101000, 031000, 306039, 101000, 031000, 306033, 101000, + 031000, 306041, 101000, 031000, 306004, 101000, 031000, 306005, 105000, 031000, + 041001, 008043, 015028, 008043, 013080, 104000, 031000, 041005, 041003, 022188, + 041002, 101000, 031000, 306040, 104000, 031000, 008021, 004025, 014017, 014018 + ] +"315012" = [ 301150, 201129, 001087, 201000, 001019, 001036, 002148, 001085, 001086, 008021, + 301011, 301013, 301021, 011104, 002169, 011002, 011001, 002169, 022032, 022005, + 301011, 301013, 008021, 004025, 301021, 022031, 022004, 008021, 005068, 001079, + 126000, 031001, 022056, 123000, 031002, 301011, 301013, 301021, 008080, 033050, + 007062, 008080, 033050, 022065, 008080, 033050, 022045, 008080, 033050, 022066, + 008080, 033050, 022064, 008080, 033050, 042016, 008080, 033050 ] +"315013" = [ 301150, 001087, 208032, 001019, 208000, 003001, 022067, 001051, 002148, 112000, + 031001, 008021, 301011, 301012, 301021, 001012, 001014, 033022, 033023, 033027, + 007063, 022045, 008021, 107000, 031001, 301011, 301012, 301021, 001079, 001023, + 022056, 306035 ] +"315023" = [ 301150, 201129, 001087, 201000, 208032, 001019, 208000, 003001, 022067, 001051, + 002148, 112000, 031001, 008021, 301011, 301012, 301021, 001012, 001014, 033022, + 033023, 033027, 007063, 022045, 008021, 107000, 031001, 301011, 301012, 301021, + 001079, 001023, 022056, 306035 ] +"316001" = [ 301011, 004004, 301023, 001021, 002041, 019001, 010051, 019002, 019003, 019004 + ] +"316002" = [ 008021, 004001, 004002, 004003, 004004, 004005, 001033, 008021, 004001, 004002, + 004003, 004004, 004005, 007002, 007002 ] +"316003" = [ 110000, 031001, 008011, 008007, 104000, 031001, 005002, 006002, 010002, 011002, + 008007, 008011 ] +"316004" = [ 111000, 031001, 008011, 008007, 007002, 007002, 102000, 031001, 005002, 006002, + 011031, 008007, 008011 ] +"316005" = [ 108000, 031001, 008005, 008007, 005002, 006002, 001026, 019001, 008007, 008005 + ] +"316006" = [ 112000, 031001, 008011, 008007, 007002, 007002, 102000, 031001, 005002, 006002, + 020011, 020012, 008007, 008011 ] +"316007" = [ 110000, 031001, 008011, 008007, 104000, 031001, 005002, 006002, 019005, 019006, + 008007, 008011 ] +"316008" = [ 111000, 031001, 008001, 008007, 008023, 103000, 031001, 005002, 006002, 010002, + 008023, 008007, 008001 ] +"316009" = [ 111000, 031001, 008011, 008007, 007002, 007002, 102000, 031001, 005002, 006002, + 020041, 008007, 008011 ] +"316010" = [ 107000, 031001, 008011, 008007, 001022, 005002, 006002, 008007, 008011 ] +"316011" = [ 117000, 031001, 008011, 001022, 008007, 102000, 031001, 005002, 006002, 008021, + 004001, 004002, 004003, 004004, 004005, 020090, 008021, 008007, 008011 ] +"316020" = [ 001033, 001025, 001027, 301011, 301012 ] +"316021" = [ 301023, 002041, 019001, 019007, 019005, 019006, 019008, 008005, 010004, 008005, + 010004, 019007, 008005, 008021, 004075, 011040, 019007, 105004, 005021, 005021, + 102002, 019003, 019004 ] +"316022" = [ 001032, 002041, 019001, 019010, 118000, 031001, 008021, 004014, 008005, 301023, + 019005, 019006, 010004, 011041, 008021, 004075, 011040, 019008, 105004, 005021, + 005021, 102002, 019003, 019004 ] +"316026" = [ 316020, 316021 ] +"316027" = [ 316020, 316022 ] +"316030" = [ 301014, 001037, 010064, 008019, 001062, 008019, 001065, 008019, 001062, 008019 + ] +"316031" = [ 008021, 301011, 301012, 301027, 019005, 019006, 020028, 008021 ] +"316032" = [ 008021, 301011, 301012, 301027, 008021 ] +"316033" = [ 008021, 301011, 301012, 101000, 031001, 301027, 008021 ] +"316034" = [ 008079, 316030, 008011, 001022, 008007, 301023, 008007, 020090, 316031, 101000, + 031000, 316032, 101000, 031001, 316033, 008011, 008079 ] +"316035" = [ 008079, 316030, 008011, 020023, 020021, 020008, 316031, 008011, 008079 ] +"316036" = [ 008079, 316030, 008011, 001027, 316031, 101000, 031000, 316032, 101000, 031001, + 316033, 008011, 008079 ] +"316037" = [ 008079, 316030, 008011, 011031, 316031, 008011, 008079 ] +"316038" = [ 008079, 316030, 008011, 020041, 020021, 316031, 008011, 008079 ] +"316039" = [ 008079, 316030, 008011, 020024, 316031, 008011, 008079 ] +"316040" = [ 316030, 008079, 301014, 001037, 010064, 008079 ] +"316050" = [ 301001, 301011, 301012, 002160, 008005, 005002, 006002, 008005, 019100, 019005, + 019006, 019101, 019102, 019103, 019104, 019105 ] +"316052" = [ 301005, 301011, 301012, 001007, 025150, 122000, 031001, 001027, 019150, 019106, + 008005, 005002, 006002, 008005, 019107, 019005, 019006, 019108, 019109, 019110, + 019111, 019112, 019113, 019114, 019115, 019116, 019117, 019118, 019119 ] +"316060" = [ 301011, 301012, 005002, 006002, 019005, 019006, 005002, 006002, 005002, 006002, + 004074, 020048, 011041, 013055 ] +"316061" = [ 301011, 301012, 005002, 006002, 019005, 019006, 102000, 031001, 005002, 006002, + 102000, 031001, 005002, 006002, 004074, 020048, 011041, 013055 ] +"316071" = [ 301014, 101000, 031002, 316075, 101000, 031002, 316076 ] +"316072" = [ 301014, 101000, 031002, 316077, 101000, 031002, 316078, 101000, 031002, 316079 + ] +"316073" = [ 301014, 101000, 031002, 316080, 101000, 031002, 316081 ] +"316074" = [ 001039, 008021, 301014, 301027, 008021 ] +"316075" = [ 008079, 008041, 316074, 020006, 033042, 020013, 033042, 020001, 020025, 020026, + 008041, 008079 ] +"316076" = [ 008079, 008041, 316074, 020006, 020025, 020026, 008041, 008079 ] +"316077" = [ 008079, 008011, 316074, 011031, 008011, 008079 ] +"316078" = [ 008079, 008041, 316074, 033042, 011012, 008041, 008079 ] +"316079" = [ 008079, 008011, 316074, 020023, 020024, 008011, 008079 ] +"316080" = [ 008079, 008011, 316074, 020041, 008011, 008079 ] +"316081" = [ 008079, 008041, 316074, 008041, 008079 ] +"316082" = [ 001033, 001034, 001032, 001025, 001027, 001090, 001091, 001092, 301011, 301012, + 008005, 301023, 008005, 301023, 010051, 008005, 301023, 011012, 107003, 019003, + 105004, 005021, 005021, 201131, 019004, 201000, 116000, 031001, 008021, 004024, + 008005, 301023, 010051, 008005, 301023, 011012, 107003, 019003, 105004, 005021, + 005021, 201131, 019004, 201000 ] +"318001" = [ 301025, 024011 ] +"318003" = [ 301026, 024005, 024004, 024021 ] +"318004" = [ 301025, 004023, 013011, 024005, 024004, 024022 ] +"321001" = [ 002101, 002114, 002105, 002106, 002107, 002121 ] +"321003" = [ 021051, 021014, 021017, 021030 ] +"321004" = [ 301031, 002003, 101000, 031001, 321003 ] +"321005" = [ 025004, 002121, 002122, 002123, 002124, 002125, 002126, 002127, 002128, 002129, + 002130, 002131 ] +"321006" = [ 025001, 025002, 025003, 025005 ] +"321007" = [ 025009, 025010, 025011, 025012, 025013, 025015, 025016, 025017 ] +"321008" = [ 025006, 025007, 025008 ] +"321009" = [ 025018, 025019 ] +"321010" = [ 002101, 007002, 002102, 002103, 002104, 002105, 002106, 002107, 002108, 002109, + 002110, 002132, 002133 ] +"321011" = [ 030031, 030032, 029002 ] +"321012" = [ 101000, 031001, 002135 ] +"321021" = [ 002003, 002101, 201130, 002106, 201000, 201132, 202130, 002121, 202000, 201000, + 201133, 202129, 025001, 202000, 201000 ] +"321022" = [ 007007, 204001, 031021, 011001, 204000, 011002, 204001, 031021, 011006, 204000, + 021030 ] +"321023" = [ 007007, 021091, 021030, 202129, 021014, 201129, 021017, 202000, 201000 ] +"321024" = [ 007007, 204001, 031021, 012007, 011006, 204000, 021030 ] +"321025" = [ 007007, 021091, 021030, 202129, 021014, 201129, 021017, 202000, 201000, 021092, + 021030, 025092, 201129, 202129, 021017, 202000, 201000 ] +"321026" = [ 007007, 204001, 031021, 012007, 025091, 011071, 011072, 011073, 011074, 204000 + ] +"321027" = [ 021118, 202129, 201132, 002112, 201000, 201131, 002111, 201000, 202000, 002104, + 021105, 021106, 021107, 021114, 021115, 021116, 008018, 021117 ] +"321028" = [ 021118, 202129, 201132, 002112, 201000, 201131, 002111, 201000, 202000, 002104, + 021123, 021106, 021107, 021114, 021115, 021116, 008018, 021117 ] +"321030" = [ 008085, 202129, 201131, 002111, 201000, 202000, 002134, 021062, 021063, 021158, + 021159, 021160, 021161, 021162, 021163, 021164, 021165, 021166 ] +"321031" = [ 001007, 002019, 001033, 001034, 301011, 301013, 301021, 010033, 008043, 025139, + 002153, 106000, 031002, 007071, 021007, 021008, 021009, 021010, 033003 ] +"322001" = [ 310022, 301011, 301013, 301021, 005041, 005043, 027080, 005022, 013040, 020010, + 033085, 033115, 105002, 008099, 007024, 007025, 007075, 007076, 106000, 031001, + 002071, 008043, 015024, 008043, 015024, 015042, 224000, 236000, 101000, 031002, + 031031, 001033, 001032, 008023, 101000, 031002, 224255 ] +"322028" = [ 001007, 002019, 004001, 004002, 004003, 004004, 004005, 004006, 005001, 006001, + 027001, 028001, 027001, 028001, 027001, 028001, 027001, 028001, 010001, 014019, + 007025, 010080, 005023, 020010, 008003, 007004, 014026, 020014, 013093, 105000, + 031001, 007004, 007004, 008043, 008044, 015021 ] +"340001" = [ 001007, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 033060, 033061, 033062, 033063, 033064, 033065, 101010, 340002, 101087, + 340003, 002019, 025051, 101007, 340004 ] +"340002" = [ 025140, 025141, 025142 ] +"340003" = [ 104100, 201136, 005042, 201000, 014046 ] +"340004" = [ 005060, 005061, 025085, 105006, 005042, 025142, 014047, 025142, 014048 ] +"340005" = [ 001007, 002019, 001096, 025061, 005044, 005040, 001030, 004001, 004002, 004003, + 004004, 004005, 004007, 005001, 006001, 008029, 008074, 008077, 040011, 025097, + 025095, 025098, 025099, 021144, 025096, 040012, 040013, 021169, 022151, 022162, + 022163, 025160, 025133, 022156, 022164, 022165, 022166, 021137, 021138, 022167, + 021139, 021118, 021145, 021146, 021147, 022168, 022169, 022170, 025161, 025162, + 022171, 022172, 022173, 022174, 021170, 021171, 022175, 021172, 021118, 021173, + 021174, 021175, 002153, 012063, 002153, 012063, 002153, 012063, 013090, 013091, + 007002, 011097, 011098, 007002, 011095, 011096, 010096, 010081, 010082, 010083, + 010101, 025132, 025163, 025126, 025128, 025164, 010085, 010097, 010086, 010087, + 010092, 010088, 010089, 010098, 010099, 010090, 010100, 010093, 025127, 040014 + ] +"340007" = [ 001007, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 103003, 025140, 025141, 033060, 033061, 033062, 033063, 033064, 033065, + 040020, 101010, 340002, 101087, 340003, 002019, 025051, 101007, 340004, 020081, + 008029, 020083, 008029, 040018, 040019, 040021, 040022 ] +"340008" = [ 001007, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 103003, 025140, 025141, 033060, 033061, 033062, 033063, 033064, 033065, + 040020, 101010, 340002, 104000, 031002, 201136, 005042, 201000, 014046, 108003, + 025140, 025141, 040026, 040016, 025062, 101000, 031002, 040017, 002019, 025051, + 101007, 340004, 020081, 008029, 020083, 008029, 040018, 040019, 040021, 040022 + ] +"340009" = [ 001007, 001031, 002019, 002020, 301011, 301013, 005040, 201136, 005041, 201000, + 025071, 005001, 005001, 006001, 006001, 107064, 106032, 008012, 008013, 008065, + 008072, 013039, 040015 ] +"340010" = [ 001007, 002019, 001096, 025061, 005044, 005040, 001030, 004001, 004002, 004003, + 004004, 004005, 004007, 005001, 006001, 008029, 008074, 008077, 040011, 025097, + 025095, 025098, 025099, 021144, 025096, 040012, 040013, 021169, 040023, 040024, + 040025, 022151, 022162, 022163, 025160, 025133, 022156, 022164, 022165, 022166, + 021137, 021138, 022167, 021139, 021118, 021145, 021146, 021147, 022168, 022169, + 022170, 025161, 025162, 022171, 022172, 022173, 022174, 021170, 021171, 022175, + 021172, 021118, 021173, 021174, 021175, 002153, 012063, 002153, 012063, 002153, + 012063, 013090, 013091, 007002, 011097, 011098, 007002, 011095, 011096, 010096, + 010081, 010082, 010083, 010101, 025132, 025163, 025126, 025128, 025164, 010085, + 010097, 010086, 010087, 010092, 010088, 010089, 010098, 010099, 010090, 010100, + 010093, 025127, 040014, 010102 ] +"340011" = [ 001007, 002019, 001096, 025061, 005044, 005040, 001030, 004001, 004002, 004003, + 004004, 004005, 004007, 005001, 006001, 008029, 008077, 040011, 025097, 025112, + 025113, 021148, 021169, 040024, 040025, 002153, 022189, 022191, 022130, 025167, + 025166, 022190, 022131, 022132, 022133, 021183, 021184, 022134, 021185, 021118, + 021186, 021187, 021188, 002153, 012063, 002153, 012063, 013090, 013160, 007002, + 011097, 007002, 011095, 011096, 010096, 010081, 010082, 010083, 010101, 002153, + 025165, 025126, 025128, 025164, 010085, 010086, 010087, 010092, 010088, 010089, + 010098, 010099, 010090, 010100, 010093, 025127, 040014, 010102 ] +"340012" = [ 001007, 002019, 008091, 005001, 006001, 007002, 005063, 005064, 005066, 005041, + 005067, 301011, 301012, 004007, 008091, 005001, 006001, 107000, 031001, 005042, + 002153, 002104, 040028, 007024, 040027, 012063 ] +"340013" = [ 001007, 002019, 001033, 001034, 004001, 004002, 004003, 004004, 004005, 004007, + 005068, 005070, 005069, 040036, 008091, 005001, 006001, 004016, 008091, 005001, + 006001, 004016, 008091, 005001, 006001, 004016, 008091, 007071, 005021, 007021, + 040035, 008091, 007071, 005021, 007021, 040035, 008091, 007071, 005021, 007021, + 040035, 040029, 040030, 040031, 025187, 010004, 012001, 040037, 040032, 040033, + 040034 ] +"340015" = [ 001007, 002019, 301011, 301012, 004007, 201133, 005041, 201000, 201130, 005043, + 201000, 207001, 005002, 006002, 207000, 040027, 013040, 021120, 207003, 102003, + 002186, 013155, 207000, 033003 ] +"340016" = [ 301129, 301130, 301131, 202134, 007001, 202000, 101000, 031002, 340002, 101000, + 031002, 304039, 101000, 031002, 304040 ] +"340017" = [ 001007, 002019, 005044, 001096, 005040, 001040, 025061, 025182, 025183, 025181, + 025184, 301011, 301013, 004007, 301021, 005063, 005064, 005066, 010081, 010082, + 008075, 025090, 008029, 201137, 202129, 006021, 202000, 201000, 010087, 025096, + 040012, 008077, 104002, 002153, 012063, 012065, 040013, 007002, 011098, 013090, + 013091, 025164, 025095, 040023, 025113, 008074, 025190, 021144, 025191, 021143, + 013055, 021169, 010101, 015012, 007002, 011097, 040024, 007002, 025126, 025128, + 040011, 007002, 011095, 011096, 010088, 010089, 010090, 010092, 010093, 010098, + 010099, 010100, 025127, 040014, 010085, 010086, 010096, 010103, 010102, 022080, + 008076, 022189, 022191, 022130, 025165, 025166, 025167, 021183, 021184, 022134, + 021122, 022190, 022131, 022132, 022133, 021186, 021187, 021188, 021185, 025112, + 025113, 033092, 008076, 022189, 022191, 022130, 025165, 025166, 025167, 021183, + 021184, 022134, 021122, 022190, 022131, 022132, 022133, 021186, 021187, 021188, + 021185, 025112, 025113, 033092, 025190, 011097, 013090, 013091, 021143, 021184, + 025128, 025163, 025164, 010102, 022189, 022191, 022130, 025166, 021183, 021184, + 022134, 022190, 022131, 022132, 025112, 025113, 033092, 008049, 022080, 134021, + 301011, 301013, 004007, 301021, 010081, 010082, 008029, 201137, 202129, 006021, + 202000, 201000, 025191, 021071, 010085, 040011, 010102, 022189, 022146, 025165, + 025167, 021183, 022190, 022133, 021177, 021185, 013164, 202126, 022046, 202000, + 013117, 013013, 025112, 033092 ] +"340018" = [ 301129, 301130, 301131, 007072, 040074, 104000, 031002, 201136, 005042, 201000, + 014044 ] +"340019" = [ 340020, 340021, 340022, 340023 ] +"340020" = [ 001007, 002019, 005044, 001096, 005040, 001040, 025061, 025182, 025183, 025181, + 025184, 008075, 025090, 301011, 301013, 004007, 301021, 005063, 005064, 005066, + 010081, 010082 ] +"340021" = [ 040012, 008077, 104000, 031001, 002153, 012063, 012065, 040013, 007002, 011098 + ] +"340022" = [ 008029, 201137, 202129, 006021, 202000, 201000, 010087, 040024, 007002, 025126, + 025128, 040011, 007002, 011095, 011096, 010088, 010089, 010090, 010092, 010093, + 010098, 010099, 010100, 025127, 040014, 001030, 010085, 001030, 010085, 010086, + 010096, 010103, 021169, 013055, 025165 ] +"340023" = [ 025095, 040023, 008074, 340024, 340024, 340024, 340025 ] +"340024" = [ 022080, 008076, 025190, 010102, 022189, 022191, 022130, 025167, 025163, 015012, + 025164, 013090, 013091, 025166, 007002, 011097, 021183, 021184, 022134, 021122, + 021186, 021187, 021188, 201131, 021185, 201000, 022179, 022131, 022132, 022133, + 021144, 025191, 021143, 010101, 025112, 025113, 033092 ] +"340025" = [ 008049, 022080, 008076, 025190, 146021, 301011, 301013, 004007, 301021, 010081, + 010082, 008029, 201137, 202129, 006021, 202000, 201000, 025191, 021071, 001030, + 010085, 001030, 010085, 040011, 010088, 010089, 025164, 007002, 025126, 025128, + 010102, 022189, 025167, 025163, 021183, 201131, 021185, 201000, 022179, 022133, + 022146, 021189, 013163, 202126, 022046, 202000, 013117, 013013, 025112, 025113, + 033092 ] +"340026" = [ 001007, 002019, 001033, 001034, 301011, 301013, 301021, 010033, 008043, 025139, + 002155, 112000, 031002, 007071, 033003, 201136, 015074, 015066, 015075, 015068, + 201000, 015076, 015070, 015078, 015072, 107003, 005069, 104000, 031002, 201135, + 015073, 015064, 201000 ] +"340027" = [ 001007, 002019, 002020, 005077, 006043, 001033, 001034, 301011, 301012, 004007, + 301021, 033003, 008090, 020140, 008090, 020141 ] +"340028" = [ 008070, 001033, 001034, 001007, 002019, 005040, 025075, 005041, 005043, 301011, + 301013, 005001, 006001, 201133, 007071, 201000, 007024, 005021, 007025, 005022, + 110000, 031001, 005042, 033002, 025076, 025077, 025078, 201143, 012163, 201000, + 012158, 012159 ] From 5a932544af1d56e945d19c8de95c2ecc031546cb Mon Sep 17 00:00:00 2001 From: Eugen Betke Date: Tue, 2 Jul 2024 19:29:17 +0000 Subject: [PATCH 06/17] ECC-1855: Fix step initialisation --- src/accessor/grib_accessor_class_g2end_step.cc | 2 +- tests/grib_sub_hourly.sh | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/accessor/grib_accessor_class_g2end_step.cc b/src/accessor/grib_accessor_class_g2end_step.cc index 7d3c2c225..78fdfb129 100644 --- a/src/accessor/grib_accessor_class_g2end_step.cc +++ b/src/accessor/grib_accessor_class_g2end_step.cc @@ -309,7 +309,7 @@ static int unpack_multiple_time_ranges_double_(grib_accessor* a, double* val, si long the_coded_unit = arr_coded_unit[i]; long the_coded_time_range = arr_coded_time_range[i]; - eccodes::Step time_range{ the_coded_unit, the_coded_time_range }; + eccodes::Step time_range{the_coded_time_range, the_coded_unit}; *val = (start_step + time_range).value(eccodes::Unit(step_units)); return GRIB_SUCCESS; diff --git a/tests/grib_sub_hourly.sh b/tests/grib_sub_hourly.sh index a49a90a6a..0f543cb79 100755 --- a/tests/grib_sub_hourly.sh +++ b/tests/grib_sub_hourly.sh @@ -62,6 +62,11 @@ fi instantaneous_field=$data_dir/reduced_gaussian_surface.grib2 accumulated_field=$data_dir/reduced_gaussian_sub_area.grib2 +# ECC-18XX: Bad step initialisatino +${tools_dir}/grib_set -s productDefinitionTemplateNumber=11,forecastTime=2184,indicatorOfUnitForForecastTime=1,lengthOfTimeRange=720,indicatorOfUnitForTimeRange=1,typeOfTimeIncrement=2,numberOfTimeRange=2 $accumulated_field $temp +${tools_dir}/grib_ls $temp +grib_check_key_equals $temp "-p stepRange" "2184-2904" + # ECC-1228: Changing template with negative forecast time ${tools_dir}/grib_set -s stepRange=-48s--24s $accumulated_field $temp ${tools_dir}/grib_set -s productDefinitionTemplateNumber=8 $temp $temp2 From 72801210940201ee84097d64a5d5aaa9e70f9c21 Mon Sep 17 00:00:00 2001 From: shahramn Date: Thu, 4 Jul 2024 12:15:39 +0100 Subject: [PATCH 07/17] ECC-1859: Compile error: grib_accessor_class_data_g2bifourier_packing.cc --- src/accessor/grib_accessor_class_data_g2bifourier_packing.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/accessor/grib_accessor_class_data_g2bifourier_packing.cc b/src/accessor/grib_accessor_class_data_g2bifourier_packing.cc index a014ef3c2..0a6092424 100644 --- a/src/accessor/grib_accessor_class_data_g2bifourier_packing.cc +++ b/src/accessor/grib_accessor_class_data_g2bifourier_packing.cc @@ -11,6 +11,7 @@ #include "grib_accessor_class_data_g2bifourier_packing.h" #include "grib_scaling.h" +#include grib_accessor_class_data_g2bifourier_packing_t _grib_accessor_class_data_g2bifourier_packing{"data_g2bifourier_packing"}; grib_accessor_class* grib_accessor_class_data_g2bifourier_packing = &_grib_accessor_class_data_g2bifourier_packing; From 53e202a2ee2b9949feaf3adb0db69b6db89f6448 Mon Sep 17 00:00:00 2001 From: shahramn Date: Thu, 4 Jul 2024 15:54:59 +0100 Subject: [PATCH 08/17] ECC-1860: Definition language: Add 'isnot' operator for strings --- src/eccodes_prototypes.h | 2 +- src/grib_expression_class_string_compare.cc | 19 +- src/grib_lex.cc | 1471 +++++------ src/grib_yacc.cc | 2559 ++++++++++--------- src/grib_yacc.h | 20 +- src/gribl.l | 33 +- src/griby.y | 4 +- src/makeyacc | 7 + tests/grib_filter.sh | 4 + 9 files changed, 2083 insertions(+), 2036 deletions(-) diff --git a/src/eccodes_prototypes.h b/src/eccodes_prototypes.h index ab2d4531e..9bceeb202 100644 --- a/src/eccodes_prototypes.h +++ b/src/eccodes_prototypes.h @@ -757,7 +757,7 @@ grib_expression* new_is_in_dict_expression(grib_context* c, const char* name, co grib_expression* new_true_expression(grib_context* c); /* grib_expression_class_string_compare.cc */ -grib_expression* new_string_compare_expression(grib_context* c, grib_expression* left, grib_expression* right); +grib_expression* new_string_compare_expression(grib_context* c, grib_expression* left, grib_expression* right, int eq); /* grib_expression_class_unop.cc */ grib_expression* new_unop_expression(grib_context* c, grib_unop_long_proc long_func, grib_unop_double_proc double_func, grib_expression* exp); diff --git a/src/grib_expression_class_string_compare.cc b/src/grib_expression_class_string_compare.cc index 421669aca..3003b5ef6 100644 --- a/src/grib_expression_class_string_compare.cc +++ b/src/grib_expression_class_string_compare.cc @@ -22,7 +22,8 @@ IMPLEMENTS = print IMPLEMENTS = add_dependency MEMBERS = grib_expression *left - MEMBERS = grib_expression *right + MEMBERS = grib_expression *right + MEMBERS = int eq END_CLASS_DEF */ @@ -50,6 +51,7 @@ typedef struct grib_expression_string_compare{ /* Members defined in string_compare */ grib_expression *left; grib_expression *right; + int eq; } grib_expression_string_compare; @@ -110,7 +112,11 @@ static int evaluate_long(grib_expression* g, grib_handle* h, long* lres) return ret; } - *lres = (grib_inline_strcmp(v1, v2) == 0); + if (e->eq) // IS operator + *lres = (grib_inline_strcmp(v1, v2) == 0); + else // ISNOT operator + *lres = (grib_inline_strcmp(v1, v2) != 0); + return GRIB_SUCCESS; } @@ -147,12 +153,13 @@ static void add_dependency(grib_expression* g, grib_accessor* observer) } grib_expression* new_string_compare_expression(grib_context* c, - grib_expression* left, grib_expression* right) + grib_expression* left, grib_expression* right, int eq) { grib_expression_string_compare* e = (grib_expression_string_compare*)grib_context_malloc_clear_persistent(c, sizeof(grib_expression_string_compare)); - e->base.cclass = grib_expression_class_string_compare; - e->left = left; - e->right = right; + e->base.cclass = grib_expression_class_string_compare; + e->left = left; + e->right = right; + e->eq = eq; return (grib_expression*)e; } diff --git a/src/grib_lex.cc b/src/grib_lex.cc index f4057b7a0..8efe0e58d 100644 --- a/src/grib_lex.cc +++ b/src/grib_lex.cc @@ -353,8 +353,8 @@ static void grib_yynoreturn grib_yy_fatal_error ( const char* msg ); (grib_yy_hold_char) = *grib_yy_cp; \ *grib_yy_cp = '\0'; \ (grib_yy_c_buf_p) = grib_yy_cp; -#define YY_NUM_RULES 138 -#define YY_END_OF_BUFFER 139 +#define YY_NUM_RULES 139 +#define YY_END_OF_BUFFER 140 /* This struct is not used in this scanner, but its presence is necessary. */ struct grib_yy_trans_info @@ -362,95 +362,95 @@ struct grib_yy_trans_info flex_int32_t grib_yy_verify; flex_int32_t grib_yy_nxt; }; -static const flex_int16_t grib_yy_accept[798] = +static const flex_int16_t grib_yy_accept[801] = { 0, - 135, 135, 139, 137, 135, 136, 12, 126, 134, 137, - 137, 137, 137, 129, 5, 137, 3, 128, 128, 128, - 127, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 137, 18, 135, 6, 0, 14, 130, 132, 0, - 0, 131, 129, 128, 128, 4, 7, 1, 2, 0, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 23, 128, 10, 128, 128, 128, 128, 128, 128, + 136, 136, 140, 138, 136, 137, 13, 127, 135, 138, + 138, 138, 138, 130, 5, 138, 3, 129, 129, 129, + 128, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 138, 19, 136, 6, 0, 15, 131, 133, 0, + 0, 132, 130, 129, 129, 4, 7, 1, 2, 0, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 24, 129, 10, 129, 129, 129, 129, 129, 129, - 128, 128, 128, 128, 128, 15, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 16, 0, 0, 0, 0, - 0, 0, 133, 131, 0, 128, 128, 0, 0, 128, - 0, 128, 24, 128, 13, 128, 128, 128, 8, 128, - 66, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 35, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 128, 98, 128, 128, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 11, 128, 128, 52, 128, 128, 128, 128, + 129, 129, 129, 129, 129, 16, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 17, 0, 0, 0, 0, + 0, 0, 134, 132, 0, 129, 129, 0, 0, 129, + 0, 129, 25, 129, 14, 129, 129, 129, 8, 129, + 67, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 36, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 99, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 12, 129, 129, 53, 129, 129, 129, - 128, 128, 112, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 133, 0, 132, 0, 0, 0, 0, 0, 131, - 128, 128, 128, 128, 128, 128, 111, 28, 128, 115, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 89, - 128, 25, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 67, 128, 128, 30, 128, 128, 128, 128, 48, 128, - 128, 128, 128, 128, 128, 17, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 128, 128, 124, 128, 128, + 129, 129, 129, 113, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 134, 0, 133, 0, 0, 0, 0, 0, + 132, 129, 129, 129, 129, 129, 129, 112, 29, 129, + 116, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 90, 129, 26, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 68, 129, 129, 31, 129, 129, 129, 129, + 49, 129, 129, 129, 129, 129, 129, 18, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 125, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 114, 128, 128, 128, 128, 0, 0, 0, 0, 0, - 0, 131, 128, 128, 128, 56, 128, 27, 128, 128, - 20, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 44, 128, 128, 128, 128, 46, 128, 128, - 128, 128, 128, 100, 104, 108, 128, 128, 128, 128, - 29, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 50, 128, 123, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 97, 128, 128, 31, 121, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 115, 129, 129, 129, 129, 0, 0, 0, + 0, 0, 0, 132, 129, 129, 129, 57, 129, 28, + 129, 129, 21, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 45, 129, 129, 129, 129, 47, + 129, 129, 129, 129, 129, 101, 105, 109, 129, 129, + 11, 129, 129, 30, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 51, 129, 124, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 98, 129, - 0, 0, 0, 0, 128, 0, 0, 128, 122, 85, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 74, 128, 128, 128, 128, 40, 128, 91, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 21, 128, 45, 128, 128, 70, 128, 128, 128, 128, - 9, 128, 128, 128, 128, 128, 75, 76, 128, 128, - 128, 38, 128, 128, 19, 116, 128, 128, 128, 128, - 128, 99, 103, 107, 128, 128, 0, 0, 0, 0, - 0, 128, 128, 93, 128, 128, 128, 118, 128, 128, - 96, 117, 128, 128, 128, 68, 128, 128, 128, 128, + 129, 32, 122, 0, 0, 0, 0, 129, 0, 0, + 129, 123, 86, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 75, 129, 129, 129, 129, 41, + 129, 92, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 22, 129, 46, 129, 129, 71, 129, + 129, 129, 129, 9, 129, 129, 129, 129, 129, 76, + 77, 129, 129, 129, 39, 129, 129, 20, 117, 129, + 129, 129, 129, 129, 100, 104, 108, 129, 129, 0, + 0, 0, 0, 0, 129, 129, 94, 129, 129, 129, + 119, 129, 129, 97, 118, 129, 129, 129, 69, 129, - 128, 128, 125, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 54, 65, 87, 90, 128, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 34, 128, 128, 128, 57, 128, 0, - 0, 128, 128, 128, 128, 59, 128, 128, 128, 128, - 128, 128, 128, 128, 36, 128, 128, 128, 128, 128, - 128, 128, 128, 64, 128, 128, 128, 128, 128, 95, - 128, 128, 58, 128, 128, 128, 128, 128, 128, 32, - 128, 128, 128, 128, 128, 128, 26, 128, 39, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 37, + 129, 129, 129, 129, 129, 126, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 55, 66, 88, + 91, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 35, 129, 129, 129, + 58, 129, 0, 0, 129, 129, 129, 129, 60, 129, + 129, 129, 129, 129, 129, 129, 129, 37, 129, 129, + 129, 129, 129, 129, 129, 129, 65, 129, 129, 129, + 129, 129, 96, 129, 129, 59, 129, 129, 129, 129, + 129, 129, 33, 129, 129, 129, 129, 129, 129, 27, + 129, 40, 129, 129, 129, 129, 129, 129, 129, 129, - 128, 128, 128, 128, 128, 128, 83, 128, 62, 22, - 128, 47, 49, 128, 86, 128, 128, 128, 128, 128, - 128, 128, 128, 80, 60, 128, 128, 128, 128, 128, - 128, 94, 128, 128, 128, 128, 128, 128, 120, 128, - 128, 128, 78, 77, 82, 128, 128, 128, 128, 128, - 113, 128, 128, 128, 128, 79, 128, 128, 128, 128, - 128, 128, 42, 63, 128, 128, 128, 128, 128, 128, - 128, 69, 128, 128, 128, 128, 128, 41, 61, 128, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 55, 128, 128, 128, 128, 128, 128, + 129, 129, 38, 129, 129, 129, 129, 129, 129, 84, + 129, 63, 23, 129, 48, 50, 129, 87, 129, 129, + 129, 129, 129, 129, 129, 129, 81, 61, 129, 129, + 129, 129, 129, 129, 95, 129, 129, 129, 129, 129, + 129, 121, 129, 129, 129, 79, 78, 83, 129, 129, + 129, 129, 129, 114, 129, 129, 129, 129, 80, 129, + 129, 129, 129, 129, 129, 43, 64, 129, 129, 129, + 129, 129, 129, 129, 70, 129, 129, 129, 129, 129, + 42, 62, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 56, 129, 129, 129, - 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 51, 128, 128, 128, 128, 128, 128, 128, - 92, 128, 119, 128, 128, 128, 128, 128, 128, 128, - 84, 128, 128, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 53, 128, 33, 128, 128, - 128, 128, 88, 128, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 43, 128, 72, 128, 128, 128, 128, - 128, 128, 128, 128, 128, 73, 128, 128, 128, 128, - 128, 128, 128, 128, 102, 106, 110, 81, 128, 128, - 128, 128, 101, 105, 109, 71, 0 + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 52, 129, 129, 129, 129, + 129, 129, 129, 93, 129, 120, 129, 129, 129, 129, + 129, 129, 129, 85, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 54, 129, + 34, 129, 129, 129, 129, 89, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 44, 129, 73, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 74, 129, + 129, 129, 129, 129, 129, 129, 129, 103, 107, 111, + 82, 129, 129, 129, 129, 102, 106, 110, 72, 0 } ; @@ -496,197 +496,197 @@ static const YY_CHAR grib_yy_meta[57] = 8, 8, 8, 8, 1, 1 } ; -static const flex_int16_t grib_yy_base[828] = +static const flex_int16_t grib_yy_base[831] = { 0, - 0, 0, 1944, 1945, 1941, 1945, 1921, 1945, 44, 1934, - 51, 58, 0, 69, 68, 1919, 1918, 81, 96, 76, - 1945, 75, 92, 94, 102, 109, 66, 119, 117, 128, + 0, 0, 1950, 1951, 1947, 1951, 1927, 1951, 44, 1940, + 51, 58, 0, 69, 68, 1925, 1924, 81, 96, 76, + 1951, 75, 92, 94, 102, 109, 66, 119, 117, 128, 55, 142, 105, 134, 78, 141, 104, 149, 155, 167, - 157, 1883, 1945, 1935, 1945, 199, 1945, 210, 135, 222, - 234, 170, 245, 257, 273, 1945, 1945, 1945, 1945, 1914, - 1925, 1908, 98, 132, 169, 196, 184, 231, 154, 240, + 157, 1889, 1951, 1941, 1951, 199, 1951, 210, 135, 222, + 234, 170, 245, 257, 273, 1951, 1951, 1951, 1951, 1920, + 1931, 1914, 98, 132, 169, 196, 184, 231, 154, 240, 242, 251, 254, 252, 268, 171, 122, 258, 267, 273, 270, 207, 275, 283, 294, 279, 280, 281, 291, 290, - 294, 1907, 293, 305, 296, 308, 310, 297, 311, 312, + 294, 1913, 293, 305, 296, 308, 310, 297, 311, 312, - 313, 314, 319, 322, 321, 1906, 324, 320, 327, 328, - 341, 343, 206, 332, 344, 339, 348, 353, 352, 357, - 362, 354, 365, 363, 364, 1945, 0, 391, 396, 1910, - 398, 401, 414, 410, 401, 1920, 426, 438, 445, 455, - 0, 449, 1903, 450, 1902, 411, 386, 451, 1901, 453, - 1900, 454, 455, 457, 440, 458, 463, 465, 395, 466, - 469, 470, 471, 474, 475, 1899, 476, 478, 495, 484, - 480, 409, 489, 482, 486, 499, 513, 488, 500, 510, - 509, 511, 507, 514, 516, 522, 520, 527, 524, 525, - 528, 537, 540, 529, 534, 535, 543, 544, 550, 548, + 313, 319, 314, 321, 324, 1912, 322, 334, 326, 327, + 345, 329, 206, 346, 347, 349, 350, 354, 342, 361, + 358, 355, 369, 366, 367, 1951, 0, 394, 399, 1916, + 401, 405, 418, 389, 405, 1926, 430, 442, 449, 459, + 0, 371, 1909, 453, 1908, 415, 390, 444, 1907, 455, + 1906, 456, 457, 458, 460, 463, 464, 467, 465, 470, + 469, 471, 474, 472, 477, 1905, 479, 412, 496, 481, + 483, 413, 488, 485, 490, 486, 511, 505, 506, 508, + 504, 510, 514, 515, 516, 517, 521, 522, 524, 527, + 533, 534, 535, 536, 537, 540, 546, 548, 547, 549, - 554, 549, 552, 563, 553, 561, 564, 551, 566, 568, - 570, 573, 574, 577, 575, 578, 579, 582, 580, 576, - 617, 624, 631, 638, 645, 652, 663, 600, 663, 675, - 687, 1898, 659, 669, 658, 670, 1897, 1896, 682, 1895, - 683, 684, 586, 685, 686, 688, 690, 694, 696, 1894, - 697, 1893, 699, 701, 716, 718, 719, 706, 705, 713, - 716, 715, 710, 718, 735, 746, 748, 733, 734, 597, - 748, 737, 738, 1892, 740, 741, 743, 746, 1891, 745, - 747, 749, 754, 763, 759, 1890, 750, 755, 762, 766, - 772, 767, 770, 777, 775, 778, 784, 1889, 779, 780, + 551, 550, 552, 555, 557, 560, 564, 566, 567, 568, + 571, 572, 574, 573, 577, 576, 579, 583, 580, 585, + 582, 619, 626, 633, 640, 647, 654, 665, 669, 667, + 677, 689, 1904, 661, 586, 671, 672, 1903, 1902, 593, + 1901, 674, 686, 687, 688, 689, 690, 691, 692, 695, + 1900, 699, 1899, 697, 700, 717, 718, 720, 706, 705, + 710, 716, 717, 708, 720, 737, 743, 747, 734, 735, + 737, 736, 751, 740, 741, 1898, 743, 745, 746, 748, + 1897, 750, 753, 749, 765, 766, 762, 1896, 757, 755, + 758, 770, 773, 775, 779, 780, 783, 785, 782, 1893, - 781, 788, 783, 782, 786, 795, 801, 815, 797, 806, - 1888, 810, 812, 1903, 837, 833, 845, 853, 0, 857, - 857, 865, 1900, 877, 814, 1881, 862, 1880, 859, 873, - 1875, 872, 874, 860, 875, 823, 876, 877, 879, 885, - 886, 887, 1872, 904, 906, 907, 893, 1871, 894, 895, - 897, 898, 902, 919, 921, 922, 908, 907, 910, 933, - 1867, 919, 921, 922, 927, 929, 930, 934, 937, 936, - 938, 939, 945, 951, 946, 1866, 947, 953, 955, 948, - 952, 964, 940, 969, 970, 972, 975, 977, 976, 979, - 978, 980, 997, 1002, 1003, 1877, 995, 984, 1859, 1858, + 784, 786, 787, 790, 789, 788, 791, 795, 799, 828, + 808, 803, 1890, 802, 809, 1905, 842, 827, 851, 838, + 0, 862, 862, 869, 1900, 879, 873, 1881, 865, 1880, + 864, 876, 1876, 877, 878, 827, 879, 880, 881, 882, + 884, 889, 890, 891, 1875, 908, 909, 911, 896, 1870, + 901, 898, 903, 902, 906, 925, 926, 928, 923, 911, + 1868, 914, 933, 1867, 920, 925, 934, 936, 926, 935, + 939, 940, 941, 942, 945, 950, 949, 951, 1864, 952, + 947, 962, 956, 967, 969, 973, 970, 976, 977, 978, + 981, 980, 983, 985, 984, 1005, 1006, 1009, 1879, 996, - 1013, 1020, 1028, 1032, 1032, 1044, 1053, 1028, 1855, 1854, - 1047, 1048, 1029, 1049, 1050, 1052, 1054, 1053, 1057, 1059, - 1060, 1848, 1061, 1078, 1080, 1081, 1847, 1066, 1843, 1071, - 998, 1070, 1089, 1090, 1091, 1079, 1081, 1083, 1082, 1101, - 1842, 1086, 1837, 1092, 1093, 1835, 1094, 1096, 1097, 1099, - 1834, 1100, 1108, 1110, 1111, 1118, 1830, 1828, 1120, 1112, - 1115, 1827, 1116, 1121, 1824, 1823, 1122, 1131, 1126, 1132, - 1127, 1145, 1151, 1159, 1144, 1146, 1180, 1188, 1167, 1195, - 1203, 0, 1210, 1818, 1147, 1204, 1153, 1154, 1205, 1207, - 1816, 1815, 1159, 1206, 1208, 1809, 1226, 1225, 1227, 1213, + 992, 1857, 1856, 1022, 1028, 1036, 1024, 1040, 1052, 1061, + 1024, 1852, 1851, 1055, 1056, 1009, 1035, 1057, 1060, 1061, + 1062, 1064, 1065, 1068, 1846, 1067, 1086, 1087, 1088, 1844, + 1073, 1843, 1077, 1079, 1078, 1096, 1097, 1098, 1084, 1089, + 1095, 1087, 1107, 1839, 1092, 1837, 1101, 1105, 1836, 1096, + 1103, 1108, 1110, 1833, 1116, 1104, 1001, 1117, 1121, 1832, + 1827, 1122, 1126, 1123, 1825, 1118, 1128, 1824, 1818, 1127, + 1133, 1135, 1138, 1142, 1160, 1162, 1163, 1151, 1152, 1166, + 1188, 1177, 1195, 1203, 0, 1210, 1816, 1204, 1206, 1165, + 1168, 1205, 1209, 1815, 1812, 1207, 1208, 1210, 1811, 1228, - 1214, 1216, 1807, 1231, 1233, 1234, 1219, 1224, 1223, 1152, - 1225, 1242, 1232, 1227, 1236, 1806, 1803, 1802, 1242, 1243, - 1244, 1250, 1239, 1251, 1256, 1258, 1259, 1263, 1261, 1265, - 1268, 1270, 1271, 1798, 1288, 1290, 1292, 1789, 1277, 1303, - 1323, 1283, 1307, 1279, 1281, 1788, 1282, 1298, 1301, 1302, - 1319, 1321, 1301, 1321, 1784, 1318, 1338, 1339, 1341, 1328, - 1330, 1332, 1334, 1783, 1347, 1335, 1337, 1338, 1343, 1776, - 1339, 1340, 1774, 1348, 1350, 1344, 1351, 1353, 1354, 1365, - 1367, 1359, 1356, 1389, 1390, 1391, 1773, 1378, 1769, 1380, - 1383, 1384, 1381, 1386, 1388, 676, 1401, 1403, 1390, 1767, + 1227, 1231, 1216, 1217, 1218, 1807, 1235, 1236, 1241, 1227, + 1229, 1226, 1234, 1230, 1251, 1236, 1239, 1242, 1798, 1797, + 1793, 1247, 1248, 1252, 1253, 1254, 1257, 1259, 1264, 1265, + 1268, 1266, 1267, 1275, 1276, 1278, 1792, 1296, 1297, 1298, + 1785, 1283, 1310, 1318, 1315, 1285, 1316, 1317, 1783, 1318, + 1319, 1293, 1320, 1338, 1339, 1306, 1326, 1782, 1327, 1307, + 1344, 1347, 1333, 1334, 1337, 1338, 1778, 1355, 1343, 1344, + 1349, 1346, 1776, 1348, 1355, 1775, 1358, 1361, 1360, 1362, + 1364, 1363, 1284, 1365, 1372, 1369, 1384, 1389, 1392, 1772, + 1382, 1771, 1383, 1388, 1385, 1387, 1389, 1390, 1409, 1410, - 1407, 1408, 1409, 1394, 1396, 1395, 1766, 1413, 1763, 1762, - 1401, 1755, 1754, 1398, 1750, 1414, 1409, 1410, 1422, 1413, - 1425, 1433, 1427, 1748, 1747, 1450, 1451, 1452, 1437, 1438, - 1439, 1743, 1440, 1442, 1444, 1457, 1459, 1465, 1741, 1462, - 1471, 1473, 1733, 1731, 1730, 1474, 1461, 1462, 1465, 1460, - 1729, 1468, 1466, 1467, 1471, 1728, 1480, 1486, 1488, 1479, - 1486, 1485, 1727, 1721, 1492, 1504, 1510, 1513, 1514, 1515, - 1517, 1736, 1502, 1504, 1506, 1507, 1519, 1718, 1717, 1510, - 1521, 1528, 1529, 1515, 1523, 1522, 1528, 1545, 1547, 1548, - 1550, 1551, 1554, 1716, 1540, 1539, 1547, 1557, 1553, 1559, + 1412, 1397, 1764, 1415, 1416, 1417, 1405, 1411, 1412, 1763, + 1431, 1759, 1757, 1413, 1756, 1752, 1417, 1750, 1414, 1416, + 1419, 1421, 1426, 1423, 1418, 1429, 1743, 1742, 1460, 1461, + 1462, 1447, 1448, 1449, 1741, 1451, 1452, 1453, 1470, 1471, + 1474, 1738, 1472, 1475, 1482, 1737, 1736, 1735, 1483, 1461, + 1470, 1468, 1471, 1733, 1473, 1472, 1477, 1476, 1732, 1490, + 1494, 1495, 1492, 1497, 1494, 1726, 1725, 1501, 1512, 1515, + 1519, 1518, 1524, 1526, 1739, 1505, 1511, 1512, 1516, 1526, + 1721, 1720, 1519, 1530, 1536, 1537, 1529, 1532, 1535, 1537, + 1554, 1555, 1556, 1557, 1558, 1559, 1719, 1544, 1545, 1550, - 1564, 1567, 1556, 1565, 1560, 1552, 1583, 1586, 1588, 1589, - 1591, 1595, 1713, 1580, 1578, 1597, 1583, 1598, 1602, 1604, - 1712, 1585, 1711, 1589, 1600, 1603, 1606, 1610, 1611, 1616, - 1709, 1609, 1627, 1610, 1628, 1629, 1630, 1616, 1617, 1634, - 1636, 1638, 1639, 1643, 1646, 1708, 1647, 1707, 1649, 1652, - 1653, 1641, 1706, 1658, 1660, 1661, 1662, 1663, 1665, 1669, - 1672, 1673, 1674, 1654, 1676, 1294, 1678, 1679, 1682, 1688, - 1690, 1681, 1685, 1691, 1694, 1177, 1680, 1696, 1705, 1706, - 1709, 1713, 1718, 1719, 1176, 1001, 673, 497, 1708, 1716, - 1717, 1720, 372, 235, 153, 97, 1945, 1754, 1762, 1769, + 1564, 1560, 1572, 1573, 1575, 1567, 1569, 1570, 1576, 1587, + 1590, 1593, 1594, 1596, 1597, 1717, 1584, 1591, 1604, 1596, + 1608, 1609, 1614, 1716, 1594, 1715, 1602, 1605, 1615, 1616, + 1621, 1627, 1631, 1714, 1617, 1635, 1620, 1637, 1638, 1641, + 1626, 1623, 1644, 1646, 1648, 1649, 1653, 1654, 1590, 1651, + 1286, 1656, 1657, 1660, 1646, 1171, 1666, 1668, 1670, 1671, + 1673, 1675, 1677, 1682, 1683, 1686, 1170, 1687, 1053, 1684, + 1680, 1693, 1695, 1696, 1689, 1698, 1699, 1688, 969, 1700, + 1704, 1706, 1712, 1721, 1723, 1724, 1725, 839, 678, 618, + 443, 1716, 1722, 1726, 1727, 395, 235, 153, 97, 1951, - 1773, 1777, 1781, 1788, 1795, 1797, 1805, 1810, 1811, 1819, - 1824, 1828, 1830, 1837, 1845, 1849, 1856, 1861, 1866, 1868, - 1876, 1880, 1888, 1893, 1894, 1902, 1903 + 1763, 1771, 1778, 1782, 1786, 1790, 1797, 1804, 1806, 1814, + 1819, 1820, 1828, 1833, 1837, 1839, 1846, 1854, 1858, 1865, + 1870, 1875, 1877, 1885, 1889, 1897, 1902, 1903, 1911, 1912 } ; -static const flex_int16_t grib_yy_def[828] = +static const flex_int16_t grib_yy_def[831] = { 0, - 797, 1, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 798, 799, 797, 797, 797, 800, 800, 19, - 797, 19, 19, 19, 19, 19, 19, 19, 19, 19, + 800, 1, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 801, 802, 800, 800, 800, 803, 803, 19, + 800, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 797, 797, 797, 797, 797, 797, 797, 801, 802, - 797, 803, 799, 804, 804, 797, 797, 797, 797, 797, - 805, 19, 19, 19, 19, 19, 19, 19, 19, 19, + 19, 800, 800, 800, 800, 800, 800, 800, 804, 805, + 800, 806, 802, 807, 807, 800, 800, 800, 800, 800, + 808, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 805, 19, 19, 19, 19, 19, + 19, 19, 19, 19, 808, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 797, 806, 807, 808, 809, - 810, 802, 797, 803, 811, 812, 804, 797, 797, 812, - 813, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 19, 19, 19, 805, 19, - 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - - 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 814, 797, 797, 797, 797, 797, 810, 815, 797, 797, + 19, 19, 19, 19, 19, 800, 809, 810, 811, 812, + 813, 805, 800, 806, 814, 815, 807, 800, 800, 815, 816, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 805, 805, 805, 19, 19, 19, - 19, 19, 19, 19, 805, 805, 805, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 808, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 817, 814, 818, 797, 819, 820, 821, - 797, 797, 822, 816, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 805, 805, 805, 19, 19, 19, 19, - 19, 19, 19, 805, 805, 805, 19, 19, 19, 805, + 19, 817, 800, 800, 800, 800, 800, 813, 818, 800, + 800, 819, 19, 19, 19, 19, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 808, 808, 808, 19, 19, + 19, 19, 19, 19, 19, 808, 808, 808, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 805, 805, 805, 805, 19, 19, 19, 19, - 823, 797, 819, 824, 825, 797, 797, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 805, 805, 805, 19, 19, 19, 19, - 19, 19, 805, 805, 805, 19, 19, 19, 19, 805, + 19, 19, 19, 19, 19, 820, 817, 821, 800, 822, + 823, 824, 800, 800, 825, 819, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 808, 808, 808, 19, 19, + 19, 19, 19, 19, 19, 808, 808, 808, 19, 19, + 19, 19, 808, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 805, 805, 805, 19, 19, 797, 797, 826, 797, - 797, 827, 825, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 19, 805, 805, 805, 19, + 19, 19, 19, 19, 19, 808, 808, 808, 808, 19, - 19, 19, 19, 805, 805, 805, 19, 19, 19, 19, - 19, 805, 19, 19, 19, 19, 19, 19, 19, 19, + 19, 19, 19, 826, 800, 822, 827, 828, 800, 800, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 805, 805, 805, 19, 19, 797, - 797, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 805, 805, 805, 19, 19, 19, 805, 805, 805, 19, - 19, 19, 19, 19, 805, 19, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 808, 808, 808, 19, + 19, 19, 19, 19, 19, 808, 808, 808, 19, 19, + 19, 19, 808, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 805, 805, 805, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 805, 805, 805, 19, 19, - - 805, 805, 805, 19, 19, 19, 19, 805, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 805, 805, 805, 19, 19, - 19, 19, 19, 19, 19, 805, 805, 805, 19, 805, - 805, 805, 19, 19, 19, 805, 19, 19, 19, 19, - 19, 19, 19, 19, 19, 19, 805, 805, 805, 19, - 19, 19, 19, 19, 19, 805, 805, 805, 805, 805, - 805, 805, 19, 19, 19, 19, 19, 19, 19, 19, - 805, 805, 805, 19, 19, 19, 19, 805, 805, 805, - 805, 805, 805, 19, 19, 19, 19, 805, 19, 805, + 19, 19, 19, 19, 808, 808, 808, 19, 19, 800, + 800, 829, 800, 800, 830, 828, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 19, 808, - 805, 805, 19, 19, 19, 19, 805, 805, 805, 805, - 805, 805, 19, 19, 19, 805, 19, 805, 805, 805, - 19, 19, 19, 19, 805, 805, 805, 805, 805, 805, - 19, 19, 805, 19, 805, 805, 805, 19, 19, 805, - 805, 805, 805, 805, 805, 19, 805, 19, 805, 805, - 805, 19, 19, 805, 805, 805, 805, 805, 805, 805, - 805, 805, 805, 19, 805, 805, 805, 805, 805, 805, - 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, - 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, - 805, 805, 805, 805, 805, 805, 0, 797, 797, 797, + 808, 808, 19, 19, 19, 19, 808, 808, 808, 19, + 19, 19, 19, 19, 808, 19, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 808, 808, 808, + 19, 19, 800, 800, 19, 19, 19, 19, 19, 19, + 19, 19, 19, 808, 808, 808, 19, 19, 19, 808, + 808, 808, 19, 19, 19, 19, 19, 808, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 808, 808, 808, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 808, 808, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797 + 808, 19, 19, 808, 808, 808, 19, 19, 19, 19, + 808, 19, 19, 19, 19, 19, 19, 19, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 808, 808, + 808, 19, 19, 19, 19, 19, 19, 19, 808, 808, + 808, 19, 808, 808, 808, 19, 19, 19, 808, 19, + 19, 19, 19, 19, 19, 19, 19, 19, 19, 808, + 808, 808, 19, 19, 19, 19, 19, 19, 808, 808, + 808, 808, 808, 808, 808, 19, 19, 19, 19, 19, + 19, 19, 19, 808, 808, 808, 19, 19, 19, 19, + 808, 808, 808, 808, 808, 808, 19, 19, 19, 19, + + 808, 19, 808, 808, 808, 19, 19, 19, 19, 808, + 808, 808, 808, 808, 808, 19, 19, 19, 808, 19, + 808, 808, 808, 19, 19, 19, 19, 808, 808, 808, + 808, 808, 808, 19, 19, 808, 19, 808, 808, 808, + 19, 19, 808, 808, 808, 808, 808, 808, 19, 808, + 19, 808, 808, 808, 19, 19, 808, 808, 808, 808, + 808, 808, 808, 808, 808, 808, 19, 808, 808, 808, + 808, 808, 808, 808, 808, 808, 808, 808, 808, 808, + 808, 808, 808, 808, 808, 808, 808, 808, 808, 808, + 808, 808, 808, 808, 808, 808, 808, 808, 808, 0, + + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800 } ; -static const flex_int16_t grib_yy_nxt[2002] = +static const flex_int16_t grib_yy_nxt[2008] = { 0, 4, 5, 6, 7, 8, 9, 10, 8, 11, 11, 12, 13, 14, 14, 14, 14, 14, 14, 14, 15, @@ -714,7 +714,7 @@ static const flex_int16_t grib_yy_nxt[2002] = 123, 46, 46, 46, 46, 46, 46, 46, 51, 51, 52, 62, 48, 48, 48, 48, 48, 48, 48, 146, 145, 62, 62, 128, 130, 130, 130, 130, 130, 130, - 130, 166, 131, 205, 60, 128, 133, 133, 133, 133, + 130, 166, 131, 206, 60, 128, 133, 133, 133, 133, 133, 133, 133, 51, 51, 52, 62, 53, 53, 53, 53, 53, 53, 53, 147, 62, 60, 62, 55, 136, 136, 136, 136, 136, 136, 136, 62, 62, 148, 62, @@ -724,194 +724,194 @@ static const flex_int16_t grib_yy_nxt[2002] = 62, 154, 156, 60, 62, 62, 62, 162, 62, 163, 157, 158, 164, 159, 168, 62, 62, 165, 62, 62, 167, 62, 62, 169, 171, 173, 176, 170, 172, 175, - 62, 179, 174, 62, 178, 62, 62, 62, 62, 62, - 182, 177, 181, 180, 62, 62, 62, 62, 189, 62, - 190, 191, 62, 62, 196, 184, 185, 62, 183, 195, - 187, 188, 194, 186, 62, 192, 62, 198, 62, 62, - 193, 206, 199, 62, 197, 207, 202, 62, 62, 62, - 209, 60, 62, 200, 201, 208, 212, 62, 62, 62, - 62, 203, 210, 213, 211, 204, 216, 215, 218, 138, + 62, 180, 174, 62, 178, 62, 62, 62, 62, 62, + 183, 177, 182, 181, 62, 191, 62, 62, 179, 62, + 192, 62, 62, 190, 62, 185, 186, 196, 184, 62, + 188, 189, 203, 187, 193, 195, 199, 62, 197, 194, + 62, 62, 62, 198, 62, 62, 200, 204, 208, 62, + 62, 205, 210, 62, 212, 207, 62, 201, 202, 214, + 213, 62, 62, 211, 62, 209, 62, 215, 216, 233, - 138, 214, 219, 220, 223, 223, 225, 225, 226, 229, - 229, 62, 217, 130, 130, 130, 130, 130, 130, 130, - 62, 131, 51, 51, 52, 235, 133, 133, 133, 133, - 133, 133, 133, 228, 62, 60, 62, 128, 136, 136, - 136, 136, 136, 136, 136, 228, 234, 260, 246, 128, - 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, - 222, 222, 222, 222, 60, 62, 141, 140, 140, 140, - 140, 140, 140, 140, 62, 62, 62, 232, 62, 62, - 62, 233, 62, 62, 239, 237, 236, 241, 62, 238, - 62, 62, 240, 242, 62, 62, 62, 247, 244, 62, + 217, 219, 138, 138, 60, 220, 221, 224, 224, 226, + 226, 227, 229, 230, 230, 62, 218, 130, 130, 130, + 130, 130, 130, 130, 229, 131, 51, 51, 52, 236, + 133, 133, 133, 133, 133, 133, 133, 62, 62, 60, + 62, 128, 136, 136, 136, 136, 136, 136, 136, 255, + 235, 261, 60, 128, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 60, 62, + 141, 140, 140, 140, 140, 140, 140, 140, 62, 237, + 62, 62, 62, 62, 234, 62, 240, 238, 62, 62, + 62, 239, 62, 241, 62, 62, 62, 62, 243, 62, - 62, 62, 249, 62, 60, 62, 60, 62, 243, 62, - 252, 62, 245, 62, 62, 254, 250, 248, 262, 258, - 253, 263, 251, 261, 62, 62, 265, 268, 266, 259, - 267, 269, 62, 255, 62, 62, 62, 256, 62, 62, - 264, 62, 257, 271, 272, 62, 270, 62, 273, 62, - 62, 275, 62, 62, 62, 274, 276, 277, 279, 62, - 62, 282, 62, 280, 283, 62, 284, 278, 62, 62, - 286, 281, 285, 62, 62, 62, 62, 62, 62, 62, - 287, 295, 289, 288, 291, 293, 62, 290, 62, 62, - 300, 62, 292, 62, 296, 62, 297, 294, 62, 62, + 245, 248, 62, 250, 62, 60, 62, 242, 62, 244, + 62, 62, 253, 62, 246, 62, 259, 249, 247, 251, + 252, 263, 262, 254, 266, 264, 267, 265, 268, 62, + 62, 62, 260, 62, 256, 62, 62, 273, 257, 62, + 62, 62, 62, 258, 269, 274, 62, 62, 270, 62, + 271, 275, 62, 277, 272, 281, 279, 278, 62, 62, + 62, 62, 62, 276, 286, 62, 282, 284, 287, 280, + 285, 62, 62, 62, 62, 62, 62, 62, 288, 283, + 62, 295, 62, 293, 297, 62, 289, 291, 298, 62, + 292, 62, 62, 62, 290, 294, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 298, 62, 321, 321, - 299, 62, 304, 301, 307, 303, 302, 306, 310, 309, - 305, 312, 62, 308, 313, 311, 60, 333, 359, 314, - 314, 314, 314, 314, 314, 314, 222, 222, 222, 222, - 222, 222, 222, 224, 224, 224, 224, 224, 224, 224, - 224, 224, 224, 224, 224, 224, 224, 227, 227, 227, - 227, 227, 227, 227, 316, 316, 316, 316, 316, 316, - 316, 317, 317, 318, 319, 230, 230, 230, 230, 230, - 230, 230, 60, 62, 62, 60, 320, 230, 230, 230, - 230, 230, 230, 230, 62, 62, 60, 328, 320, 323, + 296, 62, 62, 299, 62, 62, 302, 62, 62, 300, + 62, 62, 301, 306, 309, 303, 308, 305, 62, 304, + 311, 307, 312, 313, 310, 332, 314, 60, 60, 329, + 315, 316, 316, 316, 316, 316, 316, 316, 223, 223, + 223, 223, 223, 223, 223, 225, 225, 225, 225, 225, + 225, 225, 225, 225, 225, 225, 225, 225, 225, 228, + 228, 228, 228, 228, 228, 228, 318, 318, 318, 318, + 318, 318, 318, 319, 319, 320, 321, 323, 323, 231, + 231, 231, 231, 231, 231, 231, 62, 60, 322, 231, + 231, 231, 231, 231, 231, 231, 62, 62, 60, 62, - 323, 323, 323, 323, 323, 323, 326, 62, 62, 62, - 62, 62, 327, 62, 330, 62, 329, 336, 331, 62, - 334, 62, 62, 338, 62, 60, 62, 60, 60, 636, - 62, 62, 332, 342, 335, 62, 340, 339, 62, 337, - 62, 62, 349, 62, 60, 341, 352, 344, 343, 347, - 348, 350, 354, 345, 346, 60, 351, 60, 62, 62, - 355, 360, 62, 62, 356, 62, 62, 353, 62, 363, - 62, 62, 62, 62, 62, 62, 357, 366, 361, 62, - 62, 367, 368, 358, 62, 370, 362, 62, 62, 365, - 364, 62, 62, 369, 371, 62, 373, 62, 372, 374, + 322, 325, 325, 325, 325, 325, 325, 325, 328, 333, + 330, 62, 62, 62, 62, 62, 62, 62, 331, 338, + 62, 340, 62, 336, 62, 62, 60, 60, 335, 60, + 62, 62, 344, 62, 334, 62, 341, 337, 342, 351, + 339, 62, 62, 343, 354, 62, 60, 345, 346, 349, + 350, 352, 60, 347, 356, 348, 60, 357, 353, 62, + 62, 62, 62, 358, 363, 62, 62, 362, 62, 355, + 62, 62, 366, 62, 62, 62, 62, 359, 62, 369, + 62, 364, 62, 62, 360, 361, 370, 62, 371, 365, + 62, 62, 368, 372, 367, 62, 373, 374, 62, 377, - 62, 377, 62, 62, 62, 62, 62, 62, 62, 62, - 375, 62, 379, 62, 376, 382, 380, 378, 381, 383, - 62, 387, 62, 385, 388, 389, 62, 384, 393, 386, - 394, 62, 395, 396, 390, 62, 397, 62, 392, 62, - 62, 408, 391, 398, 319, 399, 60, 400, 62, 314, - 314, 314, 314, 314, 314, 314, 401, 402, 402, 402, - 402, 402, 402, 402, 319, 406, 406, 417, 401, 322, - 322, 322, 322, 322, 322, 322, 404, 322, 322, 322, - 322, 322, 322, 322, 62, 62, 60, 62, 404, 323, - 323, 323, 323, 323, 323, 323, 409, 62, 62, 62, + 62, 375, 380, 376, 62, 62, 378, 62, 62, 62, + 62, 62, 62, 62, 62, 62, 62, 386, 379, 383, + 62, 382, 385, 390, 62, 381, 384, 62, 62, 388, + 391, 392, 387, 62, 62, 389, 395, 402, 321, 393, + 401, 396, 394, 397, 403, 398, 399, 400, 60, 321, + 404, 60, 62, 62, 316, 316, 316, 316, 316, 316, + 316, 407, 404, 405, 405, 405, 405, 405, 405, 405, + 409, 409, 417, 407, 324, 324, 324, 324, 324, 324, + 324, 324, 324, 324, 324, 324, 324, 324, 60, 62, + 62, 325, 325, 325, 325, 325, 325, 325, 62, 412, - 62, 62, 62, 412, 62, 414, 415, 410, 411, 413, - 62, 62, 62, 60, 420, 60, 60, 418, 62, 62, - 62, 416, 62, 62, 419, 428, 423, 62, 60, 421, - 60, 60, 62, 62, 422, 62, 432, 436, 429, 431, - 426, 430, 60, 427, 62, 424, 62, 62, 433, 438, - 434, 435, 62, 425, 62, 62, 437, 441, 439, 62, - 444, 62, 62, 62, 62, 62, 445, 443, 440, 442, - 62, 62, 62, 62, 462, 449, 62, 62, 62, 450, - 62, 447, 448, 446, 452, 455, 453, 451, 457, 62, - 458, 456, 459, 454, 62, 62, 460, 62, 463, 461, + 411, 62, 62, 62, 62, 62, 62, 62, 415, 62, + 418, 414, 413, 416, 62, 62, 62, 60, 60, 423, + 60, 62, 421, 62, 420, 419, 62, 62, 62, 422, + 426, 62, 431, 424, 60, 60, 62, 60, 425, 62, + 435, 432, 60, 434, 429, 62, 430, 433, 62, 427, + 62, 62, 439, 441, 436, 437, 428, 438, 444, 62, + 62, 62, 442, 448, 62, 62, 62, 62, 443, 447, + 62, 440, 62, 445, 62, 62, 62, 62, 60, 446, + 452, 62, 460, 453, 456, 451, 450, 62, 449, 455, + 458, 457, 62, 454, 62, 62, 459, 461, 62, 466, - 62, 62, 62, 62, 62, 62, 60, 464, 467, 62, - 60, 60, 60, 466, 472, 471, 473, 470, 465, 474, - 62, 477, 477, 62, 468, 469, 475, 476, 317, 317, - 318, 319, 402, 402, 402, 402, 402, 402, 402, 319, - 480, 480, 502, 320, 482, 482, 482, 482, 482, 482, - 482, 479, 484, 62, 62, 320, 407, 407, 407, 407, - 407, 407, 407, 479, 319, 407, 407, 407, 407, 407, - 407, 407, 62, 62, 62, 62, 485, 62, 62, 62, - 486, 487, 62, 490, 62, 62, 62, 60, 494, 60, - 60, 62, 493, 489, 491, 62, 62, 488, 60, 60, + 462, 62, 62, 62, 464, 62, 62, 465, 62, 62, + 62, 463, 470, 467, 60, 60, 469, 62, 60, 474, + 476, 62, 475, 468, 473, 477, 62, 478, 471, 472, + 480, 480, 483, 483, 62, 479, 319, 319, 320, 321, + 405, 405, 405, 405, 405, 405, 405, 321, 487, 62, + 525, 322, 485, 485, 485, 485, 485, 485, 485, 482, + 62, 490, 60, 322, 410, 410, 410, 410, 410, 410, + 410, 482, 321, 410, 410, 410, 410, 410, 410, 410, + 62, 62, 62, 491, 488, 62, 62, 62, 489, 62, + 62, 493, 62, 62, 497, 60, 60, 60, 62, 496, - 60, 492, 501, 495, 62, 503, 62, 62, 62, 496, - 60, 62, 500, 507, 497, 510, 509, 62, 62, 62, - 508, 62, 62, 514, 62, 62, 511, 498, 515, 499, - 504, 505, 506, 62, 520, 62, 62, 62, 518, 513, - 62, 62, 516, 62, 519, 62, 62, 62, 526, 517, - 529, 62, 62, 512, 60, 523, 62, 62, 521, 522, - 60, 524, 527, 525, 528, 532, 531, 533, 60, 62, - 530, 62, 62, 534, 535, 540, 540, 62, 62, 62, - 536, 539, 544, 545, 62, 60, 60, 563, 537, 542, - 548, 538, 478, 478, 478, 478, 478, 478, 478, 319, + 492, 494, 62, 62, 62, 60, 60, 60, 504, 62, + 495, 498, 62, 506, 62, 499, 60, 62, 510, 503, + 62, 62, 500, 505, 512, 511, 62, 513, 62, 62, + 62, 514, 517, 62, 501, 62, 502, 507, 508, 509, + 518, 62, 62, 62, 519, 516, 62, 62, 62, 521, + 523, 62, 62, 62, 524, 522, 520, 532, 62, 515, + 62, 526, 529, 62, 527, 528, 531, 62, 534, 60, + 530, 60, 60, 536, 535, 533, 62, 62, 481, 481, + 481, 481, 481, 481, 481, 543, 543, 542, 537, 538, + 62, 539, 540, 62, 547, 62, 62, 548, 541, 321, - 478, 478, 478, 478, 478, 478, 478, 481, 481, 481, - 481, 481, 481, 481, 319, 481, 481, 481, 481, 481, - 481, 481, 482, 482, 482, 482, 482, 482, 482, 62, - 62, 62, 62, 62, 60, 60, 60, 550, 62, 62, - 60, 62, 60, 60, 62, 543, 547, 556, 62, 62, - 62, 60, 62, 546, 549, 551, 552, 62, 560, 554, - 562, 62, 555, 561, 62, 568, 553, 62, 62, 62, - 557, 564, 558, 559, 567, 62, 62, 566, 570, 571, - 569, 62, 573, 62, 62, 575, 62, 565, 62, 576, - 62, 572, 574, 62, 578, 62, 62, 60, 577, 60, + 481, 481, 481, 481, 481, 481, 481, 484, 484, 484, + 484, 484, 484, 484, 321, 484, 484, 484, 484, 484, + 484, 484, 485, 485, 485, 485, 485, 485, 485, 62, + 62, 62, 62, 62, 62, 62, 60, 60, 551, 553, + 60, 62, 62, 62, 60, 60, 545, 546, 550, 559, + 60, 62, 62, 549, 62, 62, 552, 554, 555, 62, + 60, 62, 557, 565, 62, 558, 563, 62, 564, 566, + 556, 571, 62, 62, 560, 561, 567, 62, 62, 62, + 562, 569, 62, 573, 62, 572, 570, 574, 578, 62, + 62, 62, 62, 62, 575, 579, 568, 576, 577, 581, - 580, 60, 62, 60, 62, 581, 62, 62, 62, 579, - 60, 587, 590, 582, 583, 541, 541, 541, 541, 541, - 541, 541, 588, 62, 591, 592, 62, 62, 60, 584, - 60, 585, 62, 586, 319, 541, 541, 541, 541, 541, - 541, 541, 589, 62, 593, 598, 62, 60, 60, 595, - 60, 596, 599, 62, 594, 62, 60, 62, 597, 62, - 62, 604, 62, 62, 62, 62, 600, 606, 62, 62, - 609, 611, 610, 62, 612, 62, 62, 605, 62, 62, - 607, 62, 613, 618, 62, 620, 601, 602, 614, 603, - 62, 616, 62, 619, 622, 617, 624, 608, 60, 60, + 62, 62, 583, 62, 580, 60, 60, 60, 62, 62, + 62, 62, 584, 625, 582, 60, 60, 590, 62, 585, + 592, 586, 544, 544, 544, 544, 544, 544, 544, 321, + 544, 544, 544, 544, 544, 544, 544, 587, 588, 589, + 62, 62, 62, 62, 62, 62, 597, 60, 60, 593, + 601, 62, 62, 60, 591, 604, 60, 602, 62, 62, + 594, 595, 62, 62, 60, 596, 607, 598, 62, 62, + 599, 62, 609, 62, 62, 603, 600, 615, 612, 613, + 62, 608, 614, 62, 610, 62, 62, 62, 62, 62, + 62, 616, 605, 60, 62, 606, 623, 62, 60, 621, - 60, 615, 623, 62, 625, 62, 62, 621, 62, 62, - 60, 62, 60, 62, 633, 62, 60, 60, 60, 62, - 62, 62, 60, 62, 630, 629, 62, 631, 626, 627, - 628, 634, 632, 635, 62, 62, 637, 648, 62, 62, - 650, 645, 643, 639, 644, 647, 638, 62, 646, 649, - 62, 651, 62, 652, 653, 640, 641, 642, 62, 60, - 60, 60, 62, 62, 62, 62, 60, 62, 60, 62, - 654, 60, 661, 656, 60, 662, 655, 664, 663, 665, - 60, 668, 60, 60, 660, 62, 62, 62, 667, 60, - 62, 62, 62, 62, 676, 60, 62, 60, 657, 658, + 626, 60, 619, 617, 622, 611, 620, 62, 62, 627, + 62, 618, 62, 62, 62, 62, 624, 628, 60, 60, + 636, 60, 62, 629, 60, 60, 60, 633, 630, 632, + 62, 631, 634, 635, 637, 638, 62, 62, 62, 62, + 60, 62, 62, 62, 62, 640, 62, 653, 62, 652, + 642, 62, 655, 646, 62, 641, 651, 650, 648, 647, + 654, 658, 639, 643, 644, 645, 649, 656, 657, 60, + 60, 60, 62, 62, 62, 659, 62, 62, 62, 60, + 60, 60, 664, 60, 60, 665, 62, 667, 668, 666, + 671, 60, 60, 62, 663, 62, 62, 62, 62, 60, - 659, 678, 679, 669, 62, 666, 673, 674, 675, 677, - 62, 62, 670, 60, 671, 680, 686, 62, 684, 60, - 672, 685, 60, 60, 60, 687, 60, 62, 681, 62, - 60, 62, 62, 698, 682, 62, 683, 60, 60, 688, - 62, 697, 690, 696, 62, 695, 699, 62, 62, 691, - 692, 689, 693, 62, 60, 694, 60, 60, 703, 60, - 60, 705, 700, 60, 62, 62, 60, 706, 60, 701, - 702, 704, 62, 60, 707, 713, 60, 62, 62, 710, - 711, 62, 708, 712, 717, 62, 715, 714, 724, 709, - 62, 716, 60, 721, 718, 60, 722, 60, 60, 719, + 670, 62, 62, 60, 60, 679, 676, 681, 660, 661, + 662, 678, 682, 672, 680, 677, 673, 62, 669, 62, + 683, 60, 62, 674, 60, 689, 62, 60, 60, 675, + 62, 687, 688, 60, 690, 60, 62, 62, 684, 60, + 701, 62, 685, 686, 62, 60, 60, 691, 693, 699, + 700, 62, 698, 694, 62, 702, 692, 62, 697, 695, + 62, 696, 62, 60, 60, 60, 60, 60, 60, 62, + 62, 703, 706, 60, 708, 62, 709, 704, 705, 716, + 707, 60, 60, 710, 60, 62, 713, 714, 715, 718, + 711, 720, 62, 717, 62, 62, 60, 712, 719, 60, - 60, 723, 720, 62, 60, 62, 60, 60, 62, 60, - 62, 60, 60, 60, 62, 60, 725, 738, 731, 60, - 60, 732, 734, 727, 728, 60, 729, 735, 739, 726, - 730, 736, 733, 737, 62, 62, 60, 60, 60, 60, - 741, 62, 62, 60, 740, 60, 746, 60, 60, 742, - 753, 748, 60, 743, 744, 60, 60, 752, 60, 745, - 747, 60, 60, 749, 750, 751, 62, 60, 754, 60, - 60, 60, 60, 757, 60, 756, 764, 758, 60, 62, - 759, 60, 60, 60, 755, 60, 760, 60, 60, 60, - 60, 60, 761, 765, 60, 762, 763, 60, 766, 60, + 725, 62, 60, 60, 724, 60, 60, 721, 722, 62, + 723, 726, 727, 60, 60, 62, 62, 60, 60, 62, + 728, 62, 734, 60, 60, 60, 741, 62, 730, 731, + 60, 732, 733, 729, 735, 737, 60, 738, 739, 736, + 60, 742, 62, 740, 60, 62, 60, 60, 62, 743, + 60, 62, 744, 60, 749, 60, 756, 60, 60, 745, + 60, 751, 60, 60, 746, 60, 60, 755, 750, 60, + 747, 62, 752, 753, 748, 60, 754, 60, 757, 60, + 60, 767, 60, 760, 60, 759, 60, 761, 762, 60, + 763, 60, 60, 60, 758, 60, 60, 60, 60, 764, - 60, 768, 769, 60, 770, 60, 772, 773, 774, 767, - 777, 771, 775, 778, 60, 60, 776, 60, 60, 779, - 781, 780, 60, 785, 782, 60, 60, 60, 60, 60, - 783, 62, 62, 62, 62, 784, 62, 62, 62, 786, - 789, 62, 62, 62, 790, 60, 62, 788, 787, 791, - 792, 793, 62, 62, 62, 62, 62, 796, 62, 794, - 795, 50, 50, 54, 54, 54, 62, 54, 62, 54, - 54, 62, 62, 62, 62, 62, 62, 62, 49, 62, - 62, 49, 132, 132, 132, 132, 134, 62, 62, 134, - 137, 62, 62, 137, 62, 137, 137, 61, 62, 62, + 765, 768, 60, 766, 60, 60, 769, 60, 60, 60, + 771, 780, 772, 60, 773, 60, 775, 776, 770, 774, + 777, 60, 779, 778, 781, 60, 782, 783, 784, 787, + 60, 60, 60, 60, 60, 60, 60, 785, 786, 62, + 62, 62, 62, 788, 62, 62, 62, 789, 60, 790, + 62, 62, 792, 791, 793, 794, 795, 62, 62, 796, + 62, 62, 62, 62, 799, 797, 62, 62, 62, 798, + 50, 50, 54, 54, 54, 62, 54, 62, 54, 54, + 62, 62, 62, 62, 62, 62, 62, 49, 62, 62, + 49, 132, 132, 132, 132, 134, 62, 62, 134, 137, - 61, 62, 61, 61, 221, 221, 222, 222, 62, 62, - 222, 224, 224, 62, 62, 224, 130, 130, 130, 130, - 227, 227, 227, 62, 227, 230, 230, 62, 62, 230, - 136, 62, 62, 136, 62, 136, 136, 231, 231, 315, - 62, 62, 315, 62, 315, 315, 322, 322, 62, 62, - 322, 324, 62, 62, 324, 62, 324, 324, 314, 62, - 62, 314, 62, 314, 314, 316, 316, 62, 62, 316, - 403, 403, 62, 62, 403, 405, 405, 407, 407, 62, - 62, 407, 323, 62, 62, 323, 60, 323, 323, 478, - 478, 62, 62, 478, 481, 481, 62, 62, 481, 483, + 62, 62, 137, 62, 137, 137, 61, 62, 62, 61, + 62, 61, 61, 222, 222, 223, 223, 62, 62, 223, + 225, 225, 62, 62, 225, 130, 130, 130, 130, 228, + 228, 228, 62, 228, 231, 231, 62, 62, 231, 136, + 62, 62, 136, 62, 136, 136, 232, 232, 317, 62, + 62, 317, 62, 317, 317, 324, 324, 62, 62, 324, + 326, 62, 62, 326, 62, 326, 326, 316, 62, 62, + 316, 62, 316, 316, 318, 318, 62, 62, 318, 406, + 406, 62, 62, 406, 408, 408, 410, 410, 60, 62, + 410, 325, 62, 62, 325, 62, 325, 325, 481, 481, - 62, 483, 483, 541, 541, 62, 62, 541, 482, 60, - 482, 482, 60, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 325, 62, 62, 62, 62, 62, 60, - 131, 62, 62, 62, 60, 141, 44, 126, 59, 58, - 47, 45, 44, 797, 3, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, + 62, 62, 481, 484, 484, 62, 62, 484, 486, 60, + 486, 486, 544, 544, 60, 62, 544, 485, 62, 485, + 485, 62, 62, 62, 62, 62, 62, 62, 62, 327, + 62, 62, 62, 62, 62, 60, 131, 62, 62, 62, + 60, 141, 44, 126, 59, 58, 47, 45, 44, 800, + 3, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, - 797 + 800, 800, 800, 800, 800, 800, 800 } ; -static const flex_int16_t grib_yy_chk[2002] = +static const flex_int16_t grib_yy_chk[2008] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -924,13 +924,13 @@ static const flex_int16_t grib_yy_chk[2002] = 31, 14, 14, 14, 14, 14, 14, 14, 15, 15, 18, 27, 14, 18, 18, 18, 18, 18, 18, 18, - 22, 20, 31, 35, 14, 19, 796, 27, 19, 19, + 22, 20, 31, 35, 14, 19, 799, 27, 19, 19, 19, 19, 19, 19, 19, 20, 22, 23, 22, 24, 22, 19, 22, 63, 35, 24, 63, 25, 35, 37, 33, 23, 28, 23, 26, 24, 23, 25, 24, 37, 33, 25, 29, 26, 28, 23, 25, 77, 29, 33, 26, 25, 26, 30, 28, 77, 29, 64, 49, 34, - 30, 26, 795, 30, 30, 28, 36, 32, 64, 34, + 30, 26, 798, 30, 30, 28, 36, 32, 64, 34, 49, 30, 36, 32, 38, 30, 30, 32, 34, 69, 39, 32, 41, 34, 38, 36, 32, 36, 38, 38, 39, 38, 40, 52, 65, 41, 76, 38, 38, 39, @@ -939,7 +939,7 @@ static const flex_int16_t grib_yy_chk[2002] = 40, 46, 46, 46, 46, 46, 46, 46, 48, 48, 48, 66, 48, 48, 48, 48, 48, 48, 48, 67, 66, 113, 82, 48, 50, 50, 50, 50, 50, 50, - 50, 82, 50, 113, 794, 48, 51, 51, 51, 51, + 50, 82, 50, 113, 797, 48, 51, 51, 51, 51, 51, 51, 51, 53, 53, 53, 68, 53, 53, 53, 53, 53, 53, 53, 68, 70, 54, 71, 53, 54, 54, 54, 54, 54, 54, 54, 72, 74, 68, 73, @@ -949,191 +949,191 @@ static const flex_int16_t grib_yy_chk[2002] = 83, 73, 75, 85, 86, 87, 88, 78, 84, 79, 75, 75, 80, 75, 84, 90, 89, 81, 93, 91, 83, 95, 98, 85, 87, 89, 93, 86, 88, 91, - 94, 95, 90, 96, 94, 97, 99, 100, 101, 102, - 98, 93, 97, 96, 103, 108, 105, 104, 102, 107, - 103, 104, 109, 110, 108, 100, 100, 114, 99, 107, - 101, 101, 105, 100, 116, 104, 111, 110, 112, 115, - 104, 114, 111, 117, 109, 115, 112, 119, 118, 122, - 117, 793, 120, 111, 111, 116, 120, 121, 124, 125, - 123, 112, 118, 121, 119, 112, 123, 122, 124, 128, + 94, 95, 90, 96, 94, 97, 99, 100, 101, 103, + 98, 93, 97, 96, 102, 103, 104, 107, 94, 105, + 104, 109, 110, 102, 112, 100, 100, 107, 99, 108, + 101, 101, 112, 100, 104, 105, 110, 119, 108, 104, + 111, 114, 115, 109, 116, 117, 111, 112, 115, 118, + 122, 112, 117, 121, 119, 114, 120, 111, 111, 121, + 120, 124, 125, 118, 123, 116, 142, 121, 122, 142, - 128, 121, 124, 125, 129, 129, 131, 131, 131, 135, - 135, 147, 123, 132, 132, 132, 132, 132, 132, 132, - 159, 132, 133, 133, 133, 147, 133, 133, 133, 133, - 133, 133, 133, 134, 172, 137, 146, 133, 137, 137, - 137, 137, 137, 137, 137, 134, 146, 172, 159, 133, - 138, 138, 138, 138, 138, 138, 138, 139, 139, 139, - 139, 139, 139, 139, 140, 155, 139, 140, 140, 140, - 140, 140, 140, 140, 142, 144, 148, 142, 150, 152, - 153, 144, 154, 156, 153, 150, 148, 155, 157, 152, - 158, 160, 154, 156, 161, 162, 163, 160, 158, 164, + 123, 124, 128, 128, 796, 124, 125, 129, 129, 131, + 131, 131, 134, 135, 135, 147, 123, 132, 132, 132, + 132, 132, 132, 132, 134, 132, 133, 133, 133, 147, + 133, 133, 133, 133, 133, 133, 133, 168, 172, 137, + 146, 133, 137, 137, 137, 137, 137, 137, 137, 168, + 146, 172, 791, 133, 138, 138, 138, 138, 138, 138, + 138, 139, 139, 139, 139, 139, 139, 139, 140, 148, + 139, 140, 140, 140, 140, 140, 140, 140, 144, 148, + 150, 152, 153, 154, 144, 155, 153, 150, 156, 157, + 159, 152, 158, 154, 161, 160, 162, 164, 156, 163, - 165, 167, 162, 168, 169, 171, 788, 174, 157, 170, - 165, 175, 158, 178, 173, 168, 163, 161, 174, 170, - 167, 175, 164, 173, 176, 179, 177, 178, 177, 171, - 177, 178, 183, 169, 181, 180, 182, 169, 177, 184, - 176, 185, 169, 180, 181, 187, 179, 186, 182, 189, - 190, 184, 188, 191, 194, 183, 185, 186, 188, 195, - 196, 191, 192, 189, 191, 193, 192, 187, 197, 198, - 194, 190, 193, 200, 202, 199, 208, 203, 205, 201, - 195, 203, 197, 196, 199, 201, 206, 198, 204, 207, - 208, 209, 200, 210, 204, 211, 205, 202, 212, 213, + 158, 160, 165, 162, 167, 169, 170, 155, 171, 157, + 174, 176, 165, 173, 158, 175, 170, 161, 159, 163, + 164, 174, 173, 167, 177, 175, 177, 176, 177, 181, + 178, 179, 171, 180, 169, 182, 177, 181, 169, 183, + 184, 185, 186, 169, 178, 182, 187, 188, 178, 189, + 179, 183, 190, 185, 180, 189, 187, 186, 191, 192, + 193, 194, 195, 184, 193, 196, 190, 192, 194, 188, + 192, 197, 199, 198, 200, 202, 201, 203, 195, 191, + 204, 202, 205, 200, 204, 206, 196, 198, 205, 207, + 199, 208, 209, 210, 197, 201, 211, 212, 214, 213, - 215, 220, 214, 216, 217, 219, 206, 218, 228, 228, - 207, 243, 212, 209, 214, 211, 210, 213, 217, 216, - 212, 219, 270, 215, 220, 218, 221, 243, 270, 221, - 221, 221, 221, 221, 221, 221, 222, 222, 222, 222, - 222, 222, 222, 223, 223, 223, 223, 223, 223, 223, - 224, 224, 224, 224, 224, 224, 224, 225, 225, 225, - 225, 225, 225, 225, 226, 226, 226, 226, 226, 226, - 226, 227, 227, 227, 227, 229, 229, 229, 229, 229, - 229, 229, 787, 235, 233, 596, 227, 230, 230, 230, - 230, 230, 230, 230, 234, 236, 231, 235, 227, 231, + 203, 216, 215, 206, 217, 219, 209, 221, 218, 207, + 220, 235, 208, 213, 215, 210, 214, 212, 240, 211, + 217, 213, 218, 219, 216, 240, 220, 790, 222, 235, + 221, 222, 222, 222, 222, 222, 222, 222, 223, 223, + 223, 223, 223, 223, 223, 224, 224, 224, 224, 224, + 224, 224, 225, 225, 225, 225, 225, 225, 225, 226, + 226, 226, 226, 226, 226, 226, 227, 227, 227, 227, + 227, 227, 227, 228, 228, 228, 228, 229, 229, 230, + 230, 230, 230, 230, 230, 230, 234, 789, 228, 231, + 231, 231, 231, 231, 231, 231, 236, 237, 232, 242, - 231, 231, 231, 231, 231, 231, 233, 239, 241, 242, - 244, 245, 234, 246, 239, 247, 236, 246, 241, 248, - 244, 249, 251, 248, 253, 255, 254, 256, 257, 596, - 259, 258, 242, 254, 245, 263, 251, 249, 260, 247, - 262, 261, 260, 264, 265, 253, 263, 255, 254, 258, - 259, 261, 265, 256, 257, 266, 262, 267, 268, 269, - 266, 271, 272, 273, 267, 275, 276, 264, 277, 275, - 280, 278, 281, 271, 282, 287, 268, 278, 272, 283, - 288, 280, 281, 269, 285, 283, 273, 289, 284, 277, - 276, 290, 292, 282, 284, 293, 287, 291, 285, 288, + 228, 232, 232, 232, 232, 232, 232, 232, 234, 242, + 236, 243, 244, 245, 246, 247, 248, 249, 237, 247, + 250, 249, 254, 245, 252, 255, 256, 257, 244, 258, + 260, 259, 255, 264, 243, 261, 250, 246, 252, 261, + 248, 262, 263, 254, 264, 265, 266, 255, 256, 259, + 260, 262, 267, 257, 266, 258, 268, 267, 263, 269, + 270, 272, 271, 268, 273, 274, 275, 272, 277, 265, + 278, 279, 277, 280, 284, 282, 273, 269, 283, 280, + 290, 274, 289, 291, 270, 271, 282, 287, 283, 275, + 285, 286, 279, 284, 278, 292, 285, 286, 293, 290, - 295, 291, 294, 296, 299, 300, 301, 304, 303, 297, - 289, 305, 293, 302, 290, 296, 294, 292, 295, 297, - 306, 302, 309, 300, 303, 304, 307, 299, 308, 301, - 308, 310, 308, 308, 305, 312, 309, 313, 307, 325, - 308, 325, 306, 310, 316, 312, 315, 313, 336, 315, - 315, 315, 315, 315, 315, 315, 316, 317, 317, 317, - 317, 317, 317, 317, 318, 320, 320, 336, 316, 321, - 321, 321, 321, 321, 321, 321, 318, 322, 322, 322, - 322, 322, 322, 322, 329, 334, 324, 327, 318, 324, - 324, 324, 324, 324, 324, 324, 327, 332, 330, 333, + 294, 287, 293, 289, 295, 296, 291, 299, 297, 301, + 298, 302, 303, 306, 305, 304, 307, 299, 292, 296, + 308, 295, 298, 304, 309, 294, 297, 314, 312, 302, + 305, 306, 301, 311, 315, 303, 309, 314, 318, 307, + 312, 310, 308, 310, 315, 310, 310, 311, 788, 320, + 318, 317, 336, 310, 317, 317, 317, 317, 317, 317, + 317, 320, 318, 319, 319, 319, 319, 319, 319, 319, + 322, 322, 336, 320, 323, 323, 323, 323, 323, 323, + 323, 324, 324, 324, 324, 324, 324, 324, 326, 331, + 329, 326, 326, 326, 326, 326, 326, 326, 327, 329, - 335, 337, 338, 332, 339, 334, 335, 329, 330, 333, - 340, 341, 342, 344, 339, 345, 346, 337, 347, 349, - 350, 335, 351, 352, 338, 349, 342, 353, 354, 340, - 355, 356, 358, 357, 341, 359, 353, 357, 350, 352, - 346, 351, 360, 347, 362, 344, 363, 364, 354, 358, - 355, 356, 365, 345, 366, 367, 357, 362, 359, 368, - 365, 370, 369, 371, 372, 383, 366, 364, 360, 363, - 373, 375, 377, 380, 383, 370, 374, 381, 378, 371, - 379, 368, 369, 367, 373, 375, 374, 372, 378, 382, - 379, 377, 380, 374, 384, 385, 381, 386, 384, 382, + 327, 332, 334, 335, 337, 338, 339, 340, 334, 341, + 337, 332, 331, 335, 342, 343, 344, 346, 347, 341, + 348, 349, 339, 352, 338, 337, 351, 354, 353, 340, + 344, 355, 351, 342, 356, 357, 360, 358, 343, 362, + 355, 352, 363, 354, 348, 365, 349, 353, 359, 346, + 366, 369, 359, 360, 356, 357, 347, 358, 365, 367, + 370, 368, 362, 369, 371, 372, 373, 374, 363, 368, + 375, 359, 381, 366, 377, 376, 378, 380, 779, 367, + 373, 383, 381, 374, 377, 372, 371, 382, 370, 376, + 378, 377, 384, 375, 385, 387, 380, 382, 386, 387, - 387, 389, 388, 391, 390, 392, 393, 385, 388, 398, - 786, 394, 395, 387, 393, 392, 394, 391, 386, 395, - 397, 401, 401, 431, 389, 390, 397, 398, 402, 402, - 402, 402, 402, 402, 402, 402, 402, 402, 402, 403, - 404, 404, 431, 402, 405, 405, 405, 405, 405, 405, - 405, 403, 408, 408, 413, 402, 406, 406, 406, 406, - 406, 406, 406, 403, 407, 407, 407, 407, 407, 407, - 407, 407, 411, 412, 414, 415, 411, 416, 418, 417, - 412, 413, 419, 416, 420, 421, 423, 424, 420, 425, - 426, 428, 419, 415, 417, 432, 430, 414, 433, 434, + 383, 388, 389, 390, 385, 392, 391, 386, 393, 395, + 394, 384, 391, 388, 396, 397, 390, 401, 398, 395, + 397, 400, 396, 389, 394, 398, 457, 400, 392, 393, + 404, 404, 407, 407, 416, 401, 405, 405, 405, 405, + 405, 405, 405, 405, 405, 405, 405, 406, 411, 411, + 457, 405, 408, 408, 408, 408, 408, 408, 408, 406, + 417, 416, 769, 405, 409, 409, 409, 409, 409, 409, + 409, 406, 410, 410, 410, 410, 410, 410, 410, 410, + 414, 415, 418, 417, 414, 419, 420, 421, 415, 422, + 423, 419, 426, 424, 423, 427, 428, 429, 431, 422, - 435, 418, 430, 421, 436, 432, 437, 439, 438, 423, - 440, 442, 428, 436, 424, 438, 437, 444, 445, 447, - 436, 448, 449, 444, 450, 452, 439, 425, 445, 426, - 433, 434, 435, 453, 452, 454, 455, 460, 449, 442, - 461, 463, 447, 456, 450, 459, 464, 467, 460, 448, - 464, 469, 471, 440, 472, 455, 468, 470, 453, 454, - 473, 456, 461, 459, 463, 469, 468, 470, 474, 475, - 467, 476, 485, 471, 472, 479, 479, 510, 487, 488, - 473, 476, 487, 488, 493, 785, 776, 510, 474, 485, - 493, 475, 477, 477, 477, 477, 477, 477, 477, 478, + 418, 420, 433, 435, 434, 436, 437, 438, 433, 439, + 421, 424, 442, 435, 440, 426, 443, 445, 439, 431, + 441, 450, 427, 434, 440, 439, 447, 441, 451, 456, + 448, 442, 447, 452, 428, 453, 429, 436, 437, 438, + 448, 455, 458, 466, 450, 445, 459, 462, 464, 452, + 455, 463, 470, 467, 456, 453, 451, 467, 471, 443, + 472, 458, 463, 473, 459, 462, 466, 474, 471, 475, + 464, 476, 477, 473, 472, 470, 478, 479, 480, 480, + 480, 480, 480, 480, 480, 482, 482, 479, 474, 475, + 490, 476, 477, 491, 490, 767, 756, 491, 478, 481, - 478, 478, 478, 478, 478, 478, 478, 480, 480, 480, - 480, 480, 480, 480, 481, 481, 481, 481, 481, 481, - 481, 481, 483, 483, 483, 483, 483, 483, 483, 486, - 489, 494, 490, 495, 498, 497, 499, 495, 500, 501, - 504, 502, 505, 506, 507, 486, 490, 502, 509, 508, - 511, 512, 514, 489, 494, 497, 498, 513, 507, 500, - 509, 515, 501, 508, 523, 515, 499, 519, 520, 521, - 504, 511, 505, 506, 514, 522, 524, 513, 520, 521, - 519, 525, 523, 526, 527, 525, 529, 512, 528, 526, - 530, 522, 524, 531, 528, 532, 533, 535, 527, 536, + 481, 481, 481, 481, 481, 481, 481, 483, 483, 483, + 483, 483, 483, 483, 484, 484, 484, 484, 484, 484, + 484, 484, 486, 486, 486, 486, 486, 486, 486, 488, + 492, 489, 496, 497, 493, 498, 501, 500, 496, 498, + 502, 503, 504, 505, 507, 508, 488, 489, 493, 505, + 509, 512, 510, 492, 511, 514, 497, 500, 501, 513, + 515, 516, 503, 512, 517, 504, 510, 518, 511, 513, + 502, 518, 522, 523, 507, 508, 514, 524, 525, 526, + 509, 516, 527, 523, 528, 522, 517, 524, 528, 529, + 530, 532, 533, 531, 525, 529, 515, 526, 527, 531, - 530, 537, 539, 766, 544, 531, 545, 547, 542, 529, - 553, 539, 544, 532, 533, 540, 540, 540, 540, 540, - 540, 540, 542, 548, 545, 547, 549, 550, 551, 535, - 552, 536, 543, 537, 541, 541, 541, 541, 541, 541, - 541, 541, 543, 556, 548, 553, 554, 557, 558, 550, - 559, 551, 554, 560, 549, 561, 565, 562, 552, 563, - 566, 560, 567, 568, 571, 572, 556, 562, 569, 576, - 566, 568, 567, 574, 569, 575, 577, 561, 578, 579, - 563, 583, 571, 576, 582, 578, 557, 558, 572, 559, - 580, 575, 581, 577, 580, 575, 582, 565, 584, 585, + 534, 535, 533, 536, 530, 538, 539, 540, 542, 583, + 546, 751, 534, 583, 532, 556, 560, 542, 552, 535, + 546, 536, 543, 543, 543, 543, 543, 543, 543, 544, + 544, 544, 544, 544, 544, 544, 544, 538, 539, 540, + 545, 547, 548, 550, 551, 553, 552, 554, 555, 547, + 556, 557, 559, 561, 545, 560, 562, 557, 563, 564, + 548, 550, 565, 566, 568, 551, 563, 553, 569, 570, + 554, 572, 565, 574, 571, 559, 555, 572, 569, 570, + 575, 564, 571, 577, 566, 579, 578, 580, 582, 581, + 584, 574, 561, 587, 586, 562, 581, 585, 588, 579, - 586, 574, 581, 588, 583, 590, 593, 579, 591, 592, - 597, 594, 598, 595, 593, 599, 601, 602, 603, 604, - 606, 605, 608, 614, 590, 588, 611, 591, 584, 585, - 586, 594, 592, 595, 617, 618, 597, 614, 620, 616, - 617, 606, 604, 599, 605, 611, 598, 619, 608, 616, - 621, 618, 623, 619, 620, 601, 602, 603, 622, 626, - 627, 628, 629, 630, 631, 633, 636, 634, 637, 635, - 621, 640, 630, 623, 638, 631, 622, 634, 633, 635, - 641, 638, 642, 646, 629, 650, 647, 648, 637, 657, - 649, 653, 654, 652, 650, 658, 655, 659, 626, 627, + 584, 589, 578, 575, 580, 568, 578, 591, 593, 585, + 595, 577, 596, 594, 597, 598, 582, 586, 599, 600, + 596, 601, 602, 587, 604, 605, 606, 593, 588, 591, + 607, 589, 594, 595, 597, 598, 608, 609, 614, 619, + 611, 620, 617, 625, 621, 600, 622, 620, 624, 619, + 602, 623, 622, 607, 626, 601, 617, 614, 609, 608, + 621, 625, 599, 604, 605, 606, 611, 623, 624, 629, + 630, 631, 632, 633, 634, 626, 636, 637, 638, 639, + 640, 643, 633, 641, 644, 634, 650, 637, 638, 636, + 641, 645, 649, 652, 632, 651, 653, 656, 655, 660, - 628, 653, 654, 640, 660, 636, 647, 648, 649, 652, - 662, 661, 641, 666, 642, 655, 662, 665, 660, 667, - 646, 661, 668, 669, 670, 665, 671, 673, 657, 674, - 681, 675, 676, 677, 658, 680, 659, 682, 683, 666, - 684, 676, 668, 675, 677, 674, 680, 686, 685, 669, - 670, 667, 671, 687, 688, 673, 689, 690, 684, 691, - 692, 686, 681, 693, 696, 695, 698, 687, 700, 682, - 683, 685, 697, 701, 688, 695, 702, 706, 699, 691, - 692, 703, 689, 693, 699, 705, 697, 696, 706, 690, - 704, 698, 707, 703, 700, 708, 704, 709, 710, 701, + 640, 658, 657, 661, 662, 653, 650, 656, 629, 630, + 631, 652, 657, 643, 655, 651, 644, 663, 639, 665, + 658, 669, 664, 645, 670, 665, 668, 672, 671, 649, + 676, 663, 664, 673, 668, 674, 677, 678, 660, 684, + 680, 679, 661, 662, 683, 685, 686, 669, 671, 678, + 679, 680, 677, 672, 687, 683, 670, 688, 676, 673, + 689, 674, 690, 691, 692, 693, 694, 695, 696, 698, + 699, 684, 687, 701, 689, 700, 690, 685, 686, 698, + 688, 703, 704, 691, 705, 702, 694, 695, 696, 700, + 692, 702, 706, 699, 707, 708, 710, 693, 701, 711, - 711, 705, 702, 715, 712, 714, 716, 718, 717, 725, - 722, 719, 726, 720, 724, 727, 707, 722, 714, 728, - 729, 715, 717, 709, 710, 730, 711, 718, 724, 708, - 712, 719, 716, 720, 732, 734, 733, 735, 736, 737, - 726, 738, 739, 740, 725, 741, 732, 742, 743, 727, - 739, 734, 744, 728, 729, 745, 747, 738, 749, 730, - 733, 750, 751, 735, 736, 737, 752, 754, 740, 755, - 756, 757, 758, 743, 759, 742, 752, 744, 760, 764, - 745, 761, 762, 763, 741, 765, 747, 767, 768, 777, - 772, 769, 749, 754, 773, 750, 751, 770, 755, 771, + 707, 709, 712, 713, 706, 714, 715, 703, 704, 717, + 705, 708, 709, 719, 728, 749, 718, 721, 722, 725, + 710, 720, 717, 723, 729, 730, 725, 727, 712, 713, + 731, 714, 715, 711, 718, 720, 732, 721, 722, 719, + 733, 727, 735, 723, 736, 737, 738, 739, 742, 728, + 740, 741, 729, 743, 735, 744, 742, 745, 746, 730, + 750, 737, 747, 748, 731, 752, 753, 741, 736, 754, + 732, 755, 738, 739, 733, 757, 740, 758, 743, 759, + 760, 755, 761, 746, 762, 745, 763, 747, 748, 771, + 750, 764, 765, 770, 744, 766, 768, 778, 775, 752, - 774, 757, 758, 775, 759, 778, 761, 762, 763, 756, - 768, 760, 765, 769, 779, 780, 767, 789, 781, 770, - 772, 771, 782, 777, 773, 790, 791, 783, 784, 792, - 774, 753, 748, 746, 731, 775, 723, 721, 713, 778, - 781, 694, 679, 678, 782, 672, 664, 780, 779, 783, - 784, 789, 663, 656, 651, 645, 644, 792, 643, 790, - 791, 798, 798, 799, 799, 799, 639, 799, 632, 799, - 799, 800, 625, 624, 800, 615, 800, 800, 801, 613, - 612, 801, 802, 802, 802, 802, 803, 610, 609, 803, - 804, 607, 600, 804, 589, 804, 804, 805, 587, 573, + 753, 757, 772, 754, 773, 774, 758, 776, 777, 780, + 760, 771, 761, 781, 762, 782, 764, 765, 759, 763, + 766, 783, 770, 768, 772, 792, 773, 774, 775, 778, + 784, 793, 785, 786, 787, 794, 795, 776, 777, 734, + 726, 724, 716, 780, 697, 682, 681, 781, 675, 782, + 667, 666, 784, 783, 785, 786, 787, 659, 654, 792, + 648, 647, 646, 642, 795, 793, 635, 628, 627, 794, + 801, 801, 802, 802, 802, 618, 802, 616, 802, 802, + 803, 615, 613, 803, 612, 803, 803, 804, 610, 603, + 804, 805, 805, 805, 805, 806, 592, 590, 806, 807, - 805, 570, 805, 805, 806, 806, 807, 807, 564, 555, - 807, 808, 808, 546, 538, 808, 809, 809, 809, 809, - 810, 810, 810, 534, 810, 811, 811, 518, 517, 811, - 812, 516, 503, 812, 496, 812, 812, 813, 813, 814, - 492, 491, 814, 484, 814, 814, 815, 815, 466, 465, - 815, 816, 462, 458, 816, 457, 816, 816, 817, 451, - 446, 817, 443, 817, 817, 818, 818, 441, 429, 818, - 819, 819, 427, 422, 819, 820, 820, 821, 821, 410, - 409, 821, 822, 400, 399, 822, 396, 822, 822, 823, - 823, 376, 361, 823, 824, 824, 348, 343, 824, 825, + 576, 573, 807, 567, 807, 807, 808, 558, 549, 808, + 541, 808, 808, 809, 809, 810, 810, 537, 521, 810, + 811, 811, 520, 519, 811, 812, 812, 812, 812, 813, + 813, 813, 506, 813, 814, 814, 499, 495, 814, 815, + 494, 487, 815, 469, 815, 815, 816, 816, 817, 468, + 465, 817, 461, 817, 817, 818, 818, 460, 454, 818, + 819, 449, 446, 819, 444, 819, 819, 820, 432, 430, + 820, 425, 820, 820, 821, 821, 413, 412, 821, 822, + 822, 403, 402, 822, 823, 823, 824, 824, 399, 379, + 824, 825, 364, 361, 825, 350, 825, 825, 826, 826, - 331, 825, 825, 826, 826, 328, 326, 826, 827, 323, - 827, 827, 314, 311, 298, 286, 279, 274, 252, 250, - 240, 238, 237, 232, 166, 151, 149, 145, 143, 136, - 130, 106, 92, 62, 61, 60, 44, 42, 17, 16, - 10, 7, 5, 3, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, - 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, + 345, 333, 826, 827, 827, 330, 328, 827, 828, 325, + 828, 828, 829, 829, 316, 313, 829, 830, 300, 830, + 830, 288, 281, 276, 253, 251, 241, 239, 238, 233, + 166, 151, 149, 145, 143, 136, 130, 106, 92, 62, + 61, 60, 44, 42, 17, 16, 10, 7, 5, 3, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, - 797 + 800, 800, 800, 800, 800, 800, 800 } ; static grib_yy_state_type grib_yy_last_accepting_state; @@ -1448,13 +1448,13 @@ grib_yy_match: while ( grib_yy_chk[grib_yy_base[grib_yy_current_state] + grib_yy_c] != grib_yy_current_state ) { grib_yy_current_state = (int) grib_yy_def[grib_yy_current_state]; - if ( grib_yy_current_state >= 798 ) + if ( grib_yy_current_state >= 801 ) grib_yy_c = grib_yy_meta[grib_yy_c]; } grib_yy_current_state = grib_yy_nxt[grib_yy_base[grib_yy_current_state] + grib_yy_c]; ++grib_yy_cp; } - while ( grib_yy_base[grib_yy_current_state] != 1945 ); + while ( grib_yy_base[grib_yy_current_state] != 1951 ); grib_yy_find_action: grib_yy_act = grib_yy_accept[grib_yy_current_state]; @@ -1481,47 +1481,47 @@ do_action: /* This label is used only to access EOF actions. */ case 1: YY_RULE_SETUP #line 74 "gribl.l" -return EQ ; +return EQ ; YY_BREAK case 2: YY_RULE_SETUP #line 75 "gribl.l" -return GE ; +return GE ; YY_BREAK case 3: YY_RULE_SETUP #line 76 "gribl.l" -return GT ; +return GT ; YY_BREAK case 4: YY_RULE_SETUP #line 77 "gribl.l" -return LE ; +return LE ; YY_BREAK case 5: YY_RULE_SETUP #line 78 "gribl.l" -return LT ; +return LT ; YY_BREAK case 6: YY_RULE_SETUP #line 79 "gribl.l" -return NE ; +return NE ; YY_BREAK case 7: YY_RULE_SETUP #line 80 "gribl.l" -return NE ; +return NE ; YY_BREAK case 8: YY_RULE_SETUP #line 81 "gribl.l" -return BIT ; +return BIT ; YY_BREAK case 9: YY_RULE_SETUP #line 82 "gribl.l" -return BITOFF ; +return BITOFF ; YY_BREAK case 10: YY_RULE_SETUP @@ -1531,7 +1531,7 @@ return IS ; case 11: YY_RULE_SETUP #line 85 "gribl.l" -return NOT ; +return ISNOT ; YY_BREAK case 12: YY_RULE_SETUP @@ -1541,7 +1541,7 @@ return NOT ; case 13: YY_RULE_SETUP #line 87 "gribl.l" -return AND ; +return NOT ; YY_BREAK case 14: YY_RULE_SETUP @@ -1551,7 +1551,7 @@ return AND ; case 15: YY_RULE_SETUP #line 89 "gribl.l" -return OR ; +return AND ; YY_BREAK case 16: YY_RULE_SETUP @@ -1560,333 +1560,333 @@ return OR ; YY_BREAK case 17: YY_RULE_SETUP -#line 92 "gribl.l" -return NIL ; +#line 91 "gribl.l" +return OR ; YY_BREAK case 18: YY_RULE_SETUP #line 93 "gribl.l" -return DUMMY ; +return NIL ; YY_BREAK case 19: YY_RULE_SETUP -#line 95 "gribl.l" -return SUBSTR ; +#line 94 "gribl.l" +return DUMMY ; YY_BREAK case 20: YY_RULE_SETUP #line 96 "gribl.l" -return CLOSE ; +return SUBSTR ; YY_BREAK case 21: YY_RULE_SETUP #line 97 "gribl.l" -return LENGTH ; +return CLOSE ; YY_BREAK case 22: YY_RULE_SETUP #line 98 "gribl.l" -return LOWERCASE; +return LENGTH ; YY_BREAK case 23: YY_RULE_SETUP #line 99 "gribl.l" -return IF ; +return LOWERCASE; YY_BREAK case 24: YY_RULE_SETUP #line 100 "gribl.l" -return IF_TRANSIENT ; +return IF ; YY_BREAK case 25: YY_RULE_SETUP #line 101 "gribl.l" -return ELSE ; +return IF_TRANSIENT ; YY_BREAK case 26: YY_RULE_SETUP #line 102 "gribl.l" -return UNSIGNED ; +return ELSE ; YY_BREAK case 27: YY_RULE_SETUP #line 103 "gribl.l" -return ASCII ; +return UNSIGNED ; YY_BREAK case 28: YY_RULE_SETUP #line 104 "gribl.l" -return BYTE ; +return ASCII ; YY_BREAK case 29: YY_RULE_SETUP #line 105 "gribl.l" -return LABEL ; +return BYTE ; YY_BREAK case 30: YY_RULE_SETUP #line 106 "gribl.l" -return LIST ; +return LABEL ; YY_BREAK case 31: YY_RULE_SETUP #line 107 "gribl.l" -return WHILE ; +return LIST ; YY_BREAK case 32: YY_RULE_SETUP #line 108 "gribl.l" -return TEMPLATE ; +return WHILE ; YY_BREAK case 33: YY_RULE_SETUP #line 109 "gribl.l" -return TEMPLATE_NOFAIL ; +return TEMPLATE ; YY_BREAK case 34: YY_RULE_SETUP #line 110 "gribl.l" -return TRIGGER ; +return TEMPLATE_NOFAIL ; YY_BREAK case 35: YY_RULE_SETUP #line 111 "gribl.l" -return END ; +return TRIGGER ; YY_BREAK case 36: YY_RULE_SETUP #line 112 "gribl.l" -return IBMFLOAT ; +return END ; YY_BREAK case 37: YY_RULE_SETUP #line 113 "gribl.l" -return FLOAT ; +return IBMFLOAT ; YY_BREAK case 38: YY_RULE_SETUP #line 114 "gribl.l" -return SIGNED ; +return FLOAT ; YY_BREAK case 39: YY_RULE_SETUP #line 115 "gribl.l" -return CODETABLE; +return SIGNED ; YY_BREAK case 40: YY_RULE_SETUP #line 116 "gribl.l" -return GETENV; +return CODETABLE; YY_BREAK case 41: YY_RULE_SETUP #line 117 "gribl.l" -return SMART_TABLE; +return GETENV; YY_BREAK case 42: YY_RULE_SETUP #line 118 "gribl.l" -return DICTIONARY; +return SMART_TABLE; YY_BREAK case 43: YY_RULE_SETUP #line 119 "gribl.l" -return CODETABLE; +return DICTIONARY; YY_BREAK case 44: YY_RULE_SETUP #line 120 "gribl.l" -return FLAG ; +return CODETABLE; YY_BREAK case 45: YY_RULE_SETUP #line 121 "gribl.l" -return LOOKUP ; +return FLAG ; YY_BREAK case 46: YY_RULE_SETUP #line 122 "gribl.l" -return GROUP ; +return LOOKUP ; YY_BREAK case 47: YY_RULE_SETUP #line 123 "gribl.l" -return NON_ALPHA ; +return GROUP ; YY_BREAK case 48: YY_RULE_SETUP #line 124 "gribl.l" -return META ; +return NON_ALPHA ; YY_BREAK case 49: YY_RULE_SETUP #line 125 "gribl.l" -return PADTOEVEN ; +return META ; YY_BREAK case 50: YY_RULE_SETUP #line 126 "gribl.l" -return PADTO ; +return PADTOEVEN ; YY_BREAK case 51: YY_RULE_SETUP #line 127 "gribl.l" -return PADTOMULTIPLE ; +return PADTO ; YY_BREAK case 52: YY_RULE_SETUP #line 128 "gribl.l" -return PAD ; +return PADTOMULTIPLE ; YY_BREAK case 53: YY_RULE_SETUP #line 129 "gribl.l" -return SECTION_PADDING ; +return PAD ; YY_BREAK case 54: YY_RULE_SETUP #line 130 "gribl.l" -return MESSAGE ; +return SECTION_PADDING ; YY_BREAK case 55: YY_RULE_SETUP #line 131 "gribl.l" -return MESSAGE_COPY ; +return MESSAGE ; YY_BREAK case 56: YY_RULE_SETUP #line 132 "gribl.l" -return ALIAS ; +return MESSAGE_COPY ; YY_BREAK case 57: YY_RULE_SETUP #line 133 "gribl.l" -return UNALIAS ; +return ALIAS ; YY_BREAK case 58: YY_RULE_SETUP #line 134 "gribl.l" -return POS ; +return UNALIAS ; YY_BREAK case 59: YY_RULE_SETUP #line 135 "gribl.l" -return INTCONST ; +return POS ; YY_BREAK case 60: YY_RULE_SETUP #line 136 "gribl.l" -return TRANS ; +return INTCONST ; YY_BREAK case 61: YY_RULE_SETUP #line 137 "gribl.l" -return STRING_TYPE ; +return TRANS ; YY_BREAK case 62: YY_RULE_SETUP #line 138 "gribl.l" -return LONG_TYPE ; +return STRING_TYPE ; YY_BREAK case 63: YY_RULE_SETUP #line 139 "gribl.l" -return DOUBLE_TYPE ; +return LONG_TYPE ; YY_BREAK case 64: YY_RULE_SETUP #line 140 "gribl.l" -return ITERATOR ; +return DOUBLE_TYPE ; YY_BREAK case 65: YY_RULE_SETUP #line 141 "gribl.l" -return NEAREST ; +return ITERATOR ; YY_BREAK case 66: YY_RULE_SETUP #line 142 "gribl.l" -return BOX ; +return NEAREST ; YY_BREAK case 67: YY_RULE_SETUP #line 143 "gribl.l" -return KSEC ; +return BOX ; YY_BREAK case 68: YY_RULE_SETUP #line 144 "gribl.l" -return FLAGBIT ; +return KSEC ; YY_BREAK case 69: YY_RULE_SETUP #line 145 "gribl.l" -return KSEC1EXPVER ; +return FLAGBIT ; YY_BREAK case 70: YY_RULE_SETUP #line 146 "gribl.l" -return MODIFY ; +return KSEC1EXPVER ; YY_BREAK case 71: YY_RULE_SETUP -#line 148 "gribl.l" -return G1_HALF_BYTE ; +#line 147 "gribl.l" +return MODIFY ; YY_BREAK case 72: YY_RULE_SETUP #line 149 "gribl.l" -return G1_MESSAGE_LENGTH ; +return G1_HALF_BYTE ; YY_BREAK case 73: YY_RULE_SETUP #line 150 "gribl.l" -return G1_SECTION4_LENGTH ; +return G1_MESSAGE_LENGTH ; YY_BREAK case 74: YY_RULE_SETUP -#line 152 "gribl.l" -return EXPORT; +#line 151 "gribl.l" +return G1_SECTION4_LENGTH ; YY_BREAK case 75: YY_RULE_SETUP #line 153 "gribl.l" -return REMOVE; +return EXPORT; YY_BREAK case 76: YY_RULE_SETUP #line 154 "gribl.l" -return RENAME; +return REMOVE; YY_BREAK case 77: YY_RULE_SETUP #line 155 "gribl.l" -return IS_IN_LIST; +return RENAME; YY_BREAK case 78: YY_RULE_SETUP #line 156 "gribl.l" -return IS_IN_DICT; +return IS_IN_LIST; YY_BREAK case 79: YY_RULE_SETUP #line 157 "gribl.l" -return TO_INTEGER; +return IS_IN_DICT; YY_BREAK case 80: YY_RULE_SETUP #line 158 "gribl.l" -return TO_STRING; +return TO_INTEGER; YY_BREAK case 81: YY_RULE_SETUP #line 159 "gribl.l" -return SEX2DEC; +return TO_STRING; YY_BREAK case 82: YY_RULE_SETUP #line 160 "gribl.l" -return IS_INTEGER; +return SEX2DEC; YY_BREAK case 83: YY_RULE_SETUP @@ -1895,212 +1895,217 @@ return IS_INTEGER; YY_BREAK case 84: YY_RULE_SETUP -#line 163 "gribl.l" -return SECTION_LENGTH ; +#line 162 "gribl.l" +return IS_INTEGER; YY_BREAK case 85: YY_RULE_SETUP -#line 165 "gribl.l" -return ASSERT ; +#line 164 "gribl.l" +return SECTION_LENGTH ; YY_BREAK case 86: YY_RULE_SETUP -#line 167 "gribl.l" -return READ_ONLY; +#line 166 "gribl.l" +return ASSERT ; YY_BREAK case 87: YY_RULE_SETUP #line 168 "gribl.l" -return NO_COPY; +return READ_ONLY; YY_BREAK case 88: YY_RULE_SETUP #line 169 "gribl.l" -return EDITION_SPECIFIC; +return NO_COPY; YY_BREAK case 89: YY_RULE_SETUP #line 170 "gribl.l" -return DUMP; +return EDITION_SPECIFIC; YY_BREAK case 90: YY_RULE_SETUP #line 171 "gribl.l" -return NO_FAIL; +return DUMP; YY_BREAK case 91: YY_RULE_SETUP #line 172 "gribl.l" -return HIDDEN; +return NO_FAIL; YY_BREAK case 92: YY_RULE_SETUP #line 173 "gribl.l" -return CAN_BE_MISSING; +return HIDDEN; YY_BREAK case 93: YY_RULE_SETUP #line 174 "gribl.l" -return MISSING; +return CAN_BE_MISSING; YY_BREAK case 94: YY_RULE_SETUP #line 175 "gribl.l" -return CONSTRAINT; +return MISSING; YY_BREAK case 95: YY_RULE_SETUP #line 176 "gribl.l" -return OVERRIDE; +return CONSTRAINT; YY_BREAK case 96: YY_RULE_SETUP #line 177 "gribl.l" -return COPY_OK; +return OVERRIDE; YY_BREAK case 97: YY_RULE_SETUP -#line 179 "gribl.l" -return UINT8; +#line 178 "gribl.l" +return COPY_OK; YY_BREAK case 98: YY_RULE_SETUP #line 180 "gribl.l" -return INT8; +return UINT8; YY_BREAK case 99: YY_RULE_SETUP -#line 182 "gribl.l" -return UINT16; +#line 181 "gribl.l" +return INT8; YY_BREAK case 100: YY_RULE_SETUP #line 183 "gribl.l" -return INT16; +return UINT16; YY_BREAK case 101: YY_RULE_SETUP #line 184 "gribl.l" -return UINT16_LITTLE_ENDIAN; +return INT16; YY_BREAK case 102: YY_RULE_SETUP #line 185 "gribl.l" -return INT16_LITTLE_ENDIAN; +return UINT16_LITTLE_ENDIAN; YY_BREAK case 103: YY_RULE_SETUP -#line 187 "gribl.l" -return UINT32; +#line 186 "gribl.l" +return INT16_LITTLE_ENDIAN; YY_BREAK case 104: YY_RULE_SETUP #line 188 "gribl.l" -return INT32; +return UINT32; YY_BREAK case 105: YY_RULE_SETUP #line 189 "gribl.l" -return UINT32_LITTLE_ENDIAN; +return INT32; YY_BREAK case 106: YY_RULE_SETUP #line 190 "gribl.l" -return INT32_LITTLE_ENDIAN; +return UINT32_LITTLE_ENDIAN; YY_BREAK case 107: YY_RULE_SETUP -#line 192 "gribl.l" -return UINT64; +#line 191 "gribl.l" +return INT32_LITTLE_ENDIAN; YY_BREAK case 108: YY_RULE_SETUP #line 193 "gribl.l" -return INT64; +return UINT64; YY_BREAK case 109: YY_RULE_SETUP #line 194 "gribl.l" -return UINT64_LITTLE_ENDIAN; +return INT64; YY_BREAK case 110: YY_RULE_SETUP #line 195 "gribl.l" -return INT64_LITTLE_ENDIAN; +return UINT64_LITTLE_ENDIAN; YY_BREAK case 111: YY_RULE_SETUP -#line 197 "gribl.l" -return BLOB; +#line 196 "gribl.l" +return INT64_LITTLE_ENDIAN; YY_BREAK case 112: YY_RULE_SETUP -#line 199 "gribl.l" -return SET; +#line 198 "gribl.l" +return BLOB; YY_BREAK case 113: YY_RULE_SETUP #line 200 "gribl.l" -return SET_NOFAIL; +return SET; YY_BREAK case 114: YY_RULE_SETUP #line 201 "gribl.l" -return WHEN; +return SET_NOFAIL; YY_BREAK case 115: YY_RULE_SETUP #line 202 "gribl.l" -return CASE; +return WHEN; YY_BREAK case 116: YY_RULE_SETUP #line 203 "gribl.l" -return SWITCH; +return CASE; YY_BREAK case 117: YY_RULE_SETUP #line 204 "gribl.l" -return DEFAULT; +return SWITCH; YY_BREAK case 118: YY_RULE_SETUP #line 205 "gribl.l" -return CONCEPT; +return DEFAULT; YY_BREAK case 119: YY_RULE_SETUP #line 206 "gribl.l" -return CONCEPT_NOFAIL; +return CONCEPT; YY_BREAK case 120: YY_RULE_SETUP #line 207 "gribl.l" -return HASH_ARRAY; +return CONCEPT_NOFAIL; YY_BREAK case 121: YY_RULE_SETUP #line 208 "gribl.l" -return WRITE; +return HASH_ARRAY; YY_BREAK case 122: YY_RULE_SETUP #line 209 "gribl.l" -return APPEND; +return WRITE; YY_BREAK case 123: YY_RULE_SETUP #line 210 "gribl.l" -return PRINT; +return APPEND; YY_BREAK case 124: YY_RULE_SETUP #line 211 "gribl.l" -return SKIP; +return PRINT; YY_BREAK case 125: YY_RULE_SETUP -#line 213 "gribl.l" +#line 212 "gribl.l" +return SKIP; + YY_BREAK +case 126: +YY_RULE_SETUP +#line 214 "gribl.l" { int c,q; while((c = GET_INPUT()) && isspace(c) && c != '\n') ; @@ -2118,9 +2123,9 @@ YY_RULE_SETUP grib_parser_include(grib_yytext); } YY_BREAK -case 126: +case 127: YY_RULE_SETUP -#line 230 "gribl.l" +#line 231 "gribl.l" { int c,q = grib_yytext[0]; @@ -2140,9 +2145,9 @@ YY_RULE_SETUP return STRING; } YY_BREAK -case 127: +case 128: YY_RULE_SETUP -#line 249 "gribl.l" +#line 250 "gribl.l" { int c; unsigned long val = 0; @@ -2156,15 +2161,10 @@ YY_RULE_SETUP return INTEGER; } YY_BREAK -case 128: -YY_RULE_SETUP -#line 263 "gribl.l" -{ grib_yylval.str = strdup(grib_yytext); return IDENT; } - YY_BREAK case 129: YY_RULE_SETUP #line 264 "gribl.l" -{ grib_yylval.lval = atol((const char *)grib_yytext); return INTEGER; } +{ grib_yylval.str = strdup(grib_yytext); return IDENT; } YY_BREAK case 130: YY_RULE_SETUP @@ -2174,7 +2174,7 @@ YY_RULE_SETUP case 131: YY_RULE_SETUP #line 266 "gribl.l" -{ grib_yylval.dval = atof((const char *)grib_yytext); return FLOAT; } +{ grib_yylval.lval = atol((const char *)grib_yytext); return INTEGER; } YY_BREAK case 132: YY_RULE_SETUP @@ -2188,7 +2188,12 @@ YY_RULE_SETUP YY_BREAK case 134: YY_RULE_SETUP -#line 271 "gribl.l" +#line 269 "gribl.l" +{ grib_yylval.dval = atof((const char *)grib_yytext); return FLOAT; } + YY_BREAK +case 135: +YY_RULE_SETUP +#line 272 "gribl.l" { int c; while((c = GET_INPUT()) && (c != '\n')){} @@ -2196,28 +2201,28 @@ YY_RULE_SETUP grib_yylineno++; } YY_BREAK -case 135: -YY_RULE_SETUP -#line 277 "gribl.l" -; - YY_BREAK case 136: -/* rule 136 can match eol */ YY_RULE_SETUP #line 278 "gribl.l" -grib_yylineno++; +; YY_BREAK case 137: +/* rule 137 can match eol */ YY_RULE_SETUP -#line 282 "gribl.l" -return *grib_yytext; +#line 279 "gribl.l" +grib_yylineno++; YY_BREAK case 138: YY_RULE_SETUP -#line 284 "gribl.l" +#line 283 "gribl.l" +return *grib_yytext; + YY_BREAK +case 139: +YY_RULE_SETUP +#line 285 "gribl.l" ECHO; YY_BREAK -#line 2220 "gribl.cc" +#line 2225 "gribl.cc" case YY_STATE_EOF(INITIAL): grib_yyterminate(); @@ -2514,7 +2519,7 @@ static int grib_yy_get_next_buffer (void) while ( grib_yy_chk[grib_yy_base[grib_yy_current_state] + grib_yy_c] != grib_yy_current_state ) { grib_yy_current_state = (int) grib_yy_def[grib_yy_current_state]; - if ( grib_yy_current_state >= 798 ) + if ( grib_yy_current_state >= 801 ) grib_yy_c = grib_yy_meta[grib_yy_c]; } grib_yy_current_state = grib_yy_nxt[grib_yy_base[grib_yy_current_state] + grib_yy_c]; @@ -2542,11 +2547,11 @@ static int grib_yy_get_next_buffer (void) while ( grib_yy_chk[grib_yy_base[grib_yy_current_state] + grib_yy_c] != grib_yy_current_state ) { grib_yy_current_state = (int) grib_yy_def[grib_yy_current_state]; - if ( grib_yy_current_state >= 798 ) + if ( grib_yy_current_state >= 801 ) grib_yy_c = grib_yy_meta[grib_yy_c]; } grib_yy_current_state = grib_yy_nxt[grib_yy_base[grib_yy_current_state] + grib_yy_c]; - grib_yy_is_jam = (grib_yy_current_state == 797); + grib_yy_is_jam = (grib_yy_current_state == 800); return grib_yy_is_jam ? 0 : grib_yy_current_state; } @@ -3222,7 +3227,7 @@ void grib_yyfree (void * ptr ) #define YYTABLES_NAME "grib_yytables" -#line 284 "gribl.l" +#line 285 "gribl.l" diff --git a/src/grib_yacc.cc b/src/grib_yacc.cc index b8d94ab2c..e374bc009 100644 --- a/src/grib_yacc.cc +++ b/src/grib_yacc.cc @@ -258,10 +258,11 @@ extern int grib_yydebug; OR = 375, /* OR */ NOT = 376, /* NOT */ IS = 377, /* IS */ - IDENT = 378, /* IDENT */ - STRING = 379, /* STRING */ - INTEGER = 380, /* INTEGER */ - FLOAT = 381 /* FLOAT */ + ISNOT = 378, /* ISNOT */ + IDENT = 379, /* IDENT */ + STRING = 380, /* STRING */ + INTEGER = 381, /* INTEGER */ + FLOAT = 382 /* FLOAT */ }; typedef enum grib_yytokentype grib_yytoken_kind_t; #endif @@ -390,10 +391,11 @@ extern int grib_yydebug; #define OR 375 #define NOT 376 #define IS 377 -#define IDENT 378 -#define STRING 379 -#define INTEGER 380 -#define FLOAT 381 +#define ISNOT 378 +#define IDENT 379 +#define STRING 380 +#define INTEGER 381 +#define FLOAT 382 /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED @@ -417,7 +419,7 @@ union YYSTYPE grib_rule *rules; grib_rule_entry *rule_entry; -#line 421 "y.tab.c" +#line 423 "y.tab.c" }; typedef union YYSTYPE YYSTYPE; @@ -560,77 +562,78 @@ enum grib_yysymbol_kind_t YYSYMBOL_OR = 120, /* OR */ YYSYMBOL_NOT = 121, /* NOT */ YYSYMBOL_IS = 122, /* IS */ - YYSYMBOL_IDENT = 123, /* IDENT */ - YYSYMBOL_STRING = 124, /* STRING */ - YYSYMBOL_INTEGER = 125, /* INTEGER */ - YYSYMBOL_FLOAT = 126, /* FLOAT */ - YYSYMBOL_127_ = 127, /* ',' */ - YYSYMBOL_128_ = 128, /* ';' */ - YYSYMBOL_129_ = 129, /* '[' */ - YYSYMBOL_130_ = 130, /* ']' */ - YYSYMBOL_131_ = 131, /* '(' */ - YYSYMBOL_132_ = 132, /* ')' */ - YYSYMBOL_133_ = 133, /* '=' */ - YYSYMBOL_134_ = 134, /* '.' */ - YYSYMBOL_135_ = 135, /* '{' */ - YYSYMBOL_136_ = 136, /* '}' */ - YYSYMBOL_137_ = 137, /* ':' */ - YYSYMBOL_138_ = 138, /* '-' */ - YYSYMBOL_139_ = 139, /* '^' */ - YYSYMBOL_140_ = 140, /* '*' */ - YYSYMBOL_141_ = 141, /* '/' */ - YYSYMBOL_142_ = 142, /* '%' */ - YYSYMBOL_143_ = 143, /* '+' */ - YYSYMBOL_YYACCEPT = 144, /* $accept */ - YYSYMBOL_all = 145, /* all */ - YYSYMBOL_empty = 146, /* empty */ - YYSYMBOL_dvalues = 147, /* dvalues */ - YYSYMBOL_svalues = 148, /* svalues */ - YYSYMBOL_integer_array = 149, /* integer_array */ - YYSYMBOL_instructions = 150, /* instructions */ - YYSYMBOL_instruction = 151, /* instruction */ - YYSYMBOL_semi = 152, /* semi */ - YYSYMBOL_argument_list = 153, /* argument_list */ - YYSYMBOL_arguments = 154, /* arguments */ - YYSYMBOL_argument = 155, /* argument */ - YYSYMBOL_simple = 156, /* simple */ - YYSYMBOL_if_block = 157, /* if_block */ - YYSYMBOL_when_block = 158, /* when_block */ - YYSYMBOL_set = 159, /* set */ - YYSYMBOL_set_list = 160, /* set_list */ - YYSYMBOL_default = 161, /* default */ - YYSYMBOL_flags = 162, /* flags */ - YYSYMBOL_flag_list = 163, /* flag_list */ - YYSYMBOL_flag = 164, /* flag */ - YYSYMBOL_list_block = 165, /* list_block */ - YYSYMBOL_while_block = 166, /* while_block */ - YYSYMBOL_trigger_block = 167, /* trigger_block */ - YYSYMBOL_concept_block = 168, /* concept_block */ - YYSYMBOL_concept_list = 169, /* concept_list */ - YYSYMBOL_hash_array_list = 170, /* hash_array_list */ - YYSYMBOL_hash_array_block = 171, /* hash_array_block */ - YYSYMBOL_case_list = 172, /* case_list */ - YYSYMBOL_case_value = 173, /* case_value */ - YYSYMBOL_switch_block = 174, /* switch_block */ - YYSYMBOL_concept_value = 175, /* concept_value */ - YYSYMBOL_concept_conditions = 176, /* concept_conditions */ - YYSYMBOL_concept_condition = 177, /* concept_condition */ - YYSYMBOL_hash_array_value = 178, /* hash_array_value */ - YYSYMBOL_string_or_ident = 179, /* string_or_ident */ - YYSYMBOL_atom = 180, /* atom */ - YYSYMBOL_power = 181, /* power */ - YYSYMBOL_factor = 182, /* factor */ - YYSYMBOL_term = 183, /* term */ - YYSYMBOL_condition = 184, /* condition */ - YYSYMBOL_conjunction = 185, /* conjunction */ - YYSYMBOL_disjunction = 186, /* disjunction */ - YYSYMBOL_expression = 187, /* expression */ - YYSYMBOL_rule = 188, /* rule */ - YYSYMBOL_rule_entry = 189, /* rule_entry */ - YYSYMBOL_rule_entries = 190, /* rule_entries */ - YYSYMBOL_fact = 191, /* fact */ - YYSYMBOL_conditional_rule = 192, /* conditional_rule */ - YYSYMBOL_rules = 193 /* rules */ + YYSYMBOL_ISNOT = 123, /* ISNOT */ + YYSYMBOL_IDENT = 124, /* IDENT */ + YYSYMBOL_STRING = 125, /* STRING */ + YYSYMBOL_INTEGER = 126, /* INTEGER */ + YYSYMBOL_FLOAT = 127, /* FLOAT */ + YYSYMBOL_128_ = 128, /* ',' */ + YYSYMBOL_129_ = 129, /* ';' */ + YYSYMBOL_130_ = 130, /* '[' */ + YYSYMBOL_131_ = 131, /* ']' */ + YYSYMBOL_132_ = 132, /* '(' */ + YYSYMBOL_133_ = 133, /* ')' */ + YYSYMBOL_134_ = 134, /* '=' */ + YYSYMBOL_135_ = 135, /* '.' */ + YYSYMBOL_136_ = 136, /* '{' */ + YYSYMBOL_137_ = 137, /* '}' */ + YYSYMBOL_138_ = 138, /* ':' */ + YYSYMBOL_139_ = 139, /* '-' */ + YYSYMBOL_140_ = 140, /* '^' */ + YYSYMBOL_141_ = 141, /* '*' */ + YYSYMBOL_142_ = 142, /* '/' */ + YYSYMBOL_143_ = 143, /* '%' */ + YYSYMBOL_144_ = 144, /* '+' */ + YYSYMBOL_YYACCEPT = 145, /* $accept */ + YYSYMBOL_all = 146, /* all */ + YYSYMBOL_empty = 147, /* empty */ + YYSYMBOL_dvalues = 148, /* dvalues */ + YYSYMBOL_svalues = 149, /* svalues */ + YYSYMBOL_integer_array = 150, /* integer_array */ + YYSYMBOL_instructions = 151, /* instructions */ + YYSYMBOL_instruction = 152, /* instruction */ + YYSYMBOL_semi = 153, /* semi */ + YYSYMBOL_argument_list = 154, /* argument_list */ + YYSYMBOL_arguments = 155, /* arguments */ + YYSYMBOL_argument = 156, /* argument */ + YYSYMBOL_simple = 157, /* simple */ + YYSYMBOL_if_block = 158, /* if_block */ + YYSYMBOL_when_block = 159, /* when_block */ + YYSYMBOL_set = 160, /* set */ + YYSYMBOL_set_list = 161, /* set_list */ + YYSYMBOL_default = 162, /* default */ + YYSYMBOL_flags = 163, /* flags */ + YYSYMBOL_flag_list = 164, /* flag_list */ + YYSYMBOL_flag = 165, /* flag */ + YYSYMBOL_list_block = 166, /* list_block */ + YYSYMBOL_while_block = 167, /* while_block */ + YYSYMBOL_trigger_block = 168, /* trigger_block */ + YYSYMBOL_concept_block = 169, /* concept_block */ + YYSYMBOL_concept_list = 170, /* concept_list */ + YYSYMBOL_hash_array_list = 171, /* hash_array_list */ + YYSYMBOL_hash_array_block = 172, /* hash_array_block */ + YYSYMBOL_case_list = 173, /* case_list */ + YYSYMBOL_case_value = 174, /* case_value */ + YYSYMBOL_switch_block = 175, /* switch_block */ + YYSYMBOL_concept_value = 176, /* concept_value */ + YYSYMBOL_concept_conditions = 177, /* concept_conditions */ + YYSYMBOL_concept_condition = 178, /* concept_condition */ + YYSYMBOL_hash_array_value = 179, /* hash_array_value */ + YYSYMBOL_string_or_ident = 180, /* string_or_ident */ + YYSYMBOL_atom = 181, /* atom */ + YYSYMBOL_power = 182, /* power */ + YYSYMBOL_factor = 183, /* factor */ + YYSYMBOL_term = 184, /* term */ + YYSYMBOL_condition = 185, /* condition */ + YYSYMBOL_conjunction = 186, /* conjunction */ + YYSYMBOL_disjunction = 187, /* disjunction */ + YYSYMBOL_expression = 188, /* expression */ + YYSYMBOL_rule = 189, /* rule */ + YYSYMBOL_rule_entry = 190, /* rule_entry */ + YYSYMBOL_rule_entries = 191, /* rule_entries */ + YYSYMBOL_fact = 192, /* fact */ + YYSYMBOL_conditional_rule = 193, /* conditional_rule */ + YYSYMBOL_rules = 194 /* rules */ }; typedef enum grib_yysymbol_kind_t grib_yysymbol_kind_t; @@ -958,19 +961,19 @@ union grib_yyalloc /* YYFINAL -- State number of the termination state. */ #define YYFINAL 214 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 1892 +#define YYLAST 1946 /* YYNTOKENS -- Number of terminals. */ -#define YYNTOKENS 144 +#define YYNTOKENS 145 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 50 /* YYNRULES -- Number of rules. */ -#define YYNRULES 267 +#define YYNRULES 268 /* YYNSTATES -- Number of states. */ -#define YYNSTATES 903 +#define YYNSTATES 905 /* YYMAXUTOK -- Last valid token kind. */ -#define YYMAXUTOK 381 +#define YYMAXUTOK 382 /* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM @@ -987,16 +990,16 @@ static const grib_yytype_uint8 grib_yytranslate[] = 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 142, 2, 2, - 131, 132, 140, 143, 127, 138, 134, 141, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 137, 128, - 2, 133, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 143, 2, 2, + 132, 133, 141, 144, 128, 139, 135, 142, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 138, 129, + 2, 134, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 129, 2, 130, 139, 2, 2, 2, 2, 2, + 2, 130, 2, 131, 140, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 135, 2, 136, 2, 2, 2, 2, + 2, 2, 2, 136, 2, 137, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, @@ -1022,40 +1025,40 @@ static const grib_yytype_uint8 grib_yytranslate[] = 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - 125, 126 + 125, 126, 127 }; #if YYDEBUG /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ static const grib_yytype_int16 grib_yyrline[] = { - 0, 262, 262, 264, 265, 266, 267, 269, 273, 276, - 277, 278, 279, 282, 283, 287, 288, 291, 292, 293, - 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, - 309, 310, 313, 314, 317, 318, 321, 325, 328, 331, - 334, 337, 340, 343, 346, 349, 352, 355, 359, 362, - 365, 368, 371, 374, 377, 380, 383, 386, 397, 401, - 404, 407, 410, 413, 416, 419, 422, 425, 428, 431, - 434, 438, 441, 444, 447, 450, 453, 456, 459, 462, - 465, 468, 471, 474, 477, 480, 484, 487, 490, 493, - 496, 498, 501, 504, 507, 510, 513, 516, 519, 522, - 525, 528, 531, 534, 537, 540, 543, 545, 547, 550, - 553, 556, 560, 564, 567, 570, 582, 594, 606, 609, - 612, 614, 617, 620, 621, 622, 623, 625, 628, 629, - 630, 631, 632, 633, 634, 635, 637, 638, 639, 640, - 641, 645, 646, 647, 648, 652, 653, 654, 657, 658, - 661, 662, 666, 667, 670, 671, 674, 675, 678, 679, - 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, - 690, 691, 694, 697, 700, 703, 704, 705, 706, 707, - 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, - 718, 719, 723, 724, 727, 728, 731, 732, 735, 736, - 739, 743, 744, 745, 748, 750, 752, 754, 758, 759, - 762, 763, 767, 769, 773, 774, 775, 776, 779, 780, - 781, 783, 784, 785, 786, 787, 788, 792, 793, 796, - 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, - 807, 810, 811, 812, 815, 817, 818, 819, 820, 821, - 822, 827, 828, 831, 832, 835, 836, 839, 845, 846, - 849, 850, 853, 854, 857, 861, 864, 865 + 0, 263, 263, 265, 266, 267, 268, 270, 274, 277, + 278, 279, 280, 283, 284, 288, 289, 292, 293, 294, + 295, 298, 299, 300, 301, 302, 303, 304, 305, 306, + 310, 311, 314, 315, 318, 319, 322, 326, 329, 332, + 335, 338, 341, 344, 347, 350, 353, 356, 360, 363, + 366, 369, 372, 375, 378, 381, 384, 387, 398, 402, + 405, 408, 411, 414, 417, 420, 423, 426, 429, 432, + 435, 439, 442, 445, 448, 451, 454, 457, 460, 463, + 466, 469, 472, 475, 478, 481, 485, 488, 491, 494, + 497, 499, 502, 505, 508, 511, 514, 517, 520, 523, + 526, 529, 532, 535, 538, 541, 544, 546, 548, 551, + 554, 557, 561, 565, 568, 571, 583, 595, 607, 610, + 613, 615, 618, 621, 622, 623, 624, 626, 629, 630, + 631, 632, 633, 634, 635, 636, 638, 639, 640, 641, + 642, 646, 647, 648, 649, 653, 654, 655, 658, 659, + 662, 663, 667, 668, 671, 672, 675, 676, 679, 680, + 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, + 691, 692, 695, 698, 701, 704, 705, 706, 707, 708, + 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, + 719, 720, 724, 725, 728, 729, 732, 733, 736, 737, + 740, 744, 745, 746, 749, 751, 753, 755, 759, 760, + 763, 764, 768, 770, 774, 775, 776, 777, 780, 781, + 782, 784, 785, 786, 787, 788, 789, 793, 794, 797, + 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, + 808, 811, 812, 813, 816, 818, 819, 820, 821, 822, + 823, 824, 829, 830, 833, 834, 837, 838, 841, 847, + 848, 851, 852, 855, 856, 859, 863, 866, 867 }; #endif @@ -1091,10 +1094,10 @@ static const char *const grib_yytname[] = "G1_HALF_BYTE", "G1_MESSAGE_LENGTH", "G1_SECTION4_LENGTH", "SECTION_LENGTH", "LENGTH", "FLAG", "ITERATOR", "NEAREST", "BOX", "KSEC", "ASSERT", "SUBSTR", "CASE", "SWITCH", "DEFAULT", "EQ", "NE", "GE", "LE", - "LT", "GT", "BIT", "BITOFF", "AND", "OR", "NOT", "IS", "IDENT", "STRING", - "INTEGER", "FLOAT", "','", "';'", "'['", "']'", "'('", "')'", "'='", - "'.'", "'{'", "'}'", "':'", "'-'", "'^'", "'*'", "'/'", "'%'", "'+'", - "$accept", "all", "empty", "dvalues", "svalues", "integer_array", + "LT", "GT", "BIT", "BITOFF", "AND", "OR", "NOT", "IS", "ISNOT", "IDENT", + "STRING", "INTEGER", "FLOAT", "','", "';'", "'['", "']'", "'('", "')'", + "'='", "'.'", "'{'", "'}'", "':'", "'-'", "'^'", "'*'", "'/'", "'%'", + "'+'", "$accept", "all", "empty", "dvalues", "svalues", "integer_array", "instructions", "instruction", "semi", "argument_list", "arguments", "argument", "simple", "if_block", "when_block", "set", "set_list", "default", "flags", "flag_list", "flag", "list_block", "while_block", @@ -1113,7 +1116,7 @@ grib_yysymbol_name (grib_yysymbol_kind_t grib_yysymbol) } #endif -#define YYPACT_NINF (-654) +#define YYPACT_NINF (-658) #define grib_yypact_value_is_default(Yyn) \ ((Yyn) == YYPACT_NINF) @@ -1127,97 +1130,97 @@ grib_yysymbol_name (grib_yysymbol_kind_t grib_yysymbol) STATE-NUM. */ static const grib_yytype_int16 grib_yypact[] = { - 1435, -654, -24, -10, 8, 65, -67, 115, 162, 147, - 186, 202, 204, 64, 200, 213, 82, 245, 249, 253, - 264, 277, 281, 282, 284, 285, 287, 288, 289, 290, - 291, 292, 293, 295, 294, 300, 303, 296, 297, 298, - 308, 311, 312, 315, 316, 318, 319, 320, 258, 321, - 322, -16, -12, 61, 323, 847, 305, 324, 325, 327, - 326, 328, 333, 334, 335, 337, 332, 347, 348, 349, - 356, 357, 358, 361, 354, 355, 7, 283, 314, -79, - 487, -654, -654, 1538, 360, -654, -654, -654, -654, -654, - -654, 256, 128, -654, -654, -654, -654, 18, -654, -654, - -654, -654, 847, 847, 366, 365, 367, 369, 370, 847, - 371, 157, 362, 372, -654, -654, 847, 38, 373, 374, - 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, - 362, 362, 362, 362, 380, 375, 187, 379, 376, 386, - 221, 381, -47, -654, 383, 387, 382, 193, -94, 195, - 377, 847, 390, 398, -654, 394, -654, 413, -654, 251, - 411, 414, 418, 419, -654, -654, 420, 422, 847, 423, - -654, -654, -654, 847, 109, -654, -654, -654, 364, 433, - 405, -654, -75, -20, 149, 437, 441, -654, 434, -654, - 431, 377, 438, 377, 435, 436, 442, -654, 439, 443, - 444, 449, 447, 448, 450, 847, 847, 847, 454, 235, - -76, 445, 66, 451, -654, 459, 9, 468, 1766, -654, - -654, 460, 462, 463, -654, 464, 469, -654, 461, 470, - -654, 473, 474, 481, 471, 485, -654, -654, 491, 500, - 847, 847, -654, 377, 377, 501, 502, 847, 509, 377, - 503, 505, 377, 377, 377, 377, 377, 377, 377, 377, - 377, 377, 377, 377, 377, 377, 847, 510, 512, 527, - 847, 528, 529, 538, 543, 546, 504, 548, 847, 539, - 847, 549, 550, 256, 553, 128, 555, 556, 256, 544, - -654, -654, 535, 302, 847, 551, 552, 558, 563, 847, - 557, 559, 575, 578, 260, 149, 568, 570, -654, -654, - 847, -84, 109, 109, 109, 109, 109, 109, 84, 84, - 84, 84, 84, 84, 84, 84, 847, 847, 554, 847, - -654, 574, -654, 847, 847, 847, 577, 579, 580, 595, - 847, 847, 847, -654, 573, 594, 847, 596, 597, 598, - 599, 600, 607, 610, 606, 607, 610, 610, 847, 612, - 377, 610, 847, 11, -654, 601, 602, 615, 616, 847, - 847, 611, 614, -654, 624, 627, 617, 262, 619, -654, - -654, -654, 630, 620, 626, 362, -654, 634, 635, -654, - -654, -654, -654, -654, -654, -654, -654, -654, -654, -654, - -654, -654, -654, 629, 637, 638, 640, 633, 643, 644, - 377, 639, -654, 847, 645, 377, 266, 377, 641, 41, - -11, -78, 647, -54, 87, 55, -74, -654, -654, -654, - -654, -654, -654, -654, -654, -654, -654, -654, -654, -654, - -654, 648, -654, -49, -654, -36, -654, -654, 646, 652, - 653, 654, 649, 655, 656, 94, 658, 657, 665, -654, - 663, -654, -654, -654, -654, -654, -654, -654, -654, -654, - -654, -75, -75, -20, -20, -20, -20, -20, -20, 149, - 437, 673, 667, 674, 668, 669, 670, 681, 682, 683, - 687, 679, 680, 685, -654, 636, 686, 847, 847, 847, - 847, 847, -654, -56, 690, 677, 610, -654, 93, 678, - 688, 650, 362, -654, 689, 694, 695, 1663, 1766, 108, - 215, 1766, 362, 362, 362, 362, 1766, 362, 377, 224, - 236, 362, 238, 847, 946, 362, 1036, 697, -654, 696, - 699, 698, -654, -654, -654, -52, -654, 362, 709, 703, - 717, 256, 377, 719, 377, 722, 706, 727, 256, 377, - 544, 729, 730, 313, 651, -654, -35, -34, -654, -654, - -654, -654, -654, 732, 733, 737, -654, -654, 739, 740, - -654, 726, -654, 377, -654, -654, -654, 723, 738, 362, - 847, -654, -654, -654, 762, 736, 742, 744, 745, 747, - 748, 757, -654, 788, -654, -654, -654, -654, -654, 362, - 377, -654, 750, 752, 10, 754, -62, 755, 756, 847, - 377, 847, 377, 758, 377, 377, 377, 377, 760, 377, - -654, 847, 377, 847, 377, 377, 847, 377, 362, 847, - 362, 377, 847, 362, 847, 377, 362, 847, 271, 377, - 377, 766, 256, 97, -45, -654, 770, -654, 774, 256, - 104, -27, -654, -654, 769, 771, 651, -63, -654, 775, - -654, 759, -654, 773, 778, 117, 789, 791, -654, -654, - 847, 847, -654, 362, 847, -72, -654, 1766, 377, 377, - 377, 362, 362, -654, 607, 787, 377, -654, 1766, -62, - 182, 866, -654, -654, 914, 794, -654, 795, -654, -654, - -654, -654, -654, -654, -654, -654, 797, -654, 798, -654, - -654, 799, -654, 377, 800, 570, -65, -654, 802, 377, - 803, -654, 377, 805, -654, -654, -654, -654, 807, 39, - 814, 786, 377, 808, 817, 53, 819, 806, 377, 847, - 847, 775, 938, 651, -654, -654, -654, -654, 820, -654, - 821, 823, 818, 824, 377, 812, 816, -654, -654, 815, - -654, -654, -654, 377, 377, 100, -654, -654, 822, 825, - 362, 362, 362, 362, 362, -654, 362, 828, -654, 362, - -654, 377, -654, 362, 121, 377, 834, 256, -654, 835, - 145, 377, 836, 256, -654, -654, -654, 829, 775, 837, - 843, 845, -654, -654, -654, 1766, 1306, -654, -654, -654, - 827, 1766, 1766, 377, 377, 377, 377, 377, 377, 856, - 377, -654, 377, 857, 377, -654, 858, 57, 859, 863, - 377, -654, 864, 144, 313, -654, -654, -654, -654, -654, - 852, -654, 853, 854, -654, -654, -654, -654, -654, -654, - 860, -654, -654, 151, -654, 152, 377, 861, 862, -654, - 159, 377, -51, -654, -654, -654, 377, 868, 377, 872, - 377, -654, 377, 377, 873, 377, -654, -654, -654, 865, - -654, 867, -654, -654, -654, 870, -654, 377, 377, 377, - -654, -654, -654 + 1507, -658, -37, -14, 51, 142, -53, -40, 58, 32, + 72, 98, 85, 25, 99, 139, 177, 162, 168, 176, + 197, 205, 208, 212, 228, 270, 272, 277, 310, 313, + 314, 315, 126, 311, 316, 317, 318, 319, 320, 321, + 322, 325, 328, 329, 330, 331, 333, 334, 291, 356, + 357, -12, 14, 15, 364, 755, 360, 366, 365, 374, + 369, 376, 378, 379, 385, 386, 381, 383, 384, 387, + 394, 397, 398, 400, 393, 401, -11, 407, 409, -81, + 535, -658, -658, 1610, 415, -658, -658, -658, -658, -658, + -658, 201, 82, -658, -658, -658, -658, 18, -658, -658, + -658, -658, 755, 755, 421, 422, 423, 425, 426, 755, + 427, 183, 418, 430, -658, -658, 755, -38, 431, 432, + 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, + 418, 418, 418, 418, 429, 434, 235, 433, 435, 437, + 233, 436, -78, -658, 438, 439, 443, 89, -94, 132, + 428, 755, 444, 450, -658, 451, -658, 459, -658, 256, + 456, 457, 458, 460, -658, -658, 461, 463, 755, 465, + -658, -658, -658, 755, -45, -658, -658, -658, 441, 264, + 424, -658, -52, -71, 259, 472, 478, -658, 446, -658, + 467, 428, 474, 428, 469, 470, 471, -658, 479, 480, + 481, 482, 477, 483, 485, 755, 755, 755, 487, 230, + -80, 468, 22, 475, -658, 488, 7, 486, 1819, -658, + -658, 490, 493, 495, -658, 496, 497, -658, 489, 498, + -658, 500, 501, 502, 491, 503, -658, -658, 504, 508, + 755, 755, -658, 428, 428, 510, 509, 755, 524, 428, + 525, 522, 428, 428, 428, 428, 428, 428, 428, 428, + 428, 428, 428, 428, 428, 428, 755, 526, 528, 529, + 755, 530, 531, 539, 540, 541, 534, 543, 755, 134, + 755, 544, 545, 201, 546, 82, 547, 548, 201, 419, + -658, -658, 542, 84, 755, 549, 550, 551, 552, 755, + 553, 554, 555, 556, 268, 259, 303, 558, -658, -658, + 755, -76, -76, -45, -45, -45, -45, -45, -45, 258, + 258, 258, 258, 258, 258, 258, 258, 755, 755, 484, + 755, -658, 561, -658, 755, 755, 755, 564, 565, 566, + 569, 755, 755, 755, -658, 570, 571, 755, 573, 575, + 576, 591, 592, 560, 557, 596, 560, 557, 557, 755, + 578, 428, 557, 755, 17, -658, 537, 538, 597, 598, + 755, 755, 590, 593, -658, 606, 607, 599, 293, 600, + -658, -658, -658, 608, 602, 603, 418, -658, 612, 615, + -658, -658, -658, -658, -658, -658, -658, -658, -658, -658, + -658, -658, -658, -658, 609, 617, 618, 619, 611, 621, + 622, 428, 613, -658, 755, 624, 428, 262, 428, 616, + -9, 57, -90, 623, -73, 30, 133, -25, -658, -658, + -658, -658, -658, -658, -658, -658, -658, -658, -658, -658, + -658, -658, 625, -658, -48, -658, 251, -658, -658, 627, + 629, 630, 632, 626, 634, 639, 64, 636, 642, 643, + -658, 640, -658, -658, -658, -658, -658, -658, -658, -658, + -658, -658, -658, -52, -52, -71, -71, -71, -71, -71, + -71, 259, 472, 648, 644, 654, 646, 647, 649, 657, + 659, 660, 661, 653, 664, 665, -658, 658, 666, 755, + 755, 755, 755, 755, -658, 33, 668, 476, 557, -658, + 203, 667, 670, 672, 418, -658, 671, 676, 677, 1716, + 1819, 154, 169, 1819, 418, 418, 418, 418, 1819, 418, + 428, 172, 180, 418, 186, 755, 869, 418, 1035, 628, + -658, 687, 679, 681, -658, -658, -658, -67, -658, 418, + 633, 678, 696, 201, 428, 697, 428, 700, 685, 702, + 201, 428, 419, 703, 704, 340, 701, -658, -61, -59, + -658, -658, -658, -658, -658, 707, 712, 713, -658, -658, + 714, 716, -658, 715, -658, 428, -658, -658, -658, 717, + 719, 418, 755, -658, -658, -658, 506, 711, 720, 723, + 724, 727, 728, 737, -658, 745, -658, -658, -658, -658, + -658, 418, 428, -658, 729, 731, 9, 736, -65, 741, + 746, 755, 428, 755, 428, 748, 428, 428, 428, 428, + 749, 428, -658, 755, 428, 755, 428, 428, 755, 428, + 418, 755, 418, 428, 755, 418, 755, 428, 418, 755, + 299, 428, 428, 740, 201, 71, -16, -658, 763, -658, + 764, 201, 86, 61, -658, -658, 730, 761, 701, -62, + -658, 767, -658, 775, -658, 768, 769, 104, 776, 778, + -658, -658, 755, 755, -658, 418, 755, -82, -658, 1819, + 428, 428, 428, 418, 418, -658, 560, 774, 428, -658, + 1819, -65, 455, 868, -658, -658, 901, 777, -658, 779, + -658, -658, -658, -658, -658, -658, -658, -658, 780, -658, + 781, -658, -658, 782, -658, 428, 783, 558, -66, -658, + 784, 428, 785, -658, 428, 786, -658, -658, -658, -658, + 790, 76, 795, 773, 428, 791, 797, 103, 798, 788, + 428, 755, 755, 767, 916, 701, -658, -658, -658, -658, + 799, -658, 802, 805, 800, 801, 428, 804, 806, -658, + -658, 803, -658, -658, -658, 428, 428, 222, -658, -658, + 807, 809, 418, 418, 418, 418, 418, -658, 418, 814, + -658, 418, -658, 428, -658, 418, 105, 428, 808, 201, + -658, 811, 111, 428, 819, 201, -658, -658, -658, 812, + 767, 816, 817, 820, -658, -658, -658, 1819, 1377, -658, + -658, -658, 825, 1819, 1819, 428, 428, 428, 428, 428, + 428, 813, 428, -658, 428, 831, 428, -658, 834, 156, + 835, 836, 428, -658, 837, 171, 340, -658, -658, -658, + -658, -658, 826, -658, 827, 828, -658, -658, -658, -658, + -658, -658, 829, -658, -658, 114, -658, 115, 428, 838, + 839, -658, 129, 428, -60, -658, -658, -658, 428, 843, + 428, 844, 428, -658, 428, 428, 846, 428, -658, -658, + -658, 841, -658, 845, -658, -658, -658, 847, -658, 428, + 428, 428, -658, -658, -658 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. @@ -1234,8 +1237,8 @@ static const grib_yytype_int16 grib_yydefact[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 17, 0, 22, 28, 23, 24, 25, - 26, 3, 4, 27, 29, 192, 194, 266, 264, 258, - 259, 6, 0, 0, 0, 0, 0, 0, 0, 8, + 26, 3, 4, 27, 29, 192, 194, 267, 265, 259, + 260, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 8, 0, 68, 69, 0, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, @@ -1243,99 +1246,99 @@ static const grib_yytype_int16 grib_yydefact[] = 8, 0, 0, 0, 128, 0, 132, 0, 137, 0, 0, 0, 0, 0, 221, 222, 0, 0, 0, 215, 217, 219, 220, 0, 0, 32, 119, 33, 34, 218, - 228, 234, 243, 252, 254, 256, 257, 36, 0, 261, + 228, 234, 243, 253, 255, 257, 258, 36, 0, 262, 0, 8, 0, 8, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 1, 0, 0, 0, 20, 18, 21, 0, 0, 0, 193, 0, 0, 195, 0, 0, - 267, 0, 0, 0, 0, 0, 107, 108, 0, 0, + 268, 0, 0, 0, 0, 0, 107, 108, 0, 0, 8, 8, 152, 8, 8, 0, 0, 0, 0, 8, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 122, 0, 0, 0, 0, 0, 0, 0, 8, - 0, 0, 0, 0, 0, 251, 0, 0, 218, 224, + 0, 0, 0, 0, 0, 252, 0, 0, 218, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, - 106, 0, 105, 8, 8, 8, 0, 0, 0, 0, - 8, 8, 8, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 8, 0, 0, 0, 19, 0, 0, 0, 0, 0, - 0, 0, 0, 136, 0, 0, 0, 0, 0, 153, - 42, 47, 0, 0, 0, 8, 70, 0, 0, 72, - 71, 74, 73, 76, 75, 78, 77, 80, 79, 82, - 81, 84, 83, 0, 0, 0, 0, 0, 0, 0, - 8, 0, 112, 8, 0, 8, 0, 8, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 159, 168, 158, - 169, 170, 171, 161, 160, 162, 164, 163, 165, 166, - 167, 155, 156, 0, 123, 0, 124, 127, 131, 135, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, - 0, 223, 35, 215, 250, 227, 232, 233, 229, 230, - 231, 242, 241, 245, 249, 247, 248, 246, 244, 253, - 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 121, 0, 0, 8, 8, 8, - 8, 8, 15, 0, 0, 0, 208, 260, 0, 0, - 0, 0, 8, 92, 0, 0, 0, 0, 0, 8, - 8, 0, 8, 8, 8, 8, 0, 8, 8, 8, - 8, 8, 8, 0, 0, 8, 0, 0, 109, 0, - 0, 0, 89, 11, 9, 0, 90, 8, 0, 0, - 0, 0, 8, 0, 8, 0, 0, 0, 0, 8, - 0, 0, 0, 0, 0, 13, 0, 0, 130, 134, - 139, 138, 118, 0, 0, 0, 240, 235, 0, 0, - 226, 0, 100, 8, 101, 102, 103, 0, 0, 8, - 0, 115, 116, 117, 0, 0, 0, 0, 0, 0, - 0, 0, 213, 0, 205, 209, 212, 204, 206, 8, - 8, 207, 0, 0, 0, 0, 262, 0, 0, 8, - 8, 8, 8, 0, 8, 8, 8, 8, 0, 8, - 86, 8, 8, 8, 8, 8, 8, 8, 8, 8, - 8, 8, 8, 8, 8, 8, 8, 8, 0, 8, - 8, 0, 0, 0, 0, 175, 0, 196, 0, 0, - 0, 0, 184, 157, 0, 0, 0, 0, 30, 145, - 125, 0, 126, 0, 0, 0, 0, 0, 120, 104, - 8, 8, 96, 8, 0, 0, 198, 0, 8, 8, - 8, 8, 8, 16, 0, 0, 8, 93, 0, 0, - 0, 141, 263, 265, 143, 0, 37, 0, 39, 174, - 41, 48, 43, 51, 173, 87, 0, 52, 0, 54, - 85, 0, 49, 8, 0, 36, 8, 60, 0, 8, - 0, 111, 8, 0, 12, 10, 91, 67, 0, 0, - 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, - 0, 150, 146, 0, 31, 14, 236, 237, 0, 238, - 0, 0, 0, 0, 8, 0, 0, 203, 199, 0, - 44, 46, 45, 8, 8, 0, 210, 94, 0, 0, - 8, 8, 8, 8, 8, 57, 8, 0, 56, 8, - 63, 8, 113, 8, 0, 8, 0, 0, 182, 0, - 0, 8, 0, 0, 190, 148, 149, 0, 151, 0, - 0, 0, 97, 98, 65, 0, 0, 172, 61, 62, - 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, - 8, 66, 8, 0, 8, 176, 0, 0, 0, 0, - 8, 185, 0, 0, 0, 239, 214, 216, 200, 202, - 0, 211, 0, 0, 38, 40, 53, 55, 50, 59, - 0, 64, 114, 0, 179, 0, 8, 0, 0, 187, - 0, 8, 0, 201, 142, 144, 8, 0, 8, 0, - 8, 183, 8, 8, 0, 8, 191, 147, 58, 0, - 177, 0, 181, 197, 186, 0, 189, 8, 8, 8, - 178, 180, 188 + 8, 106, 0, 105, 8, 8, 8, 0, 0, 0, + 0, 8, 8, 8, 99, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 8, 0, 0, 0, 19, 0, 0, 0, 0, + 0, 0, 0, 0, 136, 0, 0, 0, 0, 0, + 153, 42, 47, 0, 0, 0, 8, 70, 0, 0, + 72, 71, 74, 73, 76, 75, 78, 77, 80, 79, + 82, 81, 84, 83, 0, 0, 0, 0, 0, 0, + 0, 8, 0, 112, 8, 0, 8, 0, 8, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 159, 168, + 158, 169, 170, 171, 161, 160, 162, 164, 163, 165, + 166, 167, 155, 156, 0, 123, 0, 124, 127, 131, + 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 225, 0, 223, 35, 215, 250, 251, 227, 232, 233, + 229, 230, 231, 242, 241, 245, 249, 247, 248, 246, + 244, 254, 256, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 121, 0, 0, 8, + 8, 8, 8, 8, 15, 0, 0, 0, 208, 261, + 0, 0, 0, 0, 8, 92, 0, 0, 0, 0, + 0, 8, 8, 0, 8, 8, 8, 8, 0, 8, + 8, 8, 8, 8, 8, 0, 0, 8, 0, 0, + 109, 0, 0, 0, 89, 11, 9, 0, 90, 8, + 0, 0, 0, 0, 8, 0, 8, 0, 0, 0, + 0, 8, 0, 0, 0, 0, 0, 13, 0, 0, + 130, 134, 139, 138, 118, 0, 0, 0, 240, 235, + 0, 0, 226, 0, 100, 8, 101, 102, 103, 0, + 0, 8, 0, 115, 116, 117, 0, 0, 0, 0, + 0, 0, 0, 0, 213, 0, 205, 209, 212, 204, + 206, 8, 8, 207, 0, 0, 0, 0, 263, 0, + 0, 8, 8, 8, 8, 0, 8, 8, 8, 8, + 0, 8, 86, 8, 8, 8, 8, 8, 8, 8, + 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, + 0, 8, 8, 0, 0, 0, 0, 175, 0, 196, + 0, 0, 0, 0, 184, 157, 0, 0, 0, 0, + 30, 145, 125, 0, 126, 0, 0, 0, 0, 0, + 120, 104, 8, 8, 96, 8, 0, 0, 198, 0, + 8, 8, 8, 8, 8, 16, 0, 0, 8, 93, + 0, 0, 0, 141, 264, 266, 143, 0, 37, 0, + 39, 174, 41, 48, 43, 51, 173, 87, 0, 52, + 0, 54, 85, 0, 49, 8, 0, 36, 8, 60, + 0, 8, 0, 111, 8, 0, 12, 10, 91, 67, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, + 8, 0, 0, 150, 146, 0, 31, 14, 236, 237, + 0, 238, 0, 0, 0, 0, 8, 0, 0, 203, + 199, 0, 44, 46, 45, 8, 8, 0, 210, 94, + 0, 0, 8, 8, 8, 8, 8, 57, 8, 0, + 56, 8, 63, 8, 113, 8, 0, 8, 0, 0, + 182, 0, 0, 8, 0, 0, 190, 148, 149, 0, + 151, 0, 0, 0, 97, 98, 65, 0, 0, 172, + 61, 62, 0, 0, 0, 8, 8, 8, 8, 8, + 8, 0, 8, 66, 8, 0, 8, 176, 0, 0, + 0, 0, 8, 185, 0, 0, 0, 239, 214, 216, + 200, 202, 0, 211, 0, 0, 38, 40, 53, 55, + 50, 59, 0, 64, 114, 0, 179, 0, 8, 0, + 0, 187, 0, 8, 0, 201, 142, 144, 8, 0, + 8, 0, 8, 183, 8, 8, 0, 8, 191, 147, + 58, 0, 177, 0, 181, 197, 186, 0, 189, 8, + 8, 8, 178, 180, 188 }; /* YYPGOTO[NTERM-NUM]. */ static const grib_yytype_int16 grib_yypgoto[] = { - -654, -654, 5, 564, -654, -351, 0, -654, -653, 242, - -307, -184, -654, -654, -654, -442, 154, 591, 210, -654, - 440, -654, -654, -654, -654, -264, 718, -654, -654, 329, - -654, -89, -345, -654, -82, -165, 830, -15, 80, -6, - -160, 691, -654, -96, -654, 14, 392, -654, -654, 913 + -658, -658, 5, 533, -658, -352, 0, -658, -657, 686, + -307, -193, -658, -658, -658, -443, -170, 589, 207, -658, + 440, -658, -658, -658, -658, -259, 692, -658, -658, 294, + -658, -89, -349, -658, -75, -144, 810, 91, 113, 90, + -162, 663, -658, -58, -658, 10, 368, -658, -658, 890 }; /* YYDEFGOTO[NTERM-NUM]. */ static const grib_yytype_int16 grib_yydefgoto[] = { - 0, 80, 290, 545, 567, 503, 615, 83, 669, 176, - 177, 178, 84, 85, 86, 666, 667, 243, 291, 441, - 442, 87, 88, 89, 90, 91, 92, 93, 685, 686, - 94, 95, 505, 506, 96, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 97, 616, 617, 99, 100, 101 + 0, 80, 290, 547, 569, 505, 617, 83, 671, 176, + 177, 178, 84, 85, 86, 668, 669, 243, 291, 442, + 443, 87, 88, 89, 90, 91, 92, 93, 687, 688, + 94, 95, 507, 508, 96, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 97, 618, 619, 99, 100, 101 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If @@ -1343,390 +1346,400 @@ static const grib_yytype_int16 grib_yydefgoto[] = number is the opposite. If YYTABLE_NINF, syntax error. */ static const grib_yytype_int16 grib_yytable[] = { - 82, 564, 224, 462, 508, 81, 231, 232, 305, 308, - 227, 509, 510, 751, 98, 787, 514, 561, 562, 421, - 246, 343, 228, 167, 426, 208, 57, 208, 208, 561, - 562, 561, 562, 347, 348, 349, 684, 284, 766, 463, - 170, 285, 313, 314, 212, 221, 222, 78, 223, 221, - 222, 78, 223, 355, 213, 292, 107, 350, 552, 356, - 175, 229, 559, 384, 767, 315, 316, 317, 351, 225, - 226, 601, 289, 752, 602, 648, 276, 307, 221, 222, - 78, 223, 554, 219, 649, 887, 563, 277, 565, 543, - 544, 742, 648, 671, 415, 417, 221, 222, 78, 223, - 808, 670, 672, 161, 162, 163, 57, 102, 154, 748, - 344, 98, 156, 354, 175, 155, 242, 242, 318, 157, - 550, 103, 242, 319, 551, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 104, - 209, 229, 363, 700, 164, 165, 464, 308, 308, 308, + 82, 566, 224, 463, 510, 81, 305, 208, 511, 512, + 98, 753, 344, 516, 789, 164, 165, 227, 563, 564, + 563, 564, 228, 57, 422, 208, 686, 208, 768, 427, + 308, 167, 563, 564, 221, 222, 78, 223, 284, 348, + 349, 350, 285, 212, 231, 232, 276, 554, 464, 170, + 356, 225, 226, 213, 385, 769, 357, 277, 246, 229, + 175, 650, 167, 351, 556, 314, 315, 650, 319, 673, + 651, 107, 289, 320, 352, 754, 672, 889, 674, 169, + 170, 171, 172, 219, 108, 416, 418, 173, 565, 316, + 317, 318, 247, 292, 174, 102, 241, 248, 810, 221, + 222, 78, 223, 161, 162, 163, 57, 98, 221, 222, + 78, 223, 561, 154, 175, 307, 242, 242, 103, 550, + 155, 744, 242, 209, 551, 242, 242, 242, 242, 242, + 242, 242, 242, 242, 242, 242, 242, 242, 242, 156, + 158, 364, 229, 702, 164, 165, 157, 159, 345, 114, + 115, 355, 359, 161, 162, 163, 241, 360, 557, 607, + 445, 603, 110, 558, 604, 481, 513, 465, 466, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, - 308, 605, 221, 222, 78, 223, 479, 247, 548, 164, - 165, 241, 248, 549, 511, 795, 221, 222, 78, 223, - 221, 222, 78, 223, 166, 158, 557, 114, 115, 801, - 558, 167, 159, 866, 105, 358, 106, 446, 447, 241, - 359, 161, 162, 163, 347, 348, 349, 169, 170, 171, - 172, 118, 175, 119, 555, 173, 167, 242, 364, 556, - 601, 575, 174, 606, 740, 753, 576, 601, 350, 741, - 820, 746, 169, 170, 171, 172, 747, 619, 108, 351, - 173, 241, 164, 165, 758, 175, 175, 174, 833, 759, - 496, 225, 226, 834, 161, 162, 163, 347, 348, 349, - 320, 321, 322, 323, 324, 325, 515, 221, 222, 78, - 223, 175, 839, 516, 354, 175, 110, 840, 877, 879, - 871, 350, 166, 878, 880, 175, 884, 654, 240, 167, - 241, 885, 351, 109, 661, 164, 165, 465, 466, 467, - 468, 469, 470, 168, 175, 169, 170, 171, 172, 111, - 268, 175, 269, 173, 473, 474, 475, 476, 477, 478, - 174, 161, 162, 163, 281, 112, 286, 282, 283, 287, - 288, 116, 224, 113, 175, 166, 117, 224, 175, 175, - 175, 227, 167, 775, 621, 175, 175, 175, 241, 638, - 640, 238, 643, 631, 273, 274, 168, 241, 169, 170, - 171, 172, 164, 165, 352, 633, 173, 636, 120, 241, - 353, 241, 121, 174, 297, 298, 122, 765, 444, 221, - 222, 78, 223, 457, 458, 522, 523, 123, 739, 151, - 242, 543, 544, 561, 562, 745, 734, 735, 471, 472, - 124, 330, 166, 332, 125, 126, 683, 127, 128, 167, - 129, 130, 131, 132, 133, 134, 210, 137, 175, 140, - 141, 142, 135, 168, 136, 169, 170, 171, 172, 138, - 753, 143, 139, 173, 144, 145, 188, 445, 146, 147, - 174, 148, 149, 150, 152, 153, 160, 211, 190, 345, - 191, 193, 189, 380, 381, 192, 194, 195, 196, 386, - 197, 198, 389, 390, 391, 392, 393, 394, 395, 396, - 397, 398, 399, 400, 401, 402, 199, 200, 201, 202, - 203, 204, 378, 379, 205, 206, 207, 214, 220, 233, - 234, 310, 235, 236, 237, 241, 239, 245, 250, 251, - 267, 271, 175, 175, 175, 175, 175, 695, 403, 266, - 270, 272, 407, 280, 289, 275, 278, 242, 618, 295, - 279, 623, 418, 293, 242, 242, 628, 242, 242, 242, - 242, 294, 242, 837, 242, 242, 242, 242, 296, 843, - 242, 452, 299, 725, 312, 300, 725, 427, 460, 301, - 302, 303, 242, 304, 306, 311, 326, 328, 161, 162, - 163, 327, 329, 331, 336, 224, 333, 334, 337, 338, - 513, 482, 224, 335, 339, 484, 485, 486, 340, 341, - 357, 342, 491, 492, 493, 346, 361, 161, 162, 163, - 362, 212, 369, 365, 242, 366, 213, 367, 428, 164, - 165, 374, 368, 370, 354, 371, 372, 429, 430, 431, - 432, 433, 434, 373, 242, 435, 436, 375, 437, 438, - 538, 439, 440, 376, 175, 542, 175, 546, 164, 165, - 377, 382, 385, 387, 383, 413, 175, 388, 175, 166, - 404, 175, 405, 242, 175, 242, 167, 175, 242, 175, - 224, 242, 175, 805, 806, 540, 224, 406, 408, 409, - 168, 410, 169, 170, 171, 172, 411, 443, 166, 412, - 173, 414, 419, 420, 416, 167, 422, 174, 424, 425, - 453, 481, 454, 448, 449, 175, 175, 769, 242, 168, - 450, 169, 170, 171, 172, 451, 242, 242, 455, 173, - 459, 456, 461, 244, 483, 494, 174, 487, 249, 488, - 489, 252, 253, 254, 255, 256, 257, 258, 259, 260, - 261, 262, 263, 264, 265, 490, 495, 497, 498, 499, - 500, 501, 502, 504, 507, 512, 353, 356, 630, 596, - 597, 598, 599, 600, 352, 355, 517, 519, 224, 518, - 520, 524, 521, 525, 224, 526, 527, 529, 530, 531, - 532, 533, 655, 534, 657, 535, 536, 537, 541, 662, - 568, 594, 539, 547, 553, 560, 569, 570, 571, 668, - 609, 572, 573, 574, 578, 242, 242, 242, 242, 242, - 577, 242, 579, 679, 242, 580, 581, 583, 242, 582, - 584, 585, 586, 360, 587, 588, 589, 161, 162, 163, - 590, 591, 592, 604, 607, 848, 850, 593, 595, 645, - 697, 852, 853, 603, 608, 611, 612, 613, 644, 647, - 706, 646, 708, 651, 710, 711, 712, 713, 652, 715, - 653, 659, 717, 656, 719, 720, 658, 722, 164, 165, - 660, 727, 664, 665, 680, 731, 673, 674, 678, 736, - 737, 705, 675, 707, 676, 677, 161, 162, 163, 681, - 684, 687, 778, 716, 688, 718, 689, 690, 721, 691, - 692, 724, 693, 755, 728, 698, 730, 699, 166, 733, - 701, 703, 704, 738, 709, 167, 714, 743, 770, 771, - 772, 744, 749, 754, 750, 756, 777, 164, 165, 168, - 757, 169, 170, 171, 172, 776, 760, 694, 761, 173, - 779, 797, 762, 763, 780, 781, 174, 782, 783, 784, - 794, 799, 786, 785, 789, 791, 788, 793, 796, 790, - 800, 803, 792, 802, 807, 809, 810, 166, 811, 815, - 812, 817, 798, 816, 167, 851, 813, 821, 804, 829, - 822, 836, 838, 842, 844, 161, 162, 163, 168, 845, - 169, 170, 171, 172, 814, 846, 528, 847, 173, 860, - 863, 865, 867, 818, 819, 174, 868, 870, 873, 874, - 875, 889, 876, 882, 883, 891, 895, 897, 872, 898, - 663, 831, 899, 423, 309, 835, 164, 165, 702, 566, - 230, 841, 0, 0, 768, 0, 0, 0, 480, 0, + 308, 308, 308, 104, 166, 221, 222, 78, 223, 552, + 109, 167, 577, 553, 164, 165, 111, 578, 750, 742, + 221, 222, 78, 223, 743, 168, 225, 226, 169, 170, + 171, 172, 175, 797, 748, 113, 173, 242, 365, 749, + 446, 281, 112, 174, 282, 283, 755, 221, 222, 78, + 223, 116, 760, 835, 166, 447, 448, 761, 836, 841, + 803, 167, 879, 881, 842, 175, 175, 880, 882, 161, + 162, 163, 348, 349, 350, 168, 135, 886, 169, 170, + 171, 172, 887, 117, 286, 559, 173, 287, 288, 560, + 417, 175, 105, 174, 106, 175, 351, 161, 162, 163, + 221, 222, 78, 223, 621, 175, 120, 352, 241, 498, + 164, 165, 121, 868, 656, 221, 222, 78, 223, 623, + 122, 663, 633, 241, 175, 517, 241, 118, 873, 119, + 635, 175, 518, 355, 241, 240, 638, 241, 164, 165, + 241, 123, 161, 162, 163, 221, 222, 78, 223, 124, + 166, 603, 125, 224, 608, 175, 126, 167, 224, 175, + 175, 175, 640, 642, 777, 645, 175, 175, 175, 227, + 603, 168, 127, 822, 169, 170, 171, 172, 166, 268, + 353, 269, 173, 164, 165, 167, 354, 273, 274, 174, + 321, 322, 323, 324, 325, 326, 567, 545, 546, 767, + 297, 298, 169, 170, 171, 172, 311, 312, 545, 546, + 173, 242, 458, 459, 128, 741, 129, 174, 331, 685, + 333, 130, 747, 166, 467, 468, 469, 470, 471, 472, + 167, 475, 476, 477, 478, 479, 480, 524, 525, 175, + 563, 564, 428, 151, 168, 736, 737, 169, 170, 171, + 172, 755, 473, 474, 131, 173, 460, 132, 133, 134, + 137, 136, 174, 140, 141, 142, 143, 138, 139, 144, + 381, 382, 145, 146, 147, 148, 387, 149, 150, 390, + 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, + 401, 402, 403, 429, 161, 162, 163, 348, 349, 350, + 152, 153, 430, 431, 432, 433, 434, 435, 160, 190, + 436, 437, 188, 438, 439, 189, 440, 441, 191, 192, + 193, 351, 194, 195, 175, 175, 175, 175, 175, 196, + 197, 198, 352, 199, 200, 164, 165, 201, 202, 242, + 620, 203, 204, 625, 205, 206, 242, 242, 630, 242, + 242, 242, 242, 207, 242, 214, 242, 242, 242, 242, + 839, 210, 242, 211, 220, 233, 845, 697, 234, 235, + 236, 237, 241, 239, 242, 166, 245, 250, 251, 266, + 267, 271, 167, 272, 313, 270, 289, 224, 515, 310, + 329, 275, 278, 279, 224, 280, 168, 295, 293, 169, + 170, 171, 172, 727, 294, 296, 727, 173, 299, 300, + 301, 327, 302, 303, 174, 304, 242, 306, 328, 330, + 332, 334, 335, 336, 358, 337, 338, 339, 340, 341, + 212, 362, 483, 606, 686, 342, 242, 343, 540, 347, + 363, 370, 375, 544, 366, 548, 175, 367, 175, 213, + 368, 369, 371, 372, 373, 374, 376, 377, 175, 378, + 175, 383, 384, 175, 355, 242, 175, 242, 386, 175, + 242, 175, 224, 242, 175, 389, 388, 405, 224, 406, + 407, 409, 410, 411, 412, 413, 414, 415, 420, 421, + 423, 425, 426, 354, 357, 444, 874, 454, 455, 456, + 457, 506, 449, 450, 451, 452, 504, 175, 175, 771, + 242, 462, 485, 807, 808, 489, 490, 491, 242, 242, + 492, 244, 514, 496, 497, 499, 249, 500, 501, 252, + 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, + 263, 264, 265, 502, 503, 509, 519, 353, 356, 520, + 521, 522, 527, 526, 529, 523, 531, 632, 528, 532, + 533, 534, 535, 536, 537, 538, 539, 541, 543, 549, + 224, 555, 570, 562, 571, 572, 224, 573, 653, 574, + 646, 657, 575, 659, 161, 162, 163, 576, 664, 579, + 580, 581, 583, 582, 161, 162, 163, 584, 585, 586, + 587, 589, 588, 590, 591, 592, 593, 242, 242, 242, + 242, 242, 681, 242, 596, 238, 242, 594, 595, 597, + 242, 361, 605, 611, 609, 164, 165, 610, 613, 614, + 615, 647, 648, 649, 654, 164, 165, 850, 852, 699, + 655, 661, 658, 854, 855, 660, 662, 666, 667, 708, + 670, 710, 675, 712, 713, 714, 715, 676, 717, 677, + 678, 719, 679, 721, 722, 166, 724, 689, 680, 682, + 729, 683, 167, 690, 733, 166, 691, 692, 738, 739, + 693, 694, 167, 695, 751, 700, 168, 701, 740, 169, + 170, 171, 172, 703, 780, 696, 168, 173, 705, 169, + 170, 171, 172, 706, 174, 711, 716, 173, 161, 162, + 163, 745, 746, 346, 174, 752, 756, 772, 773, 774, + 757, 758, 759, 778, 762, 779, 763, 781, 782, 799, + 783, 784, 785, 786, 796, 801, 788, 791, 793, 795, + 798, 802, 809, 804, 805, 811, 379, 380, 812, 164, + 165, 813, 787, 814, 815, 790, 838, 862, 792, 840, + 819, 794, 817, 823, 818, 824, 831, 844, 846, 847, + 848, 800, 404, 849, 853, 865, 408, 806, 867, 869, + 870, 872, 878, 875, 876, 877, 419, 891, 893, 166, + 897, 884, 885, 816, 899, 530, 167, 424, 900, 568, + 901, 770, 820, 821, 309, 453, 704, 230, 0, 0, + 168, 482, 461, 169, 170, 171, 172, 0, 0, 0, + 833, 641, 665, 0, 837, 0, 0, 0, 174, 0, + 843, 0, 0, 0, 0, 0, 484, 0, 0, 0, + 486, 487, 488, 0, 0, 0, 0, 493, 494, 495, + 0, 0, 856, 857, 858, 859, 860, 861, 0, 863, + 0, 864, 0, 866, 0, 0, 0, 0, 0, 871, + 0, 0, 0, 0, 161, 162, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 854, 855, 856, 857, 858, 859, 0, - 861, 0, 862, 0, 864, 0, 166, 0, 0, 0, - 869, 0, 0, 167, 0, 161, 162, 163, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 168, 0, 169, - 170, 171, 172, 0, 0, 0, 881, 639, 0, 0, - 0, 886, 0, 0, 174, 0, 888, 0, 890, 0, - 892, 0, 893, 894, 0, 896, 164, 165, 0, 0, - 0, 0, 0, 610, 0, 0, 0, 900, 901, 902, - 620, 622, 0, 624, 625, 626, 627, 0, 629, 0, - 632, 634, 635, 637, 0, 0, 641, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 166, 0, 650, 0, - 0, 0, 0, 167, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 168, 0, 169, - 170, 171, 172, 0, 0, 0, 0, 642, 0, 0, + 0, 0, 0, 0, 0, 883, 0, 0, 0, 0, + 888, 0, 0, 0, 0, 890, 0, 892, 0, 894, + 0, 895, 896, 0, 898, 164, 165, 0, 0, 0, + 542, 0, 0, 612, 0, 0, 902, 903, 904, 0, + 622, 624, 0, 626, 627, 628, 629, 0, 631, 0, + 634, 636, 637, 639, 0, 0, 643, 0, 0, 0, + 0, 0, 0, 0, 0, 166, 0, 0, 652, 0, + 0, 0, 167, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 168, 0, 0, 169, + 170, 171, 172, 0, 0, 0, 0, 644, 0, 0, 0, 0, 0, 0, 174, 0, 0, 0, 0, 0, - 682, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 684, 0, 0, 0, 0, 598, 599, 600, 601, 602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 696, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 723, - 0, 726, 0, 0, 729, 0, 0, 732, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 725, + 0, 728, 0, 0, 731, 0, 0, 734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 764, 0, 0, 0, 0, 0, - 0, 0, 773, 774, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 766, 0, 0, 0, 0, 0, + 0, 0, 775, 776, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 707, 0, 709, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 718, + 0, 720, 0, 0, 723, 0, 0, 726, 0, 0, + 730, 0, 732, 0, 0, 735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 764, 765, + 0, 825, 826, 827, 828, 829, 0, 830, 0, 0, + 832, 215, 3, 0, 834, 4, 5, 6, 7, 8, + 9, 10, 11, 12, 13, 0, 0, 0, 0, 0, + 0, 0, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 0, 35, 36, 37, 38, 39, 40, + 41, 42, 43, 44, 0, 45, 46, 0, 0, 47, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 0, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 0, 69, 70, + 71, 72, 73, 74, 0, 0, 75, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 216, 0, 0, 217, 0, 0, -8, 1, 0, + 0, 2, 3, 0, 851, 4, 5, 6, 7, 8, + 9, 10, 11, 12, 13, 0, 0, 0, 0, 0, + 0, 0, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 0, 35, 36, 37, 38, 39, 40, + 41, 42, 43, 44, 0, 45, 46, 0, 0, 47, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 0, 69, 70, + 71, 72, 73, 74, 215, 3, 75, 0, 4, 5, + 6, 7, 8, 9, 10, 11, 12, 13, 0, 0, + 0, 76, 77, 78, 79, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, + 29, 30, 31, 32, 33, 34, 0, 35, 36, 37, + 38, 39, 40, 41, 42, 43, 44, 0, 45, 46, + 0, 0, 47, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, + 49, 50, 51, 52, 53, 54, 55, 56, 0, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, + 0, 69, 70, 71, 72, 73, 74, 0, 0, 75, 215, 3, 0, 0, 4, 5, 6, 7, 8, 9, - 10, 11, 12, 13, 0, 0, 0, 0, 0, 0, - 0, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 0, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 44, 0, 45, 46, 0, 0, 47, 0, - 0, 823, 824, 825, 826, 827, 0, 828, 0, 0, - 830, 0, 0, 0, 832, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 0, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 0, 69, 70, 71, - 72, 73, 74, 0, 0, 75, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, - 0, 0, 217, 0, 0, -8, 1, 0, 0, 2, - 3, 0, 849, 4, 5, 6, 7, 8, 9, 10, - 11, 12, 13, 0, 0, 0, 0, 0, 0, 0, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 0, 35, 36, 37, 38, 39, 40, 41, 42, - 43, 44, 0, 45, 46, 0, 0, 47, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 48, 49, 50, 51, 52, 53, - 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 64, 65, 66, 67, 68, 0, 69, 70, 71, 72, - 73, 74, 215, 3, 75, 0, 4, 5, 6, 7, - 8, 9, 10, 11, 12, 13, 0, 0, 76, 77, - 78, 79, 0, 14, 15, 16, 17, 18, 19, 20, - 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, - 31, 32, 33, 34, 0, 35, 36, 37, 38, 39, - 40, 41, 42, 43, 44, 0, 45, 46, 0, 0, - 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 0, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 0, 69, - 70, 71, 72, 73, 74, 0, 0, 75, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 216, 0, 0, 217, 0, 218, 215, 3, 0, - 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, - 13, 0, 0, 0, 0, 0, 0, 0, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, - 26, 27, 28, 29, 30, 31, 32, 33, 34, 0, - 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - 0, 45, 46, 0, 0, 47, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 0, 69, 70, 71, 72, 73, 74, - 215, 3, 75, 0, 4, 5, 6, 7, 8, 9, - 10, 11, 12, 13, 0, 0, 614, 0, 0, 217, + 10, 11, 12, 13, 216, 0, 0, 217, 0, 218, 0, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 0, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 0, 45, 46, 0, 0, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 0, 58, 59, 60, 61, 62, + 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 0, 69, 70, 71, - 72, 73, 74, 0, 0, 75, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, - 0, 0, 217 + 72, 73, 74, 215, 3, 75, 0, 4, 5, 6, + 7, 8, 9, 10, 11, 12, 13, 0, 0, 0, + 616, 0, 0, 217, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 0, 35, 36, 37, 38, + 39, 40, 41, 42, 43, 44, 0, 45, 46, 0, + 0, 47, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 48, 49, + 50, 51, 52, 53, 54, 55, 56, 0, 58, 59, + 60, 61, 62, 63, 64, 65, 66, 67, 68, 0, + 69, 70, 71, 72, 73, 74, 0, 0, 75, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 216, 0, 0, 217 }; static const grib_yytype_int16 grib_yycheck[] = { - 0, 443, 91, 310, 355, 0, 102, 103, 168, 174, - 92, 356, 357, 666, 0, 80, 361, 80, 81, 283, - 116, 205, 4, 107, 288, 18, 88, 18, 18, 80, - 81, 80, 81, 22, 23, 24, 108, 131, 110, 123, - 124, 135, 117, 118, 123, 123, 124, 125, 126, 123, - 124, 125, 126, 129, 133, 151, 123, 46, 136, 135, - 55, 123, 136, 247, 136, 140, 141, 142, 57, 123, - 124, 127, 137, 136, 130, 127, 123, 173, 123, 124, - 125, 126, 136, 83, 136, 136, 135, 134, 124, 125, - 126, 136, 127, 127, 278, 279, 123, 124, 125, 126, - 753, 136, 136, 19, 20, 21, 88, 131, 124, 136, - 206, 97, 124, 209, 109, 131, 111, 112, 138, 131, - 131, 131, 117, 143, 135, 120, 121, 122, 123, 124, - 125, 126, 127, 128, 129, 130, 131, 132, 133, 131, - 133, 123, 133, 133, 60, 61, 311, 312, 313, 314, - 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, - 325, 506, 123, 124, 125, 126, 326, 129, 127, 60, - 61, 133, 134, 132, 358, 136, 123, 124, 125, 126, - 123, 124, 125, 126, 100, 124, 131, 123, 124, 136, - 135, 107, 131, 136, 129, 129, 131, 293, 294, 133, - 134, 19, 20, 21, 22, 23, 24, 123, 124, 125, - 126, 129, 207, 131, 127, 131, 107, 212, 218, 132, - 127, 127, 138, 130, 127, 667, 132, 127, 46, 132, - 130, 127, 123, 124, 125, 126, 132, 129, 123, 57, - 131, 133, 60, 61, 127, 240, 241, 138, 127, 132, - 346, 123, 124, 132, 19, 20, 21, 22, 23, 24, - 111, 112, 113, 114, 115, 116, 362, 123, 124, 125, - 126, 266, 127, 369, 370, 270, 129, 132, 127, 127, - 136, 46, 100, 132, 132, 280, 127, 551, 131, 107, - 133, 132, 57, 131, 558, 60, 61, 312, 313, 314, - 315, 316, 317, 121, 299, 123, 124, 125, 126, 123, - 123, 306, 125, 131, 320, 321, 322, 323, 324, 325, - 138, 19, 20, 21, 131, 123, 131, 134, 135, 134, - 135, 131, 421, 129, 329, 100, 123, 426, 333, 334, - 335, 423, 107, 694, 129, 340, 341, 342, 133, 533, - 534, 109, 536, 129, 133, 134, 121, 133, 123, 124, - 125, 126, 60, 61, 129, 129, 131, 129, 123, 133, - 135, 133, 123, 138, 123, 124, 123, 684, 76, 123, - 124, 125, 126, 123, 124, 123, 124, 123, 652, 131, - 385, 125, 126, 80, 81, 659, 125, 126, 318, 319, - 123, 191, 100, 193, 123, 123, 590, 123, 123, 107, - 123, 123, 123, 123, 123, 123, 133, 123, 413, 123, - 123, 123, 129, 121, 129, 123, 124, 125, 126, 129, - 872, 123, 129, 131, 123, 123, 131, 135, 123, 123, - 138, 123, 123, 123, 123, 123, 123, 133, 123, 207, - 123, 123, 128, 243, 244, 129, 123, 123, 123, 249, - 123, 129, 252, 253, 254, 255, 256, 257, 258, 259, - 260, 261, 262, 263, 264, 265, 129, 129, 129, 123, - 123, 123, 240, 241, 123, 131, 131, 0, 128, 123, - 125, 127, 125, 124, 124, 133, 125, 125, 125, 125, - 125, 125, 497, 498, 499, 500, 501, 603, 266, 129, - 131, 125, 270, 131, 137, 134, 133, 512, 518, 125, - 133, 521, 280, 133, 519, 520, 526, 522, 523, 524, - 525, 133, 527, 797, 529, 530, 531, 532, 125, 803, - 535, 299, 131, 639, 139, 131, 642, 3, 306, 131, - 131, 131, 547, 131, 131, 122, 119, 123, 19, 20, - 21, 120, 131, 125, 125, 654, 131, 131, 125, 125, - 360, 329, 661, 131, 125, 333, 334, 335, 131, 131, - 135, 131, 340, 341, 342, 131, 135, 19, 20, 21, - 131, 123, 131, 133, 589, 133, 133, 133, 54, 60, - 61, 130, 133, 133, 700, 132, 132, 63, 64, 65, - 66, 67, 68, 132, 609, 71, 72, 132, 74, 75, - 410, 77, 78, 132, 619, 415, 621, 417, 60, 61, - 130, 130, 123, 130, 132, 131, 631, 132, 633, 100, - 130, 636, 130, 638, 639, 640, 107, 642, 643, 644, - 739, 646, 647, 749, 750, 413, 745, 130, 130, 130, - 121, 123, 123, 124, 125, 126, 123, 132, 100, 123, - 131, 123, 123, 123, 135, 107, 123, 138, 123, 123, - 123, 127, 123, 132, 132, 680, 681, 687, 683, 121, - 132, 123, 124, 125, 126, 132, 691, 692, 123, 131, - 132, 123, 132, 112, 130, 132, 138, 130, 117, 130, - 130, 120, 121, 122, 123, 124, 125, 126, 127, 128, - 129, 130, 131, 132, 133, 130, 132, 131, 131, 131, - 131, 131, 125, 123, 128, 123, 135, 135, 528, 497, - 498, 499, 500, 501, 129, 129, 135, 123, 837, 135, - 123, 132, 135, 123, 843, 135, 130, 123, 123, 130, - 123, 123, 552, 123, 554, 132, 123, 123, 123, 559, - 124, 135, 133, 132, 127, 127, 124, 124, 124, 128, - 130, 132, 127, 127, 127, 780, 781, 782, 783, 784, - 132, 786, 127, 583, 789, 132, 123, 123, 793, 132, - 132, 132, 132, 212, 123, 123, 123, 19, 20, 21, - 123, 132, 132, 136, 136, 815, 816, 132, 132, 123, - 610, 821, 822, 133, 136, 136, 132, 132, 131, 131, - 620, 132, 622, 124, 624, 625, 626, 627, 135, 629, - 123, 135, 632, 124, 634, 635, 124, 637, 60, 61, - 123, 641, 123, 123, 131, 645, 124, 124, 132, 649, - 650, 619, 125, 621, 125, 125, 19, 20, 21, 131, - 108, 135, 6, 631, 132, 633, 132, 132, 636, 132, - 132, 639, 125, 124, 642, 135, 644, 135, 100, 647, - 136, 136, 136, 127, 136, 107, 136, 127, 688, 689, - 690, 127, 133, 128, 133, 132, 696, 60, 61, 121, - 132, 123, 124, 125, 126, 128, 127, 129, 127, 131, - 6, 135, 680, 681, 130, 130, 138, 130, 130, 130, - 123, 123, 132, 723, 132, 132, 726, 132, 124, 729, - 123, 135, 732, 124, 6, 125, 125, 100, 125, 137, - 132, 136, 742, 137, 107, 128, 132, 135, 748, 131, - 135, 127, 127, 127, 135, 19, 20, 21, 121, 132, - 123, 124, 125, 126, 764, 132, 385, 132, 131, 123, - 123, 123, 123, 773, 774, 138, 123, 123, 136, 136, - 136, 123, 132, 132, 132, 123, 123, 132, 844, 132, - 560, 791, 132, 285, 174, 795, 60, 61, 616, 445, - 97, 801, -1, -1, 685, -1, -1, -1, 327, -1, + 0, 444, 91, 310, 356, 0, 168, 18, 357, 358, + 0, 668, 205, 362, 80, 60, 61, 92, 80, 81, + 80, 81, 4, 88, 283, 18, 108, 18, 110, 288, + 174, 107, 80, 81, 124, 125, 126, 127, 132, 22, + 23, 24, 136, 124, 102, 103, 124, 137, 124, 125, + 130, 124, 125, 134, 247, 137, 136, 135, 116, 124, + 55, 128, 107, 46, 137, 117, 118, 128, 139, 128, + 137, 124, 138, 144, 57, 137, 137, 137, 137, 124, + 125, 126, 127, 83, 124, 278, 279, 132, 136, 141, + 142, 143, 130, 151, 139, 132, 134, 135, 755, 124, + 125, 126, 127, 19, 20, 21, 88, 97, 124, 125, + 126, 127, 137, 125, 109, 173, 111, 112, 132, 128, + 132, 137, 117, 134, 133, 120, 121, 122, 123, 124, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 125, + 125, 134, 124, 134, 60, 61, 132, 132, 206, 124, + 125, 209, 130, 19, 20, 21, 134, 135, 128, 508, + 76, 128, 130, 133, 131, 327, 359, 311, 312, 313, + 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, + 324, 325, 326, 132, 100, 124, 125, 126, 127, 132, + 132, 107, 128, 136, 60, 61, 124, 133, 137, 128, + 124, 125, 126, 127, 133, 121, 124, 125, 124, 125, + 126, 127, 207, 137, 128, 130, 132, 212, 218, 133, + 136, 132, 124, 139, 135, 136, 669, 124, 125, 126, + 127, 132, 128, 128, 100, 293, 294, 133, 133, 128, + 137, 107, 128, 128, 133, 240, 241, 133, 133, 19, + 20, 21, 22, 23, 24, 121, 130, 128, 124, 125, + 126, 127, 133, 124, 132, 132, 132, 135, 136, 136, + 136, 266, 130, 139, 132, 270, 46, 19, 20, 21, + 124, 125, 126, 127, 130, 280, 124, 57, 134, 347, + 60, 61, 124, 137, 553, 124, 125, 126, 127, 130, + 124, 560, 130, 134, 299, 363, 134, 130, 137, 132, + 130, 306, 370, 371, 134, 132, 130, 134, 60, 61, + 134, 124, 19, 20, 21, 124, 125, 126, 127, 124, + 100, 128, 124, 422, 131, 330, 124, 107, 427, 334, + 335, 336, 535, 536, 696, 538, 341, 342, 343, 424, + 128, 121, 124, 131, 124, 125, 126, 127, 100, 124, + 130, 126, 132, 60, 61, 107, 136, 134, 135, 139, + 111, 112, 113, 114, 115, 116, 125, 126, 127, 686, + 124, 125, 124, 125, 126, 127, 122, 123, 126, 127, + 132, 386, 124, 125, 124, 654, 124, 139, 191, 592, + 193, 124, 661, 100, 313, 314, 315, 316, 317, 318, + 107, 321, 322, 323, 324, 325, 326, 124, 125, 414, + 80, 81, 3, 132, 121, 126, 127, 124, 125, 126, + 127, 874, 319, 320, 124, 132, 133, 124, 124, 124, + 124, 130, 139, 124, 124, 124, 124, 130, 130, 124, + 243, 244, 124, 124, 124, 124, 249, 124, 124, 252, + 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, + 263, 264, 265, 54, 19, 20, 21, 22, 23, 24, + 124, 124, 63, 64, 65, 66, 67, 68, 124, 124, + 71, 72, 132, 74, 75, 129, 77, 78, 124, 130, + 124, 46, 124, 124, 499, 500, 501, 502, 503, 124, + 124, 130, 57, 130, 130, 60, 61, 130, 124, 514, + 520, 124, 124, 523, 124, 132, 521, 522, 528, 524, + 525, 526, 527, 132, 529, 0, 531, 532, 533, 534, + 799, 134, 537, 134, 129, 124, 805, 605, 126, 126, + 125, 125, 134, 126, 549, 100, 126, 126, 126, 130, + 126, 126, 107, 126, 140, 132, 138, 656, 361, 128, + 124, 135, 134, 134, 663, 132, 121, 126, 134, 124, + 125, 126, 127, 641, 134, 126, 644, 132, 132, 132, + 132, 119, 132, 132, 139, 132, 591, 132, 120, 132, + 126, 132, 132, 132, 136, 126, 126, 126, 126, 132, + 124, 136, 128, 137, 108, 132, 611, 132, 411, 132, + 132, 132, 131, 416, 134, 418, 621, 134, 623, 134, + 134, 134, 134, 133, 133, 133, 133, 133, 633, 131, + 635, 131, 133, 638, 702, 640, 641, 642, 124, 644, + 645, 646, 741, 648, 649, 133, 131, 131, 747, 131, + 131, 131, 131, 124, 124, 124, 132, 124, 124, 124, + 124, 124, 124, 136, 136, 133, 846, 124, 124, 124, + 124, 124, 133, 133, 133, 133, 126, 682, 683, 689, + 685, 133, 131, 751, 752, 131, 131, 131, 693, 694, + 131, 112, 124, 133, 133, 132, 117, 132, 132, 120, + 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 132, 132, 129, 136, 130, 130, 136, + 124, 124, 124, 133, 131, 136, 124, 530, 136, 124, + 131, 124, 124, 124, 133, 124, 124, 134, 124, 133, + 839, 128, 125, 128, 125, 125, 845, 125, 125, 133, + 132, 554, 128, 556, 19, 20, 21, 128, 561, 133, + 128, 128, 124, 133, 19, 20, 21, 133, 124, 133, + 133, 124, 133, 124, 124, 124, 133, 782, 783, 784, + 785, 786, 585, 788, 136, 109, 791, 133, 133, 133, + 795, 212, 134, 131, 137, 60, 61, 137, 137, 133, + 133, 124, 133, 132, 136, 60, 61, 817, 818, 612, + 124, 136, 125, 823, 824, 125, 124, 124, 124, 622, + 129, 624, 125, 626, 627, 628, 629, 125, 631, 126, + 126, 634, 126, 636, 637, 100, 639, 136, 133, 132, + 643, 132, 107, 133, 647, 100, 133, 133, 651, 652, + 133, 133, 107, 126, 134, 136, 121, 136, 128, 124, + 125, 126, 127, 137, 6, 130, 121, 132, 137, 124, + 125, 126, 127, 137, 139, 137, 137, 132, 19, 20, + 21, 128, 128, 207, 139, 134, 129, 690, 691, 692, + 125, 133, 133, 129, 128, 698, 128, 6, 131, 136, + 131, 131, 131, 131, 124, 124, 133, 133, 133, 133, + 125, 124, 6, 125, 136, 126, 240, 241, 126, 60, + 61, 126, 725, 133, 133, 728, 128, 124, 731, 128, + 137, 734, 138, 136, 138, 136, 132, 128, 136, 133, + 133, 744, 266, 133, 129, 124, 270, 750, 124, 124, + 124, 124, 133, 137, 137, 137, 280, 124, 124, 100, + 124, 133, 133, 766, 133, 386, 107, 285, 133, 446, + 133, 687, 775, 776, 174, 299, 618, 97, -1, -1, + 121, 328, 306, 124, 125, 126, 127, -1, -1, -1, + 793, 132, 562, -1, 797, -1, -1, -1, 139, -1, + 803, -1, -1, -1, -1, -1, 330, -1, -1, -1, + 334, 335, 336, -1, -1, -1, -1, 341, 342, 343, + -1, -1, 825, 826, 827, 828, 829, 830, -1, 832, + -1, 834, -1, 836, -1, -1, -1, -1, -1, 842, + -1, -1, -1, -1, 19, 20, 21, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 823, 824, 825, 826, 827, 828, -1, - 830, -1, 832, -1, 834, -1, 100, -1, -1, -1, - 840, -1, -1, 107, -1, 19, 20, 21, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 121, -1, 123, - 124, 125, 126, -1, -1, -1, 866, 131, -1, -1, - -1, 871, -1, -1, 138, -1, 876, -1, 878, -1, - 880, -1, 882, 883, -1, 885, 60, 61, -1, -1, - -1, -1, -1, 512, -1, -1, -1, 897, 898, 899, - 519, 520, -1, 522, 523, 524, 525, -1, 527, -1, - 529, 530, 531, 532, -1, -1, 535, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 100, -1, 547, -1, - -1, -1, -1, 107, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 121, -1, 123, - 124, 125, 126, -1, -1, -1, -1, 131, -1, -1, - -1, -1, -1, -1, 138, -1, -1, -1, -1, -1, - 589, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 868, -1, -1, -1, -1, + 873, -1, -1, -1, -1, 878, -1, 880, -1, 882, + -1, 884, 885, -1, 887, 60, 61, -1, -1, -1, + 414, -1, -1, 514, -1, -1, 899, 900, 901, -1, + 521, 522, -1, 524, 525, 526, 527, -1, 529, -1, + 531, 532, 533, 534, -1, -1, 537, -1, -1, -1, + -1, -1, -1, -1, -1, 100, -1, -1, 549, -1, + -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 121, -1, -1, 124, + 125, 126, 127, -1, -1, -1, -1, 132, -1, -1, + -1, -1, -1, -1, 139, -1, -1, -1, -1, -1, + 591, -1, -1, -1, -1, 499, 500, 501, 502, 503, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 609, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 611, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 638, - -1, 640, -1, -1, 643, -1, -1, 646, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 640, + -1, 642, -1, -1, 645, -1, -1, 648, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 683, -1, -1, -1, -1, -1, - -1, -1, 691, 692, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 685, -1, -1, -1, -1, -1, + -1, -1, 693, 694, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 621, -1, 623, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 633, + -1, 635, -1, -1, 638, -1, -1, 641, -1, -1, + 644, -1, 646, -1, -1, 649, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 682, 683, + -1, 782, 783, 784, 785, 786, -1, 788, -1, -1, + 791, 4, 5, -1, 795, 8, 9, 10, 11, 12, + 13, 14, 15, 16, 17, -1, -1, -1, -1, -1, + -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + 43, 44, 45, -1, 47, 48, 49, 50, 51, 52, + 53, 54, 55, 56, -1, 58, 59, -1, -1, 62, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 79, 80, 81, 82, + 83, 84, 85, 86, 87, -1, 89, 90, 91, 92, + 93, 94, 95, 96, 97, 98, 99, -1, 101, 102, + 103, 104, 105, 106, -1, -1, 109, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 124, -1, -1, 127, -1, -1, 0, 1, -1, + -1, 4, 5, -1, 137, 8, 9, 10, 11, 12, + 13, 14, 15, 16, 17, -1, -1, -1, -1, -1, + -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + 43, 44, 45, -1, 47, 48, 49, 50, 51, 52, + 53, 54, 55, 56, -1, 58, 59, -1, -1, 62, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 79, 80, 81, 82, + 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, + 93, 94, 95, 96, 97, 98, 99, -1, 101, 102, + 103, 104, 105, 106, 4, 5, 109, -1, 8, 9, + 10, 11, 12, 13, 14, 15, 16, 17, -1, -1, + -1, 124, 125, 126, 127, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, 42, 43, 44, 45, -1, 47, 48, 49, + 50, 51, 52, 53, 54, 55, 56, -1, 58, 59, + -1, -1, 62, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 79, + 80, 81, 82, 83, 84, 85, 86, 87, -1, 89, + 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, + -1, 101, 102, 103, 104, 105, 106, -1, -1, 109, 4, 5, -1, -1, 8, 9, 10, 11, 12, 13, - 14, 15, 16, 17, -1, -1, -1, -1, -1, -1, - -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, - 44, 45, -1, 47, 48, 49, 50, 51, 52, 53, - 54, 55, 56, -1, 58, 59, -1, -1, 62, -1, - -1, 780, 781, 782, 783, 784, -1, 786, -1, -1, - 789, -1, -1, -1, 793, 79, 80, 81, 82, 83, - 84, 85, 86, 87, -1, 89, 90, 91, 92, 93, - 94, 95, 96, 97, 98, 99, -1, 101, 102, 103, - 104, 105, 106, -1, -1, 109, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 123, - -1, -1, 126, -1, -1, 0, 1, -1, -1, 4, - 5, -1, 136, 8, 9, 10, 11, 12, 13, 14, - 15, 16, 17, -1, -1, -1, -1, -1, -1, -1, - 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, - 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - 45, -1, 47, 48, 49, 50, 51, 52, 53, 54, - 55, 56, -1, 58, 59, -1, -1, 62, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 79, 80, 81, 82, 83, 84, - 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, - 95, 96, 97, 98, 99, -1, 101, 102, 103, 104, - 105, 106, 4, 5, 109, -1, 8, 9, 10, 11, - 12, 13, 14, 15, 16, 17, -1, -1, 123, 124, - 125, 126, -1, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 44, 45, -1, 47, 48, 49, 50, 51, - 52, 53, 54, 55, 56, -1, 58, 59, -1, -1, - 62, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, - 82, 83, 84, 85, 86, 87, -1, 89, 90, 91, - 92, 93, 94, 95, 96, 97, 98, 99, -1, 101, - 102, 103, 104, 105, 106, -1, -1, 109, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 123, -1, -1, 126, -1, 128, 4, 5, -1, - -1, 8, 9, 10, 11, 12, 13, 14, 15, 16, - 17, -1, -1, -1, -1, -1, -1, -1, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, - 37, 38, 39, 40, 41, 42, 43, 44, 45, -1, - 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, - -1, 58, 59, -1, -1, 62, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, - 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, - 97, 98, 99, -1, 101, 102, 103, 104, 105, 106, - 4, 5, 109, -1, 8, 9, 10, 11, 12, 13, - 14, 15, 16, 17, -1, -1, 123, -1, -1, 126, + 14, 15, 16, 17, 124, -1, -1, 127, -1, 129, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, -1, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, -1, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, 82, 83, - 84, 85, 86, 87, -1, 89, 90, 91, 92, 93, + 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, -1, 101, 102, 103, - 104, 105, 106, -1, -1, 109, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 123, - -1, -1, 126 + 104, 105, 106, 4, 5, 109, -1, 8, 9, 10, + 11, 12, 13, 14, 15, 16, 17, -1, -1, -1, + 124, -1, -1, 127, 25, 26, 27, 28, 29, 30, + 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + 41, 42, 43, 44, 45, -1, 47, 48, 49, 50, + 51, 52, 53, 54, 55, 56, -1, 58, 59, -1, + -1, 62, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 79, 80, + 81, 82, 83, 84, 85, 86, 87, -1, 89, 90, + 91, 92, 93, 94, 95, 96, 97, 98, 99, -1, + 101, 102, 103, 104, 105, 106, -1, -1, 109, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 124, -1, -1, 127 }; /* YYSTOS[STATE-NUM] -- The symbol kind of the accessing symbol of @@ -1740,122 +1753,122 @@ static const grib_yytype_uint8 grib_yystos[] = 52, 53, 54, 55, 56, 58, 59, 62, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, - 102, 103, 104, 105, 106, 109, 123, 124, 125, 126, - 145, 146, 150, 151, 156, 157, 158, 165, 166, 167, - 168, 169, 170, 171, 174, 175, 178, 188, 189, 191, - 192, 193, 131, 131, 131, 129, 131, 123, 123, 131, - 129, 123, 123, 129, 123, 124, 131, 123, 129, 131, - 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, - 123, 123, 123, 123, 123, 129, 129, 123, 129, 129, - 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, - 123, 131, 123, 123, 124, 131, 124, 131, 124, 131, - 123, 19, 20, 21, 60, 61, 100, 107, 121, 123, - 124, 125, 126, 131, 138, 146, 153, 154, 155, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 131, 128, - 123, 123, 129, 123, 123, 123, 123, 123, 129, 129, - 129, 129, 123, 123, 123, 123, 131, 131, 18, 133, - 133, 133, 123, 133, 0, 4, 123, 126, 128, 150, - 128, 123, 124, 126, 175, 123, 124, 178, 4, 123, - 193, 187, 187, 123, 125, 125, 124, 124, 153, 125, - 131, 133, 146, 161, 161, 125, 187, 129, 134, 161, - 125, 125, 161, 161, 161, 161, 161, 161, 161, 161, - 161, 161, 161, 161, 161, 161, 129, 125, 123, 125, - 131, 125, 125, 133, 134, 134, 123, 134, 133, 133, - 131, 131, 134, 135, 131, 135, 131, 134, 135, 137, - 146, 162, 187, 133, 133, 125, 125, 123, 124, 131, - 131, 131, 131, 131, 131, 184, 131, 187, 179, 180, - 127, 122, 139, 117, 118, 140, 141, 142, 138, 143, - 111, 112, 113, 114, 115, 116, 119, 120, 123, 131, - 162, 125, 162, 131, 131, 131, 125, 125, 125, 125, - 131, 131, 131, 155, 187, 153, 131, 22, 23, 24, - 46, 57, 129, 135, 187, 129, 135, 135, 129, 134, - 161, 135, 131, 133, 150, 133, 133, 133, 133, 131, - 133, 132, 132, 132, 130, 132, 132, 130, 153, 153, - 162, 162, 130, 132, 155, 123, 162, 130, 132, 162, - 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, - 162, 162, 162, 153, 130, 130, 130, 153, 130, 130, - 123, 123, 123, 131, 123, 155, 135, 155, 153, 123, - 123, 169, 123, 170, 123, 123, 169, 3, 54, 63, - 64, 65, 66, 67, 68, 71, 72, 74, 75, 77, - 78, 163, 164, 132, 76, 135, 187, 187, 132, 132, - 132, 132, 153, 123, 123, 123, 123, 123, 124, 132, - 153, 132, 154, 123, 179, 181, 181, 181, 181, 181, - 181, 182, 182, 183, 183, 183, 183, 183, 183, 184, - 185, 127, 153, 130, 153, 153, 153, 130, 130, 130, - 130, 153, 153, 153, 132, 132, 187, 131, 131, 131, - 131, 131, 125, 149, 123, 176, 177, 128, 149, 176, - 176, 155, 123, 162, 176, 187, 187, 135, 135, 123, - 123, 135, 123, 124, 132, 123, 135, 130, 161, 123, - 123, 130, 123, 123, 123, 132, 123, 123, 162, 133, - 153, 123, 162, 125, 126, 147, 162, 132, 127, 132, - 131, 135, 136, 127, 136, 127, 132, 131, 135, 136, - 127, 80, 81, 135, 159, 124, 147, 148, 124, 124, - 124, 124, 132, 127, 127, 127, 132, 132, 127, 127, - 132, 123, 132, 123, 132, 132, 132, 123, 123, 123, - 123, 132, 132, 132, 135, 132, 153, 153, 153, 153, - 153, 127, 130, 133, 136, 176, 130, 136, 136, 130, - 161, 136, 132, 132, 123, 150, 189, 190, 150, 129, - 161, 129, 161, 150, 161, 161, 161, 161, 150, 161, - 162, 129, 161, 129, 161, 161, 129, 161, 155, 131, - 155, 161, 131, 155, 131, 123, 132, 131, 127, 136, - 161, 124, 135, 123, 169, 162, 124, 162, 124, 135, - 123, 169, 162, 164, 123, 123, 159, 160, 128, 152, - 136, 127, 136, 124, 124, 125, 125, 125, 132, 162, - 131, 131, 161, 155, 108, 172, 173, 135, 132, 132, - 132, 132, 132, 125, 129, 187, 161, 162, 135, 135, - 133, 136, 190, 136, 136, 153, 162, 153, 162, 136, - 162, 162, 162, 162, 136, 162, 153, 162, 153, 162, - 162, 153, 162, 161, 153, 187, 161, 162, 153, 161, - 153, 162, 161, 153, 125, 126, 162, 162, 127, 169, - 127, 132, 136, 127, 127, 169, 127, 132, 136, 133, - 133, 152, 136, 159, 128, 124, 132, 132, 127, 132, - 127, 127, 153, 153, 161, 154, 110, 136, 173, 150, - 162, 162, 162, 161, 161, 149, 128, 162, 6, 6, - 130, 130, 130, 130, 130, 162, 132, 80, 162, 132, - 162, 132, 162, 132, 123, 136, 124, 135, 162, 123, - 123, 136, 124, 135, 162, 187, 187, 6, 152, 125, - 125, 125, 132, 132, 162, 137, 137, 136, 162, 162, - 130, 135, 135, 161, 161, 161, 161, 161, 161, 131, - 161, 162, 161, 127, 132, 162, 127, 169, 127, 127, - 132, 162, 127, 169, 135, 132, 132, 132, 150, 136, - 150, 128, 150, 150, 162, 162, 162, 162, 162, 162, - 123, 162, 162, 123, 162, 123, 136, 123, 123, 162, - 123, 136, 160, 136, 136, 136, 132, 127, 132, 127, - 132, 162, 132, 132, 127, 132, 162, 136, 162, 123, - 162, 123, 162, 162, 162, 123, 162, 132, 132, 132, - 162, 162, 162 + 102, 103, 104, 105, 106, 109, 124, 125, 126, 127, + 146, 147, 151, 152, 157, 158, 159, 166, 167, 168, + 169, 170, 171, 172, 175, 176, 179, 189, 190, 192, + 193, 194, 132, 132, 132, 130, 132, 124, 124, 132, + 130, 124, 124, 130, 124, 125, 132, 124, 130, 132, + 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, + 124, 124, 124, 124, 124, 130, 130, 124, 130, 130, + 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, + 124, 132, 124, 124, 125, 132, 125, 132, 125, 132, + 124, 19, 20, 21, 60, 61, 100, 107, 121, 124, + 125, 126, 127, 132, 139, 147, 154, 155, 156, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 132, 129, + 124, 124, 130, 124, 124, 124, 124, 124, 130, 130, + 130, 130, 124, 124, 124, 124, 132, 132, 18, 134, + 134, 134, 124, 134, 0, 4, 124, 127, 129, 151, + 129, 124, 125, 127, 176, 124, 125, 179, 4, 124, + 194, 188, 188, 124, 126, 126, 125, 125, 154, 126, + 132, 134, 147, 162, 162, 126, 188, 130, 135, 162, + 126, 126, 162, 162, 162, 162, 162, 162, 162, 162, + 162, 162, 162, 162, 162, 162, 130, 126, 124, 126, + 132, 126, 126, 134, 135, 135, 124, 135, 134, 134, + 132, 132, 135, 136, 132, 136, 132, 135, 136, 138, + 147, 163, 188, 134, 134, 126, 126, 124, 125, 132, + 132, 132, 132, 132, 132, 185, 132, 188, 180, 181, + 128, 122, 123, 140, 117, 118, 141, 142, 143, 139, + 144, 111, 112, 113, 114, 115, 116, 119, 120, 124, + 132, 163, 126, 163, 132, 132, 132, 126, 126, 126, + 126, 132, 132, 132, 156, 188, 154, 132, 22, 23, + 24, 46, 57, 130, 136, 188, 130, 136, 136, 130, + 135, 162, 136, 132, 134, 151, 134, 134, 134, 134, + 132, 134, 133, 133, 133, 131, 133, 133, 131, 154, + 154, 163, 163, 131, 133, 156, 124, 163, 131, 133, + 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, + 163, 163, 163, 163, 154, 131, 131, 131, 154, 131, + 131, 124, 124, 124, 132, 124, 156, 136, 156, 154, + 124, 124, 170, 124, 171, 124, 124, 170, 3, 54, + 63, 64, 65, 66, 67, 68, 71, 72, 74, 75, + 77, 78, 164, 165, 133, 76, 136, 188, 188, 133, + 133, 133, 133, 154, 124, 124, 124, 124, 124, 125, + 133, 154, 133, 155, 124, 180, 180, 182, 182, 182, + 182, 182, 182, 183, 183, 184, 184, 184, 184, 184, + 184, 185, 186, 128, 154, 131, 154, 154, 154, 131, + 131, 131, 131, 154, 154, 154, 133, 133, 188, 132, + 132, 132, 132, 132, 126, 150, 124, 177, 178, 129, + 150, 177, 177, 156, 124, 163, 177, 188, 188, 136, + 136, 124, 124, 136, 124, 125, 133, 124, 136, 131, + 162, 124, 124, 131, 124, 124, 124, 133, 124, 124, + 163, 134, 154, 124, 163, 126, 127, 148, 163, 133, + 128, 133, 132, 136, 137, 128, 137, 128, 133, 132, + 136, 137, 128, 80, 81, 136, 160, 125, 148, 149, + 125, 125, 125, 125, 133, 128, 128, 128, 133, 133, + 128, 128, 133, 124, 133, 124, 133, 133, 133, 124, + 124, 124, 124, 133, 133, 133, 136, 133, 154, 154, + 154, 154, 154, 128, 131, 134, 137, 177, 131, 137, + 137, 131, 162, 137, 133, 133, 124, 151, 190, 191, + 151, 130, 162, 130, 162, 151, 162, 162, 162, 162, + 151, 162, 163, 130, 162, 130, 162, 162, 130, 162, + 156, 132, 156, 162, 132, 156, 132, 124, 133, 132, + 128, 137, 162, 125, 136, 124, 170, 163, 125, 163, + 125, 136, 124, 170, 163, 165, 124, 124, 160, 161, + 129, 153, 137, 128, 137, 125, 125, 126, 126, 126, + 133, 163, 132, 132, 162, 156, 108, 173, 174, 136, + 133, 133, 133, 133, 133, 126, 130, 188, 162, 163, + 136, 136, 134, 137, 191, 137, 137, 154, 163, 154, + 163, 137, 163, 163, 163, 163, 137, 163, 154, 163, + 154, 163, 163, 154, 163, 162, 154, 188, 162, 163, + 154, 162, 154, 163, 162, 154, 126, 127, 163, 163, + 128, 170, 128, 133, 137, 128, 128, 170, 128, 133, + 137, 134, 134, 153, 137, 160, 129, 125, 133, 133, + 128, 133, 128, 128, 154, 154, 162, 155, 110, 137, + 174, 151, 163, 163, 163, 162, 162, 150, 129, 163, + 6, 6, 131, 131, 131, 131, 131, 163, 133, 80, + 163, 133, 163, 133, 163, 133, 124, 137, 125, 136, + 163, 124, 124, 137, 125, 136, 163, 188, 188, 6, + 153, 126, 126, 126, 133, 133, 163, 138, 138, 137, + 163, 163, 131, 136, 136, 162, 162, 162, 162, 162, + 162, 132, 162, 163, 162, 128, 133, 163, 128, 170, + 128, 128, 133, 163, 128, 170, 136, 133, 133, 133, + 151, 137, 151, 129, 151, 151, 163, 163, 163, 163, + 163, 163, 124, 163, 163, 124, 163, 124, 137, 124, + 124, 163, 124, 137, 161, 137, 137, 137, 133, 128, + 133, 128, 133, 163, 133, 133, 128, 133, 163, 137, + 163, 124, 163, 124, 163, 163, 163, 124, 163, 133, + 133, 133, 163, 163, 163 }; /* YYR1[RULE-NUM] -- Symbol kind of the left-hand side of rule RULE-NUM. */ static const grib_yytype_uint8 grib_yyr1[] = { - 0, 144, 145, 145, 145, 145, 145, 145, 146, 147, - 147, 147, 147, 148, 148, 149, 149, 150, 150, 150, - 150, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 152, 152, 153, 153, 154, 154, 155, 156, 156, 156, - 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, - 156, 157, 157, 157, 157, 158, 158, 158, 159, 159, - 160, 160, 161, 161, 162, 162, 163, 163, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 164, 164, 165, 166, 167, 168, 168, 168, 168, 168, - 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, - 168, 168, 169, 169, 170, 170, 171, 171, 172, 172, - 173, 174, 174, 174, 175, 175, 175, 175, 176, 176, - 177, 177, 178, 178, 179, 179, 179, 179, 180, 180, - 180, 180, 180, 180, 180, 180, 180, 181, 181, 182, - 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, - 182, 183, 183, 183, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 185, 185, 186, 186, 187, 188, 188, - 189, 189, 190, 190, 191, 192, 193, 193 + 0, 145, 146, 146, 146, 146, 146, 146, 147, 148, + 148, 148, 148, 149, 149, 150, 150, 151, 151, 151, + 151, 152, 152, 152, 152, 152, 152, 152, 152, 152, + 153, 153, 154, 154, 155, 155, 156, 157, 157, 157, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 158, 158, 158, 158, 159, 159, 159, 160, 160, + 161, 161, 162, 162, 163, 163, 164, 164, 165, 165, + 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, + 165, 165, 166, 167, 168, 169, 169, 169, 169, 169, + 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, + 169, 169, 170, 170, 171, 171, 172, 172, 173, 173, + 174, 175, 175, 175, 176, 176, 176, 176, 177, 177, + 178, 178, 179, 179, 180, 180, 180, 180, 181, 181, + 181, 181, 181, 181, 181, 181, 181, 182, 182, 183, + 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, + 183, 184, 184, 184, 185, 185, 185, 185, 185, 185, + 185, 185, 185, 185, 186, 186, 187, 187, 188, 189, + 189, 190, 190, 191, 191, 192, 193, 194, 194 }; /* YYR2[RULE-NUM] -- Number of symbols on the right-hand side of rule RULE-NUM. */ @@ -1886,8 +1899,8 @@ static const grib_yytype_int8 grib_yyr2[] = 1, 1, 1, 3, 2, 3, 4, 3, 1, 3, 3, 3, 3, 3, 1, 4, 6, 6, 6, 8, 4, 3, 3, 1, 3, 3, 3, 3, 3, 3, - 3, 2, 1, 3, 1, 3, 1, 1, 1, 1, - 4, 2, 1, 2, 1, 7, 1, 2 + 3, 3, 2, 1, 3, 1, 3, 1, 1, 1, + 1, 4, 2, 1, 2, 1, 7, 1, 2 }; @@ -2351,249 +2364,249 @@ grib_yyreduce: switch (grib_yyn) { case 2: /* all: empty */ -#line 262 "griby.y" +#line 263 "griby.y" { grib_parser_all_actions = 0;grib_parser_concept=0; grib_parser_hash_array=0;grib_parser_rules=0; } -#line 2358 "y.tab.c" +#line 2371 "y.tab.c" break; case 3: /* all: concept_list */ -#line 264 "griby.y" +#line 265 "griby.y" { grib_parser_concept = reverse_concept((grib_yyvsp[0].concept_value)); } -#line 2364 "y.tab.c" +#line 2377 "y.tab.c" break; case 4: /* all: hash_array_list */ -#line 265 "griby.y" +#line 266 "griby.y" { grib_parser_hash_array = reverse_hash_array((grib_yyvsp[0].hash_array_value)); } -#line 2370 "y.tab.c" +#line 2383 "y.tab.c" break; case 5: /* all: instructions */ -#line 266 "griby.y" - { grib_parser_all_actions = (grib_yyvsp[0].act); } -#line 2376 "y.tab.c" - break; - - case 6: /* all: rules */ #line 267 "griby.y" - { grib_parser_rules = (grib_yyvsp[0].rules); } -#line 2382 "y.tab.c" - break; - - case 7: /* all: error */ -#line 269 "griby.y" - { grib_parser_all_actions = 0; grib_parser_concept=0; - grib_parser_hash_array=0; grib_parser_rules=0; } + { grib_parser_all_actions = (grib_yyvsp[0].act); } #line 2389 "y.tab.c" break; - case 9: /* dvalues: FLOAT */ -#line 276 "griby.y" - { (grib_yyval.dvalue)=grib_darray_push(grib_parser_context,0,(grib_yyvsp[0].dval));} + case 6: /* all: rules */ +#line 268 "griby.y" + { grib_parser_rules = (grib_yyvsp[0].rules); } #line 2395 "y.tab.c" break; - case 10: /* dvalues: dvalues ',' FLOAT */ + case 7: /* all: error */ +#line 270 "griby.y" + { grib_parser_all_actions = 0; grib_parser_concept=0; + grib_parser_hash_array=0; grib_parser_rules=0; } +#line 2402 "y.tab.c" + break; + + case 9: /* dvalues: FLOAT */ #line 277 "griby.y" + { (grib_yyval.dvalue)=grib_darray_push(grib_parser_context,0,(grib_yyvsp[0].dval));} +#line 2408 "y.tab.c" + break; + + case 10: /* dvalues: dvalues ',' FLOAT */ +#line 278 "griby.y" { (grib_yyval.dvalue)=grib_darray_push(grib_parser_context,(grib_yyvsp[-2].dvalue),(grib_yyvsp[0].dval));} -#line 2401 "y.tab.c" +#line 2414 "y.tab.c" break; case 11: /* dvalues: INTEGER */ -#line 278 "griby.y" +#line 279 "griby.y" { (grib_yyval.dvalue)=grib_darray_push(grib_parser_context,0,(grib_yyvsp[0].lval));} -#line 2407 "y.tab.c" +#line 2420 "y.tab.c" break; case 12: /* dvalues: dvalues ',' INTEGER */ -#line 279 "griby.y" +#line 280 "griby.y" { (grib_yyval.dvalue)=grib_darray_push(grib_parser_context,(grib_yyvsp[-2].dvalue),(grib_yyvsp[0].lval));} -#line 2413 "y.tab.c" +#line 2426 "y.tab.c" break; case 13: /* svalues: STRING */ -#line 282 "griby.y" +#line 283 "griby.y" { (grib_yyval.svalue)=grib_sarray_push(grib_parser_context,0,(grib_yyvsp[0].str));} -#line 2419 "y.tab.c" +#line 2432 "y.tab.c" break; case 14: /* svalues: svalues ',' STRING */ -#line 283 "griby.y" +#line 284 "griby.y" { (grib_yyval.svalue)=grib_sarray_push(grib_parser_context,(grib_yyvsp[-2].svalue),(grib_yyvsp[0].str));} -#line 2425 "y.tab.c" +#line 2438 "y.tab.c" break; case 15: /* integer_array: INTEGER */ -#line 287 "griby.y" +#line 288 "griby.y" { (grib_yyval.ivalue)=grib_iarray_push(0,(grib_yyvsp[0].lval));} -#line 2431 "y.tab.c" +#line 2444 "y.tab.c" break; case 16: /* integer_array: integer_array ',' INTEGER */ -#line 288 "griby.y" +#line 289 "griby.y" { (grib_yyval.ivalue)=grib_iarray_push((grib_yyvsp[-2].ivalue),(grib_yyvsp[0].lval));} -#line 2437 "y.tab.c" +#line 2450 "y.tab.c" break; case 18: /* instructions: instruction instructions */ -#line 292 "griby.y" +#line 293 "griby.y" { (grib_yyvsp[-1].act)->next = (grib_yyvsp[0].act); (grib_yyval.act) = (grib_yyvsp[-1].act); } -#line 2443 "y.tab.c" +#line 2456 "y.tab.c" break; case 19: /* instructions: instruction ';' instructions */ -#line 293 "griby.y" +#line 294 "griby.y" { (grib_yyvsp[-2].act)->next = (grib_yyvsp[0].act); (grib_yyval.act) = (grib_yyvsp[-2].act); } -#line 2449 "y.tab.c" +#line 2462 "y.tab.c" break; case 20: /* instructions: instruction ';' */ -#line 294 "griby.y" +#line 295 "griby.y" { (grib_yyval.act) = (grib_yyvsp[-1].act);} -#line 2455 "y.tab.c" +#line 2468 "y.tab.c" break; case 32: /* argument_list: empty */ -#line 313 "griby.y" +#line 314 "griby.y" { (grib_yyval.explist) = 0; } -#line 2461 "y.tab.c" +#line 2474 "y.tab.c" break; case 35: /* arguments: argument ',' arguments */ -#line 318 "griby.y" +#line 319 "griby.y" { (grib_yyvsp[-2].explist)->next = (grib_yyvsp[0].explist); (grib_yyval.explist) = (grib_yyvsp[-2].explist); } -#line 2467 "y.tab.c" +#line 2480 "y.tab.c" break; case 36: /* argument: expression */ -#line 321 "griby.y" +#line 322 "griby.y" { (grib_yyval.explist) = grib_arguments_new(grib_parser_context,(grib_yyvsp[0].exp),NULL); } -#line 2473 "y.tab.c" +#line 2486 "y.tab.c" break; case 37: /* simple: UNSIGNED '[' INTEGER ']' IDENT default flags */ -#line 326 "griby.y" +#line 327 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"unsigned",(grib_yyvsp[-4].lval),NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2479 "y.tab.c" +#line 2492 "y.tab.c" break; case 38: /* simple: UNSIGNED '[' INTEGER ']' IDENT '[' argument_list ']' default flags */ -#line 329 "griby.y" +#line 330 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"unsigned",(grib_yyvsp[-7].lval),(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } -#line 2485 "y.tab.c" +#line 2498 "y.tab.c" break; case 39: /* simple: UNSIGNED '(' INTEGER ')' IDENT default flags */ -#line 332 "griby.y" +#line 333 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"unsigned_bits",(grib_yyvsp[-4].lval),NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2491 "y.tab.c" +#line 2504 "y.tab.c" break; case 40: /* simple: UNSIGNED '(' INTEGER ')' IDENT '[' argument_list ']' default flags */ -#line 335 "griby.y" +#line 336 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"unsigned_bits",(grib_yyvsp[-7].lval),(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } -#line 2497 "y.tab.c" +#line 2510 "y.tab.c" break; case 41: /* simple: ASCII '[' INTEGER ']' IDENT default flags */ -#line 338 "griby.y" +#line 339 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"ascii",(grib_yyvsp[-4].lval),NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2503 "y.tab.c" +#line 2516 "y.tab.c" break; case 42: /* simple: GROUP IDENT default flags */ -#line 341 "griby.y" +#line 342 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"group",0,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2509 "y.tab.c" +#line 2522 "y.tab.c" break; case 43: /* simple: GROUP IDENT '(' argument_list ')' default flags */ -#line 344 "griby.y" +#line 345 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"group",0,(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } -#line 2515 "y.tab.c" +#line 2528 "y.tab.c" break; case 44: /* simple: IDENT '=' TO_INTEGER '(' argument_list ')' flags */ -#line 347 "griby.y" +#line 348 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-6].str),"to_integer",0,(grib_yyvsp[-2].explist),0,(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-6].str)); } -#line 2521 "y.tab.c" +#line 2534 "y.tab.c" break; case 45: /* simple: IDENT '=' SEX2DEC '(' argument_list ')' flags */ -#line 350 "griby.y" +#line 351 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-6].str),"sexagesimal2decimal",0,(grib_yyvsp[-2].explist),0,(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-6].str)); } -#line 2527 "y.tab.c" +#line 2540 "y.tab.c" break; case 46: /* simple: IDENT '=' TO_STRING '(' argument_list ')' flags */ -#line 353 "griby.y" +#line 354 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-6].str),"to_string",0,(grib_yyvsp[-2].explist),0,(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-6].str)); } -#line 2533 "y.tab.c" +#line 2546 "y.tab.c" break; case 47: /* simple: NON_ALPHA IDENT default flags */ -#line 356 "griby.y" +#line 357 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"non_alpha",0,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2539 "y.tab.c" +#line 2552 "y.tab.c" break; case 48: /* simple: ASCII '[' INTEGER ']' STRING default flags */ -#line 360 "griby.y" +#line 361 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"ascii",(grib_yyvsp[-4].lval),NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2545 "y.tab.c" +#line 2558 "y.tab.c" break; case 49: /* simple: BYTE '[' INTEGER ']' IDENT default flags */ -#line 363 "griby.y" +#line 364 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"bytes",(grib_yyvsp[-4].lval),NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2551 "y.tab.c" +#line 2564 "y.tab.c" break; case 50: /* simple: BYTE '[' INTEGER ']' IDENT '[' argument_list ']' default flags */ -#line 366 "griby.y" +#line 367 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"bytes",(grib_yyvsp[-7].lval),(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } -#line 2557 "y.tab.c" +#line 2570 "y.tab.c" break; case 51: /* simple: KSEC1EXPVER '[' INTEGER ']' IDENT default flags */ -#line 369 "griby.y" +#line 370 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"ksec1expver",(grib_yyvsp[-4].lval),NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2563 "y.tab.c" +#line 2576 "y.tab.c" break; case 52: /* simple: SIGNED '[' INTEGER ']' IDENT default flags */ -#line 372 "griby.y" +#line 373 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"signed",(grib_yyvsp[-4].lval),NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2569 "y.tab.c" +#line 2582 "y.tab.c" break; case 53: /* simple: SIGNED '[' INTEGER ']' IDENT '[' argument_list ']' default flags */ -#line 375 "griby.y" +#line 376 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"signed",(grib_yyvsp[-7].lval),(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } -#line 2575 "y.tab.c" +#line 2588 "y.tab.c" break; case 54: /* simple: SIGNED '(' INTEGER ')' IDENT default flags */ -#line 378 "griby.y" +#line 379 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"signed_bits",(grib_yyvsp[-4].lval),NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2581 "y.tab.c" +#line 2594 "y.tab.c" break; case 55: /* simple: SIGNED '(' INTEGER ')' IDENT '[' argument_list ']' default flags */ -#line 381 "griby.y" +#line 382 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"signed_bits",(grib_yyvsp[-7].lval),(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } -#line 2587 "y.tab.c" +#line 2600 "y.tab.c" break; case 56: /* simple: CODETABLE '[' INTEGER ']' IDENT argument default flags */ -#line 384 "griby.y" +#line 385 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-3].str),"codetable",(grib_yyvsp[-5].lval), (grib_yyvsp[-2].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-3].str)); } -#line 2593 "y.tab.c" +#line 2606 "y.tab.c" break; case 57: /* simple: CODETABLE '[' IDENT ']' IDENT argument default flags */ -#line 387 "griby.y" +#line 388 "griby.y" { /* ECC-485: Set length to 0 and prepend the new argument */ grib_arguments* a = grib_arguments_new(grib_parser_context, new_accessor_expression(grib_parser_context,(grib_yyvsp[-5].str),0,0),NULL); @@ -2603,358 +2616,358 @@ grib_yyreduce: (grib_yyvsp[-1].explist), (grib_yyvsp[0].lval), NULL, NULL); free((grib_yyvsp[-3].str)); } -#line 2607 "y.tab.c" - break; - - case 58: /* simple: CODETABLE '[' INTEGER ']' IDENT argument default SET '(' IDENT ')' flags */ -#line 398 "griby.y" - { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-7].str),"codetable",(grib_yyvsp[-9].lval), (grib_yyvsp[-6].explist),(grib_yyvsp[-5].explist),(grib_yyvsp[0].lval),NULL,(grib_yyvsp[-2].str)); - free((grib_yyvsp[-7].str));free((grib_yyvsp[-2].str)); } -#line 2614 "y.tab.c" - break; - - case 59: /* simple: CODETABLE '[' INTEGER ']' IDENT '(' argument_list ')' default flags */ -#line 402 "griby.y" - { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"codetable",(grib_yyvsp[-7].lval), (grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } #line 2620 "y.tab.c" break; + case 58: /* simple: CODETABLE '[' INTEGER ']' IDENT argument default SET '(' IDENT ')' flags */ +#line 399 "griby.y" + { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-7].str),"codetable",(grib_yyvsp[-9].lval), (grib_yyvsp[-6].explist),(grib_yyvsp[-5].explist),(grib_yyvsp[0].lval),NULL,(grib_yyvsp[-2].str)); + free((grib_yyvsp[-7].str));free((grib_yyvsp[-2].str)); } +#line 2627 "y.tab.c" + break; + + case 59: /* simple: CODETABLE '[' INTEGER ']' IDENT '(' argument_list ')' default flags */ +#line 403 "griby.y" + { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"codetable",(grib_yyvsp[-7].lval), (grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } +#line 2633 "y.tab.c" + break; + case 60: /* simple: SMART_TABLE IDENT '(' argument_list ')' default flags */ -#line 405 "griby.y" +#line 406 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"smart_table",0,(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } -#line 2626 "y.tab.c" +#line 2639 "y.tab.c" break; case 61: /* simple: IDENT '=' DICTIONARY '(' argument_list ')' default flags */ -#line 408 "griby.y" +#line 409 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-7].str),"dictionary",0,(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-7].str)); } -#line 2632 "y.tab.c" +#line 2645 "y.tab.c" break; case 62: /* simple: IDENT '=' GETENV '(' argument_list ')' default flags */ -#line 411 "griby.y" +#line 412 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-7].str),"getenv",0,(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-7].str)); } -#line 2638 "y.tab.c" +#line 2651 "y.tab.c" break; case 63: /* simple: COMPLEX_CODETABLE '[' INTEGER ']' IDENT argument default flags */ -#line 414 "griby.y" +#line 415 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-3].str),"complex_codetable",(grib_yyvsp[-5].lval), (grib_yyvsp[-2].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-3].str)); } -#line 2644 "y.tab.c" +#line 2657 "y.tab.c" break; case 64: /* simple: COMPLEX_CODETABLE '[' INTEGER ']' IDENT '(' argument_list ')' default flags */ -#line 417 "griby.y" +#line 418 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"complex_codetable",(grib_yyvsp[-7].lval), (grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } -#line 2650 "y.tab.c" +#line 2663 "y.tab.c" break; case 65: /* simple: FLAG '[' INTEGER ']' IDENT argument default flags */ -#line 420 "griby.y" +#line 421 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-3].str),"codeflag",(grib_yyvsp[-5].lval), (grib_yyvsp[-2].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-3].str)); } -#line 2656 "y.tab.c" +#line 2669 "y.tab.c" break; case 66: /* simple: LOOKUP '[' INTEGER ']' IDENT '(' argument_list ')' flags */ -#line 423 "griby.y" +#line 424 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-4].str),"lookup",(grib_yyvsp[-6].lval),(grib_yyvsp[-2].explist),NULL,(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-4].str)); } -#line 2662 "y.tab.c" +#line 2675 "y.tab.c" break; case 67: /* simple: FLAGBIT IDENT '(' argument_list ')' default flags */ -#line 426 "griby.y" +#line 427 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"bit",0,(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } -#line 2668 "y.tab.c" +#line 2681 "y.tab.c" break; case 68: /* simple: LABEL IDENT */ -#line 429 "griby.y" +#line 430 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[0].str),"label",0,NULL,NULL,0,NULL,NULL); free((grib_yyvsp[0].str)); } -#line 2674 "y.tab.c" +#line 2687 "y.tab.c" break; case 69: /* simple: LABEL STRING */ -#line 432 "griby.y" +#line 433 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[0].str),"label",0,NULL,NULL,0,NULL,NULL); free((grib_yyvsp[0].str)); } -#line 2680 "y.tab.c" +#line 2693 "y.tab.c" break; case 70: /* simple: IBMFLOAT IDENT default flags */ -#line 435 "griby.y" +#line 436 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"ibmfloat",4,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2686 "y.tab.c" +#line 2699 "y.tab.c" break; case 71: /* simple: INT8 IDENT default flags */ -#line 439 "griby.y" +#line 440 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"int8",1,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2692 "y.tab.c" +#line 2705 "y.tab.c" break; case 72: /* simple: UINT8 IDENT default flags */ -#line 442 "griby.y" +#line 443 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"uint8",1,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2698 "y.tab.c" +#line 2711 "y.tab.c" break; case 73: /* simple: INT16 IDENT default flags */ -#line 445 "griby.y" +#line 446 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"int16",2,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2704 "y.tab.c" +#line 2717 "y.tab.c" break; case 74: /* simple: UINT16 IDENT default flags */ -#line 448 "griby.y" +#line 449 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"uint16",2,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2710 "y.tab.c" +#line 2723 "y.tab.c" break; case 75: /* simple: INT16_LITTLE_ENDIAN IDENT default flags */ -#line 451 "griby.y" +#line 452 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"int16_little_endian",2,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2716 "y.tab.c" +#line 2729 "y.tab.c" break; case 76: /* simple: UINT16_LITTLE_ENDIAN IDENT default flags */ -#line 454 "griby.y" +#line 455 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"uint16_little_endian",2,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2722 "y.tab.c" +#line 2735 "y.tab.c" break; case 77: /* simple: INT32 IDENT default flags */ -#line 457 "griby.y" +#line 458 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"int32",4,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2728 "y.tab.c" +#line 2741 "y.tab.c" break; case 78: /* simple: UINT32 IDENT default flags */ -#line 460 "griby.y" +#line 461 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"uint32",4,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2734 "y.tab.c" +#line 2747 "y.tab.c" break; case 79: /* simple: INT32_LITTLE_ENDIAN IDENT default flags */ -#line 463 "griby.y" +#line 464 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"int32_little_endian",4,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2740 "y.tab.c" +#line 2753 "y.tab.c" break; case 80: /* simple: UINT32_LITTLE_ENDIAN IDENT default flags */ -#line 466 "griby.y" +#line 467 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"uint32_little_endian",4,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2746 "y.tab.c" +#line 2759 "y.tab.c" break; case 81: /* simple: INT64 IDENT default flags */ -#line 469 "griby.y" +#line 470 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"int64",8,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2752 "y.tab.c" +#line 2765 "y.tab.c" break; case 82: /* simple: UINT64 IDENT default flags */ -#line 472 "griby.y" +#line 473 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"uint64",8,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2758 "y.tab.c" +#line 2771 "y.tab.c" break; case 83: /* simple: INT64_LITTLE_ENDIAN IDENT default flags */ -#line 475 "griby.y" +#line 476 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"int64_little_endian",8,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2764 "y.tab.c" +#line 2777 "y.tab.c" break; case 84: /* simple: UINT64_LITTLE_ENDIAN IDENT default flags */ -#line 478 "griby.y" +#line 479 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"uint64_little_endian",8,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-2].str)); } -#line 2770 "y.tab.c" +#line 2783 "y.tab.c" break; case 85: /* simple: BLOB IDENT '[' argument_list ']' default flags */ -#line 481 "griby.y" +#line 482 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"blob",0,(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-5].str)); } -#line 2776 "y.tab.c" +#line 2789 "y.tab.c" break; case 86: /* simple: IBMFLOAT IDENT '.' IDENT default flags */ -#line 485 "griby.y" +#line 486 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"ibmfloat",4,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),(grib_yyvsp[-4].str),NULL);free((grib_yyvsp[-2].str)); free((grib_yyvsp[-4].str)); } -#line 2782 "y.tab.c" +#line 2795 "y.tab.c" break; case 87: /* simple: IBMFLOAT IDENT '[' argument ']' default flags */ -#line 488 "griby.y" +#line 489 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"ibmfloat",4,(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-5].str)); } -#line 2788 "y.tab.c" +#line 2801 "y.tab.c" break; case 88: /* simple: POS IDENT */ -#line 491 "griby.y" +#line 492 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[0].str),"position",0,NULL,NULL,0,NULL,NULL); free((grib_yyvsp[0].str)); } -#line 2794 "y.tab.c" +#line 2807 "y.tab.c" break; case 89: /* simple: INTCONST IDENT '=' argument flags */ -#line 494 "griby.y" +#line 495 "griby.y" { (grib_yyval.act) = grib_action_create_variable(grib_parser_context,(grib_yyvsp[-3].str),"constant",0,(grib_yyvsp[-1].explist),NULL,(grib_yyvsp[0].lval),NULL);free((grib_yyvsp[-3].str)); } -#line 2800 "y.tab.c" +#line 2813 "y.tab.c" break; case 90: /* simple: TRANS IDENT '=' argument flags */ -#line 497 "griby.y" +#line 498 "griby.y" { (grib_yyval.act) = grib_action_create_variable(grib_parser_context,(grib_yyvsp[-3].str),"transient",0,(grib_yyvsp[-1].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL); free((grib_yyvsp[-3].str)); } -#line 2806 "y.tab.c" +#line 2819 "y.tab.c" break; case 91: /* simple: TRANS IDENT '=' '{' dvalues '}' flags */ -#line 499 "griby.y" +#line 500 "griby.y" { (grib_yyval.act) = grib_action_create_transient_darray(grib_parser_context,(grib_yyvsp[-5].str),(grib_yyvsp[-2].dvalue),(grib_yyvsp[0].lval)); free((grib_yyvsp[-5].str)); } -#line 2812 "y.tab.c" +#line 2825 "y.tab.c" break; case 92: /* simple: FLOAT IDENT default flags */ -#line 502 "griby.y" +#line 503 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"ieeefloat",4,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-2].str)); } -#line 2818 "y.tab.c" +#line 2831 "y.tab.c" break; case 93: /* simple: FLOAT IDENT '.' IDENT default flags */ -#line 505 "griby.y" +#line 506 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-2].str),"ieeefloat",4,NULL,(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),(grib_yyvsp[-4].str),NULL); free((grib_yyvsp[-2].str));free((grib_yyvsp[-4].str));} -#line 2824 "y.tab.c" +#line 2837 "y.tab.c" break; case 94: /* simple: FLOAT IDENT '[' argument ']' default flags */ -#line 508 "griby.y" +#line 509 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-5].str),"ieeefloat",4,(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL,NULL);free((grib_yyvsp[-5].str)); } -#line 2830 "y.tab.c" +#line 2843 "y.tab.c" break; case 95: /* simple: G1_HALF_BYTE IDENT */ -#line 511 "griby.y" +#line 512 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[0].str),"g1_half_byte_codeflag",0,NULL,NULL,0,NULL,NULL);free((grib_yyvsp[0].str)); } -#line 2836 "y.tab.c" +#line 2849 "y.tab.c" break; case 96: /* simple: SECTION_LENGTH '[' INTEGER ']' IDENT default */ -#line 514 "griby.y" +#line 515 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-1].str),"section_length",(grib_yyvsp[-3].lval),NULL,(grib_yyvsp[0].explist),0,NULL,NULL);free((grib_yyvsp[-1].str)); } -#line 2842 "y.tab.c" +#line 2855 "y.tab.c" break; case 97: /* simple: G1_MESSAGE_LENGTH '[' INTEGER ']' IDENT '(' argument_list ')' */ -#line 517 "griby.y" +#line 518 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-3].str),"g1_message_length",(grib_yyvsp[-5].lval),(grib_yyvsp[-1].explist),NULL,0,NULL,NULL);free((grib_yyvsp[-3].str)); } -#line 2848 "y.tab.c" +#line 2861 "y.tab.c" break; case 98: /* simple: G1_SECTION4_LENGTH '[' INTEGER ']' IDENT '(' argument_list ')' */ -#line 520 "griby.y" +#line 521 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-3].str),"g1_section4_length",(grib_yyvsp[-5].lval),(grib_yyvsp[-1].explist),NULL,0,NULL,NULL);free((grib_yyvsp[-3].str)); } -#line 2854 "y.tab.c" +#line 2867 "y.tab.c" break; case 99: /* simple: KSEC IDENT argument */ -#line 523 "griby.y" +#line 524 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-1].str),"ksec",0,(grib_yyvsp[0].explist),NULL,0,NULL,NULL);free((grib_yyvsp[-1].str)); } -#line 2860 "y.tab.c" +#line 2873 "y.tab.c" break; case 100: /* simple: PAD IDENT '(' argument_list ')' */ -#line 526 "griby.y" +#line 527 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-3].str),"pad",0,(grib_yyvsp[-1].explist),0,0,NULL,NULL); free((grib_yyvsp[-3].str)); } -#line 2866 "y.tab.c" +#line 2879 "y.tab.c" break; case 101: /* simple: PADTO IDENT '(' argument_list ')' */ -#line 529 "griby.y" +#line 530 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-3].str),"padto",0,(grib_yyvsp[-1].explist),0,0,NULL,NULL); free((grib_yyvsp[-3].str)); } -#line 2872 "y.tab.c" +#line 2885 "y.tab.c" break; case 102: /* simple: PADTOEVEN IDENT '(' argument_list ')' */ -#line 532 "griby.y" +#line 533 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-3].str),"padtoeven",0,(grib_yyvsp[-1].explist),0,0,NULL,NULL); free((grib_yyvsp[-3].str)); } -#line 2878 "y.tab.c" +#line 2891 "y.tab.c" break; case 103: /* simple: PADTOMULTIPLE IDENT '(' argument_list ')' */ -#line 535 "griby.y" +#line 536 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-3].str),"padtomultiple",0,(grib_yyvsp[-1].explist),0,0,NULL,NULL); free((grib_yyvsp[-3].str)); } -#line 2884 "y.tab.c" +#line 2897 "y.tab.c" break; case 104: /* simple: MESSAGE '[' INTEGER ']' IDENT flags */ -#line 538 "griby.y" +#line 539 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-1].str),"message",(grib_yyvsp[-3].lval),0,0,(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-1].str)); } -#line 2890 "y.tab.c" +#line 2903 "y.tab.c" break; case 105: /* simple: MESSAGE_COPY IDENT flags */ -#line 541 "griby.y" +#line 542 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-1].str),"message_copy",0,0,0,(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-1].str)); } -#line 2896 "y.tab.c" +#line 2909 "y.tab.c" break; case 106: /* simple: SECTION_PADDING IDENT flags */ -#line 544 "griby.y" +#line 545 "griby.y" { (grib_yyval.act) = grib_action_create_gen(grib_parser_context,(grib_yyvsp[-1].str),"section_padding",0,0,0,(grib_yyvsp[0].lval),NULL,NULL); free((grib_yyvsp[-1].str)); } -#line 2902 "y.tab.c" +#line 2915 "y.tab.c" break; case 107: /* simple: TEMPLATE IDENT STRING */ -#line 546 "griby.y" +#line 547 "griby.y" { (grib_yyval.act) = grib_action_create_template(grib_parser_context,0,(grib_yyvsp[-1].str),(grib_yyvsp[0].str)); free((grib_yyvsp[-1].str)); free((grib_yyvsp[0].str));} -#line 2908 "y.tab.c" +#line 2921 "y.tab.c" break; case 108: /* simple: TEMPLATE_NOFAIL IDENT STRING */ -#line 548 "griby.y" +#line 549 "griby.y" { (grib_yyval.act) = grib_action_create_template(grib_parser_context,1,(grib_yyvsp[-1].str),(grib_yyvsp[0].str)); free((grib_yyvsp[-1].str)); free((grib_yyvsp[0].str));} -#line 2914 "y.tab.c" +#line 2927 "y.tab.c" break; case 109: /* simple: ALIAS IDENT '=' IDENT flags */ -#line 551 "griby.y" +#line 552 "griby.y" { (grib_yyval.act) = grib_action_create_alias(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].str),NULL,(grib_yyvsp[0].lval)); free((grib_yyvsp[-3].str)); free((grib_yyvsp[-1].str)); } -#line 2920 "y.tab.c" +#line 2933 "y.tab.c" break; case 110: /* simple: UNALIAS IDENT */ -#line 554 "griby.y" +#line 555 "griby.y" { (grib_yyval.act) = grib_action_create_alias(grib_parser_context,(grib_yyvsp[0].str),NULL,NULL,0); free((grib_yyvsp[0].str)); } -#line 2926 "y.tab.c" +#line 2939 "y.tab.c" break; case 111: /* simple: ALIAS IDENT '.' IDENT '=' IDENT flags */ -#line 557 "griby.y" +#line 558 "griby.y" { (grib_yyval.act) = grib_action_create_alias(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].str),(grib_yyvsp[-5].str),(grib_yyvsp[0].lval)); free((grib_yyvsp[-5].str)); free((grib_yyvsp[-3].str)); free((grib_yyvsp[-1].str)); } -#line 2934 "y.tab.c" +#line 2947 "y.tab.c" break; case 112: /* simple: UNALIAS IDENT '.' IDENT */ -#line 561 "griby.y" +#line 562 "griby.y" { (grib_yyval.act) = grib_action_create_alias(grib_parser_context,(grib_yyvsp[0].str),NULL,(grib_yyvsp[-2].str),0); free((grib_yyvsp[-2].str)); free((grib_yyvsp[0].str)); } -#line 2942 "y.tab.c" +#line 2955 "y.tab.c" break; case 113: /* simple: META IDENT IDENT '(' argument_list ')' default flags */ -#line 565 "griby.y" +#line 566 "griby.y" { (grib_yyval.act) = grib_action_create_meta(grib_parser_context,(grib_yyvsp[-6].str),(grib_yyvsp[-5].str),(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),NULL); free((grib_yyvsp[-6].str));free((grib_yyvsp[-5].str));} -#line 2948 "y.tab.c" +#line 2961 "y.tab.c" break; case 114: /* simple: META IDENT '.' IDENT IDENT '(' argument_list ')' default flags */ -#line 568 "griby.y" +#line 569 "griby.y" { (grib_yyval.act) = grib_action_create_meta(grib_parser_context,(grib_yyvsp[-6].str),(grib_yyvsp[-5].str),(grib_yyvsp[-3].explist),(grib_yyvsp[-1].explist),(grib_yyvsp[0].lval),(grib_yyvsp[-8].str)); free((grib_yyvsp[-6].str));free((grib_yyvsp[-5].str));free((grib_yyvsp[-8].str));} -#line 2954 "y.tab.c" +#line 2967 "y.tab.c" break; case 115: /* simple: ITERATOR IDENT '(' argument_list ')' */ -#line 571 "griby.y" +#line 572 "griby.y" { grib_arguments* a = grib_arguments_new( grib_parser_context, @@ -2966,11 +2979,11 @@ grib_yyreduce: "ITERATOR","iterator",a,NULL, GRIB_ACCESSOR_FLAG_HIDDEN|GRIB_ACCESSOR_FLAG_READ_ONLY,NULL); free((grib_yyvsp[-3].str)); } -#line 2970 "y.tab.c" +#line 2983 "y.tab.c" break; case 116: /* simple: NEAREST IDENT '(' argument_list ')' */ -#line 583 "griby.y" +#line 584 "griby.y" { grib_arguments* a = grib_arguments_new( grib_parser_context, @@ -2982,11 +2995,11 @@ grib_yyreduce: "NEAREST","nearest",a,NULL, GRIB_ACCESSOR_FLAG_HIDDEN|GRIB_ACCESSOR_FLAG_READ_ONLY,NULL); free((grib_yyvsp[-3].str)); } -#line 2986 "y.tab.c" +#line 2999 "y.tab.c" break; case 117: /* simple: BOX IDENT '(' argument_list ')' */ -#line 595 "griby.y" +#line 596 "griby.y" { grib_arguments* a = grib_arguments_new( grib_parser_context, @@ -2998,809 +3011,815 @@ grib_yyreduce: "BOX","box",a,NULL, GRIB_ACCESSOR_FLAG_HIDDEN|GRIB_ACCESSOR_FLAG_READ_ONLY,NULL); free((grib_yyvsp[-3].str)); } -#line 3002 "y.tab.c" +#line 3015 "y.tab.c" break; case 118: /* simple: EXPORT IDENT '(' argument_list ')' */ -#line 607 "griby.y" +#line 608 "griby.y" { (grib_yyval.act) = grib_action_create_put(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].explist));free((grib_yyvsp[-3].str));} -#line 3008 "y.tab.c" +#line 3021 "y.tab.c" break; case 119: /* simple: REMOVE argument_list */ -#line 610 "griby.y" +#line 611 "griby.y" { (grib_yyval.act) = grib_action_create_remove(grib_parser_context,(grib_yyvsp[0].explist));} -#line 3014 "y.tab.c" +#line 3027 "y.tab.c" break; case 120: /* simple: RENAME '(' IDENT ',' IDENT ')' */ -#line 612 "griby.y" +#line 613 "griby.y" { (grib_yyval.act) = grib_action_create_rename(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].str));free((grib_yyvsp[-3].str));free((grib_yyvsp[-1].str));} -#line 3020 "y.tab.c" +#line 3033 "y.tab.c" break; case 121: /* simple: ASSERT '(' expression ')' */ -#line 615 "griby.y" +#line 616 "griby.y" { (grib_yyval.act) = grib_action_create_assert(grib_parser_context,(grib_yyvsp[-1].exp));} -#line 3026 "y.tab.c" +#line 3039 "y.tab.c" break; case 122: /* simple: MODIFY IDENT flags */ -#line 618 "griby.y" +#line 619 "griby.y" { (grib_yyval.act) = grib_action_create_modify(grib_parser_context,(grib_yyvsp[-1].str),(grib_yyvsp[0].lval)); free((grib_yyvsp[-1].str));} -#line 3032 "y.tab.c" +#line 3045 "y.tab.c" break; case 123: /* simple: SET IDENT '=' MISSING */ -#line 620 "griby.y" +#line 621 "griby.y" { (grib_yyval.act) = grib_action_create_set_missing(grib_parser_context,(grib_yyvsp[-2].str)); free((grib_yyvsp[-2].str)); } -#line 3038 "y.tab.c" +#line 3051 "y.tab.c" break; case 124: /* simple: SET IDENT '=' expression */ -#line 621 "griby.y" +#line 622 "griby.y" { (grib_yyval.act) = grib_action_create_set(grib_parser_context,(grib_yyvsp[-2].str),(grib_yyvsp[0].exp),0); free((grib_yyvsp[-2].str)); } -#line 3044 "y.tab.c" +#line 3057 "y.tab.c" break; case 125: /* simple: SET IDENT '=' '{' dvalues '}' */ -#line 622 "griby.y" +#line 623 "griby.y" { (grib_yyval.act) = grib_action_create_set_darray(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].dvalue)); free((grib_yyvsp[-4].str)); } -#line 3050 "y.tab.c" +#line 3063 "y.tab.c" break; case 126: /* simple: SET IDENT '=' '{' svalues '}' */ -#line 623 "griby.y" +#line 624 "griby.y" { (grib_yyval.act) = grib_action_create_set_sarray(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].svalue)); free((grib_yyvsp[-4].str)); } -#line 3056 "y.tab.c" +#line 3069 "y.tab.c" break; case 127: /* simple: SET_NOFAIL IDENT '=' expression */ -#line 625 "griby.y" +#line 626 "griby.y" { (grib_yyval.act) = grib_action_create_set(grib_parser_context,(grib_yyvsp[-2].str),(grib_yyvsp[0].exp),1); free((grib_yyvsp[-2].str)); } -#line 3062 "y.tab.c" +#line 3075 "y.tab.c" break; case 128: /* simple: WRITE STRING */ -#line 628 "griby.y" +#line 629 "griby.y" { (grib_yyval.act) = grib_action_create_write(grib_parser_context,(grib_yyvsp[0].str),0,0); free((grib_yyvsp[0].str));} -#line 3068 "y.tab.c" +#line 3081 "y.tab.c" break; case 129: /* simple: WRITE */ -#line 629 "griby.y" +#line 630 "griby.y" { (grib_yyval.act) = grib_action_create_write(grib_parser_context,"",0,0); } -#line 3074 "y.tab.c" +#line 3087 "y.tab.c" break; case 130: /* simple: WRITE '(' INTEGER ')' STRING */ -#line 630 "griby.y" +#line 631 "griby.y" { (grib_yyval.act) = grib_action_create_write(grib_parser_context,(grib_yyvsp[0].str),0,(grib_yyvsp[-2].lval)); free((grib_yyvsp[0].str));} -#line 3080 "y.tab.c" +#line 3093 "y.tab.c" break; case 131: /* simple: WRITE '(' INTEGER ')' */ -#line 631 "griby.y" +#line 632 "griby.y" { (grib_yyval.act) = grib_action_create_write(grib_parser_context,"",0,(grib_yyvsp[-1].lval)); } -#line 3086 "y.tab.c" +#line 3099 "y.tab.c" break; case 132: /* simple: APPEND STRING */ -#line 632 "griby.y" +#line 633 "griby.y" { (grib_yyval.act) = grib_action_create_write(grib_parser_context,(grib_yyvsp[0].str),1,0); free((grib_yyvsp[0].str));} -#line 3092 "y.tab.c" +#line 3105 "y.tab.c" break; case 133: /* simple: APPEND */ -#line 633 "griby.y" +#line 634 "griby.y" { (grib_yyval.act) = grib_action_create_write(grib_parser_context,"",1,0); } -#line 3098 "y.tab.c" +#line 3111 "y.tab.c" break; case 134: /* simple: APPEND '(' INTEGER ')' STRING */ -#line 634 "griby.y" +#line 635 "griby.y" { (grib_yyval.act) = grib_action_create_write(grib_parser_context,(grib_yyvsp[0].str),1,(grib_yyvsp[-2].lval)); free((grib_yyvsp[0].str));} -#line 3104 "y.tab.c" +#line 3117 "y.tab.c" break; case 135: /* simple: APPEND '(' INTEGER ')' */ -#line 635 "griby.y" +#line 636 "griby.y" { (grib_yyval.act) = grib_action_create_write(grib_parser_context,"",1,(grib_yyvsp[-1].lval)); } -#line 3110 "y.tab.c" +#line 3123 "y.tab.c" break; case 136: /* simple: CLOSE '(' IDENT ')' */ -#line 637 "griby.y" +#line 638 "griby.y" { (grib_yyval.act) = grib_action_create_close(grib_parser_context,(grib_yyvsp[-1].str)); free((grib_yyvsp[-1].str));} -#line 3116 "y.tab.c" +#line 3129 "y.tab.c" break; case 137: /* simple: PRINT STRING */ -#line 638 "griby.y" +#line 639 "griby.y" { (grib_yyval.act) = grib_action_create_print(grib_parser_context,(grib_yyvsp[0].str),0); free((grib_yyvsp[0].str)); } -#line 3122 "y.tab.c" +#line 3135 "y.tab.c" break; case 138: /* simple: PRINT '(' STRING ')' STRING */ -#line 639 "griby.y" +#line 640 "griby.y" { (grib_yyval.act) = grib_action_create_print(grib_parser_context,(grib_yyvsp[0].str),(grib_yyvsp[-2].str)); free((grib_yyvsp[0].str)); free((grib_yyvsp[-2].str));} -#line 3128 "y.tab.c" +#line 3141 "y.tab.c" break; case 139: /* simple: PRINT '(' IDENT ')' STRING */ -#line 640 "griby.y" +#line 641 "griby.y" { (grib_yyval.act) = grib_action_create_print(grib_parser_context,(grib_yyvsp[0].str),(grib_yyvsp[-2].str)); free((grib_yyvsp[0].str)); free((grib_yyvsp[-2].str));} -#line 3134 "y.tab.c" +#line 3147 "y.tab.c" break; case 140: /* simple: PRINT */ -#line 641 "griby.y" +#line 642 "griby.y" { (grib_yyval.act) = grib_action_create_print(grib_parser_context,"",0); } -#line 3140 "y.tab.c" +#line 3153 "y.tab.c" break; case 141: /* if_block: IF '(' expression ')' '{' instructions '}' */ -#line 645 "griby.y" +#line 646 "griby.y" { (grib_yyval.act) = grib_action_create_if(grib_parser_context,(grib_yyvsp[-4].exp),(grib_yyvsp[-1].act),0,0,grib_yylineno,file_being_parsed()); } -#line 3146 "y.tab.c" +#line 3159 "y.tab.c" break; case 142: /* if_block: IF '(' expression ')' '{' instructions '}' ELSE '{' instructions '}' */ -#line 646 "griby.y" +#line 647 "griby.y" { (grib_yyval.act) = grib_action_create_if(grib_parser_context,(grib_yyvsp[-8].exp),(grib_yyvsp[-5].act),(grib_yyvsp[-1].act),0,grib_yylineno,file_being_parsed()); } -#line 3152 "y.tab.c" +#line 3165 "y.tab.c" break; case 143: /* if_block: IF_TRANSIENT '(' expression ')' '{' instructions '}' */ -#line 647 "griby.y" +#line 648 "griby.y" { (grib_yyval.act) = grib_action_create_if(grib_parser_context,(grib_yyvsp[-4].exp),(grib_yyvsp[-1].act),0,1,grib_yylineno,file_being_parsed()); } -#line 3158 "y.tab.c" +#line 3171 "y.tab.c" break; case 144: /* if_block: IF_TRANSIENT '(' expression ')' '{' instructions '}' ELSE '{' instructions '}' */ -#line 648 "griby.y" +#line 649 "griby.y" { (grib_yyval.act) = grib_action_create_if(grib_parser_context,(grib_yyvsp[-8].exp),(grib_yyvsp[-5].act),(grib_yyvsp[-1].act),1,grib_yylineno,file_being_parsed()); } -#line 3164 "y.tab.c" +#line 3177 "y.tab.c" break; case 145: /* when_block: WHEN '(' expression ')' set semi */ -#line 652 "griby.y" +#line 653 "griby.y" { (grib_yyval.act) = grib_action_create_when(grib_parser_context,(grib_yyvsp[-3].exp),(grib_yyvsp[-1].act),NULL); } -#line 3170 "y.tab.c" +#line 3183 "y.tab.c" break; case 146: /* when_block: WHEN '(' expression ')' '{' set_list '}' */ -#line 653 "griby.y" +#line 654 "griby.y" { (grib_yyval.act) = grib_action_create_when(grib_parser_context,(grib_yyvsp[-4].exp),(grib_yyvsp[-1].act),NULL); } -#line 3176 "y.tab.c" +#line 3189 "y.tab.c" break; case 147: /* when_block: WHEN '(' expression ')' '{' set_list '}' ELSE '{' set_list '}' */ -#line 654 "griby.y" +#line 655 "griby.y" { (grib_yyval.act) = grib_action_create_when(grib_parser_context,(grib_yyvsp[-8].exp),(grib_yyvsp[-5].act),(grib_yyvsp[-1].act)); } -#line 3182 "y.tab.c" +#line 3195 "y.tab.c" break; case 148: /* set: SET IDENT '=' expression */ -#line 657 "griby.y" +#line 658 "griby.y" { (grib_yyval.act) = grib_action_create_set(grib_parser_context,(grib_yyvsp[-2].str),(grib_yyvsp[0].exp),0); free((grib_yyvsp[-2].str)); } -#line 3188 "y.tab.c" +#line 3201 "y.tab.c" break; case 149: /* set: SET_NOFAIL IDENT '=' expression */ -#line 658 "griby.y" +#line 659 "griby.y" { (grib_yyval.act) = grib_action_create_set(grib_parser_context,(grib_yyvsp[-2].str),(grib_yyvsp[0].exp),1); free((grib_yyvsp[-2].str)); } -#line 3194 "y.tab.c" +#line 3207 "y.tab.c" break; case 151: /* set_list: set_list set semi */ -#line 662 "griby.y" +#line 663 "griby.y" { (grib_yyvsp[-2].act)->next = (grib_yyvsp[-1].act); (grib_yyval.act) = (grib_yyvsp[-2].act); } -#line 3200 "y.tab.c" +#line 3213 "y.tab.c" break; case 152: /* default: empty */ -#line 666 "griby.y" +#line 667 "griby.y" { (grib_yyval.explist) = NULL ;} -#line 3206 "y.tab.c" +#line 3219 "y.tab.c" break; case 153: /* default: '=' argument_list */ -#line 667 "griby.y" +#line 668 "griby.y" { (grib_yyval.explist) = (grib_yyvsp[0].explist) ;} -#line 3212 "y.tab.c" +#line 3225 "y.tab.c" break; case 154: /* flags: empty */ -#line 670 "griby.y" +#line 671 "griby.y" { (grib_yyval.lval) = 0 ; } -#line 3218 "y.tab.c" +#line 3231 "y.tab.c" break; case 155: /* flags: ':' flag_list */ -#line 671 "griby.y" +#line 672 "griby.y" { (grib_yyval.lval) = (grib_yyvsp[0].lval); } -#line 3224 "y.tab.c" +#line 3237 "y.tab.c" break; case 157: /* flag_list: flag_list ',' flag */ -#line 675 "griby.y" +#line 676 "griby.y" { (grib_yyval.lval) = (grib_yyvsp[-2].lval) | (grib_yyvsp[0].lval); } -#line 3230 "y.tab.c" +#line 3243 "y.tab.c" break; case 158: /* flag: READ_ONLY */ -#line 678 "griby.y" +#line 679 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_READ_ONLY; } -#line 3236 "y.tab.c" +#line 3249 "y.tab.c" break; case 159: /* flag: LOWERCASE */ -#line 679 "griby.y" +#line 680 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_LOWERCASE; } -#line 3242 "y.tab.c" +#line 3255 "y.tab.c" break; case 160: /* flag: DUMP */ -#line 680 "griby.y" +#line 681 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_DUMP; } -#line 3248 "y.tab.c" +#line 3261 "y.tab.c" break; case 161: /* flag: NO_COPY */ -#line 681 "griby.y" +#line 682 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_NO_COPY; } -#line 3254 "y.tab.c" +#line 3267 "y.tab.c" break; case 162: /* flag: NO_FAIL */ -#line 682 "griby.y" +#line 683 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_NO_FAIL; } -#line 3260 "y.tab.c" +#line 3273 "y.tab.c" break; case 163: /* flag: HIDDEN */ -#line 683 "griby.y" +#line 684 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_HIDDEN; } -#line 3266 "y.tab.c" +#line 3279 "y.tab.c" break; case 164: /* flag: EDITION_SPECIFIC */ -#line 684 "griby.y" +#line 685 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_EDITION_SPECIFIC; } -#line 3272 "y.tab.c" +#line 3285 "y.tab.c" break; case 165: /* flag: CAN_BE_MISSING */ -#line 685 "griby.y" +#line 686 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_CAN_BE_MISSING; } -#line 3278 "y.tab.c" +#line 3291 "y.tab.c" break; case 166: /* flag: CONSTRAINT */ -#line 686 "griby.y" +#line 687 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_CONSTRAINT; } -#line 3284 "y.tab.c" +#line 3297 "y.tab.c" break; case 167: /* flag: COPY_OK */ -#line 687 "griby.y" +#line 688 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_COPY_OK; } -#line 3290 "y.tab.c" +#line 3303 "y.tab.c" break; case 168: /* flag: TRANS */ -#line 688 "griby.y" +#line 689 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_TRANSIENT; } -#line 3296 "y.tab.c" +#line 3309 "y.tab.c" break; case 169: /* flag: STRING_TYPE */ -#line 689 "griby.y" +#line 690 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_STRING_TYPE; } -#line 3302 "y.tab.c" +#line 3315 "y.tab.c" break; case 170: /* flag: LONG_TYPE */ -#line 690 "griby.y" +#line 691 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_LONG_TYPE; } -#line 3308 "y.tab.c" +#line 3321 "y.tab.c" break; case 171: /* flag: DOUBLE_TYPE */ -#line 691 "griby.y" +#line 692 "griby.y" { (grib_yyval.lval) = GRIB_ACCESSOR_FLAG_DOUBLE_TYPE; } -#line 3314 "y.tab.c" +#line 3327 "y.tab.c" break; case 172: /* list_block: IDENT LIST '(' expression ')' '{' instructions '}' */ -#line 694 "griby.y" +#line 695 "griby.y" { (grib_yyval.act) = grib_action_create_list(grib_parser_context,(grib_yyvsp[-7].str),(grib_yyvsp[-4].exp),(grib_yyvsp[-1].act)); free((grib_yyvsp[-7].str)); } -#line 3320 "y.tab.c" +#line 3333 "y.tab.c" break; case 173: /* while_block: WHILE '(' expression ')' '{' instructions '}' */ -#line 697 "griby.y" +#line 698 "griby.y" { (grib_yyval.act) = grib_action_create_while(grib_parser_context,(grib_yyvsp[-4].exp),(grib_yyvsp[-1].act)); } -#line 3326 "y.tab.c" +#line 3339 "y.tab.c" break; case 174: /* trigger_block: TRIGGER '(' argument_list ')' '{' instructions '}' */ -#line 700 "griby.y" +#line 701 "griby.y" { (grib_yyval.act) = grib_action_create_trigger(grib_parser_context,(grib_yyvsp[-4].explist),(grib_yyvsp[-1].act)); } -#line 3332 "y.tab.c" +#line 3345 "y.tab.c" break; case 175: /* concept_block: CONCEPT IDENT '{' concept_list '}' flags */ -#line 703 "griby.y" +#line 704 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].concept_value),0,0,0,0,0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-4].str)); } -#line 3338 "y.tab.c" +#line 3351 "y.tab.c" break; case 176: /* concept_block: CONCEPT IDENT '(' IDENT ')' '{' concept_list '}' flags */ -#line 704 "griby.y" +#line 705 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-7].str),(grib_yyvsp[-2].concept_value),0,0,(grib_yyvsp[-5].str),0,0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-7].str));free((grib_yyvsp[-5].str)); } -#line 3344 "y.tab.c" +#line 3357 "y.tab.c" break; case 177: /* concept_block: CONCEPT IDENT '(' IDENT ',' STRING ',' IDENT ',' IDENT ')' flags */ -#line 705 "griby.y" +#line 706 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-10].str),0,(grib_yyvsp[-6].str),0,(grib_yyvsp[-8].str),(grib_yyvsp[-4].str),(grib_yyvsp[-2].str),0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-10].str));free((grib_yyvsp[-6].str));free((grib_yyvsp[-8].str));free((grib_yyvsp[-4].str));free((grib_yyvsp[-2].str)); } -#line 3350 "y.tab.c" +#line 3363 "y.tab.c" break; case 178: /* concept_block: CONCEPT IDENT '(' IDENT ',' STRING ',' IDENT ',' IDENT ',' IDENT ')' flags */ -#line 706 "griby.y" +#line 707 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-12].str),0,(grib_yyvsp[-8].str),0,(grib_yyvsp[-10].str),(grib_yyvsp[-6].str),(grib_yyvsp[-4].str),(grib_yyvsp[-2].str),(grib_yyvsp[0].lval),0); free((grib_yyvsp[-12].str));free((grib_yyvsp[-8].str));free((grib_yyvsp[-10].str));free((grib_yyvsp[-6].str));free((grib_yyvsp[-4].str));free((grib_yyvsp[-2].str)); } -#line 3356 "y.tab.c" +#line 3369 "y.tab.c" break; case 179: /* concept_block: CONCEPT IDENT '(' IDENT ',' STRING ',' IDENT ')' flags */ -#line 707 "griby.y" +#line 708 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-8].str),0,(grib_yyvsp[-4].str),0,(grib_yyvsp[-6].str),(grib_yyvsp[-2].str),0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-8].str));free((grib_yyvsp[-4].str));free((grib_yyvsp[-6].str));free((grib_yyvsp[-2].str)); } -#line 3362 "y.tab.c" +#line 3375 "y.tab.c" break; case 180: /* concept_block: CONCEPT IDENT '.' IDENT '(' IDENT ',' STRING ',' IDENT ',' IDENT ')' flags */ -#line 708 "griby.y" +#line 709 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-10].str),0,(grib_yyvsp[-6].str),(grib_yyvsp[-12].str),(grib_yyvsp[-8].str),(grib_yyvsp[-4].str),(grib_yyvsp[-2].str),0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-10].str));free((grib_yyvsp[-6].str));free((grib_yyvsp[-8].str));free((grib_yyvsp[-4].str)); free((grib_yyvsp[-2].str)); free((grib_yyvsp[-12].str));} -#line 3368 "y.tab.c" +#line 3381 "y.tab.c" break; case 181: /* concept_block: CONCEPT IDENT '.' IDENT '(' IDENT ',' STRING ',' IDENT ')' flags */ -#line 709 "griby.y" +#line 710 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-8].str),0,(grib_yyvsp[-4].str),(grib_yyvsp[-10].str),(grib_yyvsp[-6].str),(grib_yyvsp[-2].str),0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-8].str));free((grib_yyvsp[-4].str));free((grib_yyvsp[-6].str));free((grib_yyvsp[-2].str)); free((grib_yyvsp[-10].str));} -#line 3374 "y.tab.c" +#line 3387 "y.tab.c" break; case 182: /* concept_block: CONCEPT IDENT '.' IDENT '{' concept_list '}' flags */ -#line 710 "griby.y" +#line 711 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].concept_value),0,(grib_yyvsp[-6].str),0,0,0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-6].str));free((grib_yyvsp[-4].str)); } -#line 3380 "y.tab.c" +#line 3393 "y.tab.c" break; case 183: /* concept_block: CONCEPT IDENT '.' IDENT '(' IDENT ')' '{' concept_list '}' flags */ -#line 711 "griby.y" +#line 712 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-7].str),(grib_yyvsp[-2].concept_value),0,(grib_yyvsp[-9].str),(grib_yyvsp[-5].str),0,0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-9].str));free((grib_yyvsp[-7].str));free((grib_yyvsp[-5].str)); } -#line 3386 "y.tab.c" +#line 3399 "y.tab.c" break; case 184: /* concept_block: CONCEPT_NOFAIL IDENT '{' concept_list '}' flags */ -#line 712 "griby.y" +#line 713 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].concept_value),0,0,0,0,0,0,(grib_yyvsp[0].lval),1); free((grib_yyvsp[-4].str)); } -#line 3392 "y.tab.c" +#line 3405 "y.tab.c" break; case 185: /* concept_block: CONCEPT_NOFAIL IDENT '(' IDENT ')' '{' concept_list '}' flags */ -#line 713 "griby.y" +#line 714 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-7].str),(grib_yyvsp[-2].concept_value),0,0,(grib_yyvsp[-5].str),0,0,0,(grib_yyvsp[0].lval),1); free((grib_yyvsp[-7].str));free((grib_yyvsp[-5].str)); } -#line 3398 "y.tab.c" +#line 3411 "y.tab.c" break; case 186: /* concept_block: CONCEPT_NOFAIL IDENT '(' IDENT ',' STRING ',' IDENT ',' IDENT ')' flags */ -#line 714 "griby.y" +#line 715 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-10].str),0,(grib_yyvsp[-6].str),0,(grib_yyvsp[-8].str),(grib_yyvsp[-4].str),(grib_yyvsp[-2].str),0,(grib_yyvsp[0].lval),1); free((grib_yyvsp[-10].str));free((grib_yyvsp[-6].str));free((grib_yyvsp[-8].str));free((grib_yyvsp[-4].str));free((grib_yyvsp[-2].str)); } -#line 3404 "y.tab.c" +#line 3417 "y.tab.c" break; case 187: /* concept_block: CONCEPT_NOFAIL IDENT '(' IDENT ',' STRING ',' IDENT ')' flags */ -#line 715 "griby.y" +#line 716 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-8].str),0,(grib_yyvsp[-4].str),0,(grib_yyvsp[-6].str),(grib_yyvsp[-2].str),0,0,(grib_yyvsp[0].lval),1); free((grib_yyvsp[-8].str));free((grib_yyvsp[-4].str));free((grib_yyvsp[-6].str));free((grib_yyvsp[-2].str)); } -#line 3410 "y.tab.c" +#line 3423 "y.tab.c" break; case 188: /* concept_block: CONCEPT_NOFAIL IDENT '.' IDENT '(' IDENT ',' STRING ',' IDENT ',' IDENT ')' flags */ -#line 716 "griby.y" +#line 717 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-10].str),0,(grib_yyvsp[-6].str),(grib_yyvsp[-12].str),(grib_yyvsp[-8].str),(grib_yyvsp[-4].str),(grib_yyvsp[-2].str),0,(grib_yyvsp[0].lval),1); free((grib_yyvsp[-10].str));free((grib_yyvsp[-6].str));free((grib_yyvsp[-8].str));free((grib_yyvsp[-4].str));free((grib_yyvsp[-2].str)); free((grib_yyvsp[-12].str));} -#line 3416 "y.tab.c" +#line 3429 "y.tab.c" break; case 189: /* concept_block: CONCEPT_NOFAIL IDENT '.' IDENT '(' IDENT ',' STRING ',' IDENT ')' flags */ -#line 717 "griby.y" +#line 718 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-8].str),0,(grib_yyvsp[-4].str),(grib_yyvsp[-10].str),(grib_yyvsp[-6].str),(grib_yyvsp[-2].str),0,0,(grib_yyvsp[0].lval),1); free((grib_yyvsp[-8].str));free((grib_yyvsp[-4].str));free((grib_yyvsp[-6].str));free((grib_yyvsp[-2].str)); free((grib_yyvsp[-10].str));} -#line 3422 "y.tab.c" +#line 3435 "y.tab.c" break; case 190: /* concept_block: CONCEPT_NOFAIL IDENT '.' IDENT '{' concept_list '}' flags */ -#line 718 "griby.y" +#line 719 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].concept_value),0,(grib_yyvsp[-6].str),0,0,0,0,(grib_yyvsp[0].lval),1); free((grib_yyvsp[-6].str));free((grib_yyvsp[-4].str)); } -#line 3428 "y.tab.c" +#line 3441 "y.tab.c" break; case 191: /* concept_block: CONCEPT_NOFAIL IDENT '.' IDENT '(' IDENT ')' '{' concept_list '}' flags */ -#line 719 "griby.y" +#line 720 "griby.y" { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-7].str),(grib_yyvsp[-2].concept_value),0,(grib_yyvsp[-9].str),(grib_yyvsp[-5].str),0,0,0,(grib_yyvsp[0].lval),1); free((grib_yyvsp[-9].str));free((grib_yyvsp[-7].str));free((grib_yyvsp[-5].str)); } -#line 3434 "y.tab.c" +#line 3447 "y.tab.c" break; case 193: /* concept_list: concept_list concept_value */ -#line 724 "griby.y" +#line 725 "griby.y" { (grib_yyval.concept_value) = (grib_yyvsp[0].concept_value); (grib_yyvsp[0].concept_value)->next = (grib_yyvsp[-1].concept_value); } -#line 3440 "y.tab.c" +#line 3453 "y.tab.c" break; case 195: /* hash_array_list: hash_array_list hash_array_value */ -#line 728 "griby.y" +#line 729 "griby.y" { (grib_yyval.hash_array_value) = (grib_yyvsp[0].hash_array_value); (grib_yyvsp[0].hash_array_value)->next = (grib_yyvsp[-1].hash_array_value); } -#line 3446 "y.tab.c" +#line 3459 "y.tab.c" break; case 196: /* hash_array_block: HASH_ARRAY IDENT '{' hash_array_list '}' flags */ -#line 731 "griby.y" +#line 732 "griby.y" { (grib_yyval.act) = grib_action_create_hash_array(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].hash_array_value),0,0,0,0,0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-4].str)); } -#line 3452 "y.tab.c" +#line 3465 "y.tab.c" break; case 197: /* hash_array_block: HASH_ARRAY IDENT '(' IDENT ',' STRING ',' IDENT ',' IDENT ')' flags */ -#line 732 "griby.y" +#line 733 "griby.y" { (grib_yyval.act) = grib_action_create_hash_array(grib_parser_context,(grib_yyvsp[-10].str),0,(grib_yyvsp[-6].str),0,(grib_yyvsp[-8].str),(grib_yyvsp[-4].str),(grib_yyvsp[-2].str),0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-10].str));free((grib_yyvsp[-6].str));free((grib_yyvsp[-8].str));free((grib_yyvsp[-4].str));free((grib_yyvsp[-2].str)); } -#line 3458 "y.tab.c" +#line 3471 "y.tab.c" break; case 199: /* case_list: case_list case_value */ -#line 736 "griby.y" +#line 737 "griby.y" { (grib_yyval.case_value) = (grib_yyvsp[0].case_value); (grib_yyvsp[0].case_value)->next = (grib_yyvsp[-1].case_value); } -#line 3464 "y.tab.c" +#line 3477 "y.tab.c" break; case 200: /* case_value: CASE arguments ':' instructions */ -#line 739 "griby.y" +#line 740 "griby.y" { (grib_yyval.case_value) = grib_case_new(grib_parser_context,(grib_yyvsp[-2].explist),(grib_yyvsp[0].act)); } -#line 3470 "y.tab.c" +#line 3483 "y.tab.c" break; case 201: /* switch_block: SWITCH '(' argument_list ')' '{' case_list DEFAULT ':' instructions '}' */ -#line 743 "griby.y" +#line 744 "griby.y" { (grib_yyval.act) = grib_action_create_switch(grib_parser_context,(grib_yyvsp[-7].explist),(grib_yyvsp[-4].case_value),(grib_yyvsp[-1].act)); } -#line 3476 "y.tab.c" +#line 3489 "y.tab.c" break; case 202: /* switch_block: SWITCH '(' argument_list ')' '{' case_list DEFAULT ':' '}' */ -#line 744 "griby.y" - { (grib_yyval.act) = grib_action_create_switch(grib_parser_context,(grib_yyvsp[-6].explist),(grib_yyvsp[-3].case_value),grib_action_create_noop(grib_parser_context,"continue")); } -#line 3482 "y.tab.c" - break; - - case 203: /* switch_block: SWITCH '(' argument_list ')' '{' case_list '}' */ #line 745 "griby.y" - { (grib_yyval.act) = grib_action_create_switch(grib_parser_context,(grib_yyvsp[-4].explist),(grib_yyvsp[-1].case_value),0); } -#line 3488 "y.tab.c" - break; - - case 204: /* concept_value: STRING '=' '{' concept_conditions '}' */ -#line 748 "griby.y" - { - (grib_yyval.concept_value) = grib_concept_value_new(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].concept_condition)); free((grib_yyvsp[-4].str));} + { (grib_yyval.act) = grib_action_create_switch(grib_parser_context,(grib_yyvsp[-6].explist),(grib_yyvsp[-3].case_value),grib_action_create_noop(grib_parser_context,"continue")); } #line 3495 "y.tab.c" break; + case 203: /* switch_block: SWITCH '(' argument_list ')' '{' case_list '}' */ +#line 746 "griby.y" + { (grib_yyval.act) = grib_action_create_switch(grib_parser_context,(grib_yyvsp[-4].explist),(grib_yyvsp[-1].case_value),0); } +#line 3501 "y.tab.c" + break; + + case 204: /* concept_value: STRING '=' '{' concept_conditions '}' */ +#line 749 "griby.y" + { + (grib_yyval.concept_value) = grib_concept_value_new(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].concept_condition)); free((grib_yyvsp[-4].str));} +#line 3508 "y.tab.c" + break; + case 205: /* concept_value: IDENT '=' '{' concept_conditions '}' */ -#line 750 "griby.y" +#line 751 "griby.y" { (grib_yyval.concept_value) = grib_concept_value_new(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].concept_condition)); free((grib_yyvsp[-4].str));} -#line 3502 "y.tab.c" +#line 3515 "y.tab.c" break; case 206: /* concept_value: INTEGER '=' '{' concept_conditions '}' */ -#line 752 "griby.y" +#line 753 "griby.y" { char buf[80]; snprintf(buf, sizeof(buf), "%ld",(long)(grib_yyvsp[-4].lval)); (grib_yyval.concept_value) = grib_concept_value_new(grib_parser_context,buf,(grib_yyvsp[-1].concept_condition));} -#line 3509 "y.tab.c" - break; - - case 207: /* concept_value: FLOAT '=' '{' concept_conditions '}' */ -#line 754 "griby.y" - { - char buf[80]; snprintf(buf, sizeof(buf), "%g", (double)(grib_yyvsp[-4].dval)); (grib_yyval.concept_value) = grib_concept_value_new(grib_parser_context,buf,(grib_yyvsp[-1].concept_condition));} -#line 3516 "y.tab.c" - break; - - case 209: /* concept_conditions: concept_condition concept_conditions */ -#line 759 "griby.y" - { (grib_yyvsp[-1].concept_condition)->next = (grib_yyvsp[0].concept_condition); (grib_yyval.concept_condition) = (grib_yyvsp[-1].concept_condition); } #line 3522 "y.tab.c" break; + case 207: /* concept_value: FLOAT '=' '{' concept_conditions '}' */ +#line 755 "griby.y" + { + char buf[80]; snprintf(buf, sizeof(buf), "%g", (double)(grib_yyvsp[-4].dval)); (grib_yyval.concept_value) = grib_concept_value_new(grib_parser_context,buf,(grib_yyvsp[-1].concept_condition));} +#line 3529 "y.tab.c" + break; + + case 209: /* concept_conditions: concept_condition concept_conditions */ +#line 760 "griby.y" + { (grib_yyvsp[-1].concept_condition)->next = (grib_yyvsp[0].concept_condition); (grib_yyval.concept_condition) = (grib_yyvsp[-1].concept_condition); } +#line 3535 "y.tab.c" + break; + case 210: /* concept_condition: IDENT '=' expression ';' */ -#line 762 "griby.y" - { (grib_yyval.concept_condition) = grib_concept_condition_new(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].exp),0); free((grib_yyvsp[-3].str)); } -#line 3528 "y.tab.c" - break; - - case 211: /* concept_condition: IDENT '=' '[' integer_array ']' ';' */ #line 763 "griby.y" - { (grib_yyval.concept_condition) = grib_concept_condition_new(grib_parser_context,(grib_yyvsp[-5].str),0,(grib_yyvsp[-2].ivalue)); free((grib_yyvsp[-5].str)); } -#line 3534 "y.tab.c" - break; - - case 212: /* hash_array_value: STRING '=' '[' integer_array ']' */ -#line 767 "griby.y" - { - (grib_yyval.hash_array_value) = grib_integer_hash_array_value_new(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].ivalue)); free((grib_yyvsp[-4].str));} + { (grib_yyval.concept_condition) = grib_concept_condition_new(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].exp),0); free((grib_yyvsp[-3].str)); } #line 3541 "y.tab.c" break; - case 213: /* hash_array_value: IDENT '=' '[' integer_array ']' */ -#line 769 "griby.y" - { - (grib_yyval.hash_array_value) = grib_integer_hash_array_value_new(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].ivalue)); free((grib_yyvsp[-4].str));} -#line 3548 "y.tab.c" + case 211: /* concept_condition: IDENT '=' '[' integer_array ']' ';' */ +#line 764 "griby.y" + { (grib_yyval.concept_condition) = grib_concept_condition_new(grib_parser_context,(grib_yyvsp[-5].str),0,(grib_yyvsp[-2].ivalue)); free((grib_yyvsp[-5].str)); } +#line 3547 "y.tab.c" break; - case 214: /* string_or_ident: SUBSTR '(' IDENT ',' INTEGER ',' INTEGER ')' */ -#line 773 "griby.y" - { (grib_yyval.exp) = new_accessor_expression(grib_parser_context,(grib_yyvsp[-5].str),(grib_yyvsp[-3].lval),(grib_yyvsp[-1].lval)); free((grib_yyvsp[-5].str)); } + case 212: /* hash_array_value: STRING '=' '[' integer_array ']' */ +#line 768 "griby.y" + { + (grib_yyval.hash_array_value) = grib_integer_hash_array_value_new(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].ivalue)); free((grib_yyvsp[-4].str));} #line 3554 "y.tab.c" break; - case 215: /* string_or_ident: IDENT */ + case 213: /* hash_array_value: IDENT '=' '[' integer_array ']' */ +#line 770 "griby.y" + { + (grib_yyval.hash_array_value) = grib_integer_hash_array_value_new(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].ivalue)); free((grib_yyvsp[-4].str));} +#line 3561 "y.tab.c" + break; + + case 214: /* string_or_ident: SUBSTR '(' IDENT ',' INTEGER ',' INTEGER ')' */ #line 774 "griby.y" + { (grib_yyval.exp) = new_accessor_expression(grib_parser_context,(grib_yyvsp[-5].str),(grib_yyvsp[-3].lval),(grib_yyvsp[-1].lval)); free((grib_yyvsp[-5].str)); } +#line 3567 "y.tab.c" + break; + + case 215: /* string_or_ident: IDENT */ +#line 775 "griby.y" { (grib_yyval.exp) = new_accessor_expression(grib_parser_context,(grib_yyvsp[0].str),0,0); free((grib_yyvsp[0].str)); } -#line 3560 "y.tab.c" +#line 3573 "y.tab.c" break; case 216: /* string_or_ident: SUBSTR '(' STRING ',' INTEGER ',' INTEGER ')' */ -#line 775 "griby.y" +#line 776 "griby.y" { (grib_yyval.exp) = new_sub_string_expression(grib_parser_context,(grib_yyvsp[-5].str),(grib_yyvsp[-3].lval),(grib_yyvsp[-1].lval)); free((grib_yyvsp[-5].str)); } -#line 3566 "y.tab.c" +#line 3579 "y.tab.c" break; case 217: /* string_or_ident: STRING */ -#line 776 "griby.y" +#line 777 "griby.y" { (grib_yyval.exp) = new_string_expression(grib_parser_context,(grib_yyvsp[0].str)); free((grib_yyvsp[0].str)); } -#line 3572 "y.tab.c" +#line 3585 "y.tab.c" break; case 219: /* atom: INTEGER */ -#line 780 "griby.y" +#line 781 "griby.y" { (grib_yyval.exp) = new_long_expression(grib_parser_context,(grib_yyvsp[0].lval)); } -#line 3578 "y.tab.c" +#line 3591 "y.tab.c" break; case 220: /* atom: FLOAT */ -#line 781 "griby.y" +#line 782 "griby.y" { (grib_yyval.exp) = new_double_expression(grib_parser_context,(grib_yyvsp[0].dval)); /* TODO: change to new_float_expression*/} -#line 3584 "y.tab.c" +#line 3597 "y.tab.c" break; case 221: /* atom: NIL */ -#line 783 "griby.y" +#line 784 "griby.y" { (grib_yyval.exp) = NULL; } -#line 3590 "y.tab.c" +#line 3603 "y.tab.c" break; case 222: /* atom: DUMMY */ -#line 784 "griby.y" +#line 785 "griby.y" { (grib_yyval.exp) = new_true_expression(grib_parser_context); } -#line 3596 "y.tab.c" +#line 3609 "y.tab.c" break; case 223: /* atom: '(' expression ')' */ -#line 785 "griby.y" +#line 786 "griby.y" { (grib_yyval.exp) = (grib_yyvsp[-1].exp); } -#line 3602 "y.tab.c" +#line 3615 "y.tab.c" break; case 224: /* atom: '-' atom */ -#line 786 "griby.y" +#line 787 "griby.y" { (grib_yyval.exp) = new_unop_expression(grib_parser_context,&grib_op_neg,&grib_op_neg_d,(grib_yyvsp[0].exp)); } -#line 3608 "y.tab.c" +#line 3621 "y.tab.c" break; case 225: /* atom: IDENT '(' ')' */ -#line 787 "griby.y" +#line 788 "griby.y" { (grib_yyval.exp) = new_func_expression(grib_parser_context,(grib_yyvsp[-2].str),NULL); free((grib_yyvsp[-2].str));} -#line 3614 "y.tab.c" +#line 3627 "y.tab.c" break; case 226: /* atom: IDENT '(' argument_list ')' */ -#line 788 "griby.y" +#line 789 "griby.y" { (grib_yyval.exp) = new_func_expression(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].explist)); free((grib_yyvsp[-3].str));} -#line 3620 "y.tab.c" +#line 3633 "y.tab.c" break; case 227: /* power: atom '^' power */ -#line 792 "griby.y" +#line 793 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_pow,NULL,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3626 "y.tab.c" +#line 3639 "y.tab.c" break; case 229: /* factor: factor '*' power */ -#line 796 "griby.y" +#line 797 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_mul,&grib_op_mul_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3632 "y.tab.c" +#line 3645 "y.tab.c" break; case 230: /* factor: factor '/' power */ -#line 797 "griby.y" +#line 798 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_div,&grib_op_div_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3638 "y.tab.c" +#line 3651 "y.tab.c" break; case 231: /* factor: factor '%' power */ -#line 798 "griby.y" +#line 799 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_modulo,NULL,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3644 "y.tab.c" +#line 3657 "y.tab.c" break; case 232: /* factor: factor BIT power */ -#line 799 "griby.y" +#line 800 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_bit,NULL,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3650 "y.tab.c" +#line 3663 "y.tab.c" break; case 233: /* factor: factor BITOFF power */ -#line 800 "griby.y" +#line 801 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_bitoff,NULL,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3656 "y.tab.c" +#line 3669 "y.tab.c" break; case 235: /* factor: LENGTH '(' IDENT ')' */ -#line 802 "griby.y" +#line 803 "griby.y" { (grib_yyval.exp) = new_length_expression(grib_parser_context,(grib_yyvsp[-1].str)); free((grib_yyvsp[-1].str));} -#line 3662 "y.tab.c" +#line 3675 "y.tab.c" break; case 236: /* factor: IS_IN_LIST '(' IDENT ',' STRING ')' */ -#line 803 "griby.y" +#line 804 "griby.y" { (grib_yyval.exp) = new_is_in_list_expression(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].str)); free((grib_yyvsp[-3].str));free((grib_yyvsp[-1].str));} -#line 3668 "y.tab.c" +#line 3681 "y.tab.c" break; case 237: /* factor: IS_IN_DICT '(' IDENT ',' STRING ')' */ -#line 804 "griby.y" +#line 805 "griby.y" { (grib_yyval.exp) = new_is_in_dict_expression(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].str)); free((grib_yyvsp[-3].str));free((grib_yyvsp[-1].str));} -#line 3674 "y.tab.c" +#line 3687 "y.tab.c" break; case 238: /* factor: IS_INTEGER '(' IDENT ',' INTEGER ')' */ -#line 805 "griby.y" +#line 806 "griby.y" { (grib_yyval.exp) = new_is_integer_expression(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].lval),0); free((grib_yyvsp[-3].str));} -#line 3680 "y.tab.c" +#line 3693 "y.tab.c" break; case 239: /* factor: IS_INTEGER '(' IDENT ',' INTEGER ',' INTEGER ')' */ -#line 806 "griby.y" +#line 807 "griby.y" { (grib_yyval.exp) = new_is_integer_expression(grib_parser_context,(grib_yyvsp[-5].str),(grib_yyvsp[-3].lval),(grib_yyvsp[-1].lval)); free((grib_yyvsp[-5].str));} -#line 3686 "y.tab.c" +#line 3699 "y.tab.c" break; case 240: /* factor: IS_INTEGER '(' IDENT ')' */ -#line 807 "griby.y" +#line 808 "griby.y" { (grib_yyval.exp) = new_is_integer_expression(grib_parser_context,(grib_yyvsp[-1].str),0,0); free((grib_yyvsp[-1].str));} -#line 3692 "y.tab.c" +#line 3705 "y.tab.c" break; case 241: /* term: term '+' factor */ -#line 810 "griby.y" +#line 811 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_add,&grib_op_add_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3698 "y.tab.c" +#line 3711 "y.tab.c" break; case 242: /* term: term '-' factor */ -#line 811 "griby.y" +#line 812 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_sub,&grib_op_sub_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3704 "y.tab.c" +#line 3717 "y.tab.c" break; case 244: /* condition: condition GT term */ -#line 815 "griby.y" +#line 816 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_gt,&grib_op_gt_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3710 "y.tab.c" +#line 3723 "y.tab.c" break; case 245: /* condition: condition EQ term */ -#line 817 "griby.y" +#line 818 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_eq,&grib_op_eq_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3716 "y.tab.c" +#line 3729 "y.tab.c" break; case 246: /* condition: condition LT term */ -#line 818 "griby.y" +#line 819 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_lt,&grib_op_lt_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3722 "y.tab.c" +#line 3735 "y.tab.c" break; case 247: /* condition: condition GE term */ -#line 819 "griby.y" +#line 820 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_ge,&grib_op_ge_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3728 "y.tab.c" +#line 3741 "y.tab.c" break; case 248: /* condition: condition LE term */ -#line 820 "griby.y" +#line 821 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_le,&grib_op_le_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3734 "y.tab.c" +#line 3747 "y.tab.c" break; case 249: /* condition: condition NE term */ -#line 821 "griby.y" +#line 822 "griby.y" { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_ne,&grib_op_ne_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3740 "y.tab.c" +#line 3753 "y.tab.c" break; case 250: /* condition: string_or_ident IS string_or_ident */ -#line 822 "griby.y" - { (grib_yyval.exp) = new_string_compare_expression(grib_parser_context,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3746 "y.tab.c" +#line 823 "griby.y" + { (grib_yyval.exp) = new_string_compare_expression(grib_parser_context,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp),1); } +#line 3759 "y.tab.c" break; - case 251: /* condition: NOT condition */ -#line 827 "griby.y" + case 251: /* condition: string_or_ident ISNOT string_or_ident */ +#line 824 "griby.y" + { (grib_yyval.exp) = new_string_compare_expression(grib_parser_context,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp),0); } +#line 3765 "y.tab.c" + break; + + case 252: /* condition: NOT condition */ +#line 829 "griby.y" { (grib_yyval.exp) = new_unop_expression(grib_parser_context,&grib_op_not,NULL,(grib_yyvsp[0].exp)); } -#line 3752 "y.tab.c" +#line 3771 "y.tab.c" break; - case 253: /* conjunction: conjunction AND condition */ -#line 831 "griby.y" + case 254: /* conjunction: conjunction AND condition */ +#line 833 "griby.y" { (grib_yyval.exp) = new_logical_and_expression(grib_parser_context,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } -#line 3758 "y.tab.c" +#line 3777 "y.tab.c" break; - case 255: /* disjunction: disjunction OR conjunction */ -#line 835 "griby.y" + case 256: /* disjunction: disjunction OR conjunction */ +#line 837 "griby.y" { (grib_yyval.exp) = new_logical_or_expression(grib_parser_context,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp));} -#line 3764 "y.tab.c" +#line 3783 "y.tab.c" break; - case 260: /* rule_entry: IDENT '=' expression ';' */ -#line 849 "griby.y" + case 261: /* rule_entry: IDENT '=' expression ';' */ +#line 851 "griby.y" { (grib_yyval.rule_entry) = grib_new_rule_entry(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].exp)); free((grib_yyvsp[-3].str)); } -#line 3770 "y.tab.c" +#line 3789 "y.tab.c" break; - case 261: /* rule_entry: SKIP ';' */ -#line 850 "griby.y" + case 262: /* rule_entry: SKIP ';' */ +#line 852 "griby.y" { (grib_yyval.rule_entry) = grib_new_rule_entry(grib_parser_context,"skip",0);} -#line 3776 "y.tab.c" +#line 3795 "y.tab.c" break; - case 263: /* rule_entries: rule_entry rule_entries */ -#line 854 "griby.y" + case 264: /* rule_entries: rule_entry rule_entries */ +#line 856 "griby.y" { (grib_yyvsp[-1].rule_entry)->next = (grib_yyvsp[0].rule_entry); (grib_yyval.rule_entry) = (grib_yyvsp[-1].rule_entry); } -#line 3782 "y.tab.c" +#line 3801 "y.tab.c" break; - case 264: /* fact: rule_entry */ -#line 857 "griby.y" + case 265: /* fact: rule_entry */ +#line 859 "griby.y" { (grib_yyval.rules) = grib_new_rule(grib_parser_context,NULL,(grib_yyvsp[0].rule_entry)); } -#line 3788 "y.tab.c" +#line 3807 "y.tab.c" break; - case 265: /* conditional_rule: IF '(' expression ')' '{' rule_entries '}' */ -#line 861 "griby.y" + case 266: /* conditional_rule: IF '(' expression ')' '{' rule_entries '}' */ +#line 863 "griby.y" { (grib_yyval.rules) = grib_new_rule(grib_parser_context,(grib_yyvsp[-4].exp),(grib_yyvsp[-1].rule_entry)); } -#line 3794 "y.tab.c" +#line 3813 "y.tab.c" break; - case 267: /* rules: rule rules */ -#line 865 "griby.y" + case 268: /* rules: rule rules */ +#line 867 "griby.y" { (grib_yyvsp[-1].rules)->next = (grib_yyvsp[0].rules); (grib_yyval.rules) = (grib_yyvsp[-1].rules); } -#line 3800 "y.tab.c" +#line 3819 "y.tab.c" break; -#line 3804 "y.tab.c" +#line 3823 "y.tab.c" default: break; } @@ -3993,7 +4012,7 @@ grib_yyreturnlab: return grib_yyresult; } -#line 869 "griby.y" +#line 871 "griby.y" static grib_concept_value *_reverse_concept(grib_concept_value *r,grib_concept_value *s) diff --git a/src/grib_yacc.h b/src/grib_yacc.h index e99fb7050..d4cadf2f3 100644 --- a/src/grib_yacc.h +++ b/src/grib_yacc.h @@ -174,10 +174,11 @@ extern int grib_yydebug; OR = 375, /* OR */ NOT = 376, /* NOT */ IS = 377, /* IS */ - IDENT = 378, /* IDENT */ - STRING = 379, /* STRING */ - INTEGER = 380, /* INTEGER */ - FLOAT = 381 /* FLOAT */ + ISNOT = 378, /* ISNOT */ + IDENT = 379, /* IDENT */ + STRING = 380, /* STRING */ + INTEGER = 381, /* INTEGER */ + FLOAT = 382 /* FLOAT */ }; typedef enum grib_yytokentype grib_yytoken_kind_t; #endif @@ -306,10 +307,11 @@ extern int grib_yydebug; #define OR 375 #define NOT 376 #define IS 377 -#define IDENT 378 -#define STRING 379 -#define INTEGER 380 -#define FLOAT 381 +#define ISNOT 378 +#define IDENT 379 +#define STRING 380 +#define INTEGER 381 +#define FLOAT 382 /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED @@ -333,7 +335,7 @@ union YYSTYPE grib_rule *rules; grib_rule_entry *rule_entry; -#line 337 "y.tab.h" +#line 339 "y.tab.h" }; typedef union YYSTYPE YYSTYPE; diff --git a/src/gribl.l b/src/gribl.l index 7f95db31e..d2cf07fde 100644 --- a/src/gribl.l +++ b/src/gribl.l @@ -71,23 +71,24 @@ IDENT {IDENT1}|{IDENT2}|{IDENT3}|{IDENT4}|{IDENT5} %% -"==" return EQ ; -">=" return GE ; -">" return GT ; -"<=" return LE ; -"<" return LT ; -"!=" return NE ; -"<>" return NE ; -"bit" return BIT ; -"notbit" return BITOFF ; +"==" return EQ ; +">=" return GE ; +">" return GT ; +"<=" return LE ; +"<" return LT ; +"!=" return NE ; +"<>" return NE ; +"bit" return BIT ; +"notbit" return BITOFF ; "is" return IS ; -"not" return NOT ; -"!" return NOT ; -"and" return AND ; -"&&" return AND ; -"or" return OR ; -"||" return OR ; +"isnot" return ISNOT ; +"not" return NOT ; +"!" return NOT ; +"and" return AND ; +"&&" return AND ; +"or" return OR ; +"||" return OR ; "null" return NIL ; "~" return DUMMY ; @@ -97,7 +98,7 @@ IDENT {IDENT1}|{IDENT2}|{IDENT3}|{IDENT4}|{IDENT5} "length" return LENGTH ; "lowercase" return LOWERCASE; "if" return IF ; -"_if" return IF_TRANSIENT ; +"_if" return IF_TRANSIENT ; "else" return ELSE ; "unsigned" return UNSIGNED ; "ascii" return ASCII ; diff --git a/src/griby.y b/src/griby.y index 4d1b13911..213843240 100644 --- a/src/griby.y +++ b/src/griby.y @@ -191,6 +191,7 @@ static grib_hash_array_value *_reverse_hash_array(grib_hash_array_value *r,grib_ %token NOT %token IS +%token ISNOT %token IDENT %token STRING @@ -819,7 +820,8 @@ condition: condition GT term { $$ = new_binop_expression(grib_parser_context, | condition GE term { $$ = new_binop_expression(grib_parser_context,&grib_op_ge,&grib_op_ge_d,$1,$3); } | condition LE term { $$ = new_binop_expression(grib_parser_context,&grib_op_le,&grib_op_le_d,$1,$3); } | condition NE term { $$ = new_binop_expression(grib_parser_context,&grib_op_ne,&grib_op_ne_d,$1,$3); } - | string_or_ident IS string_or_ident { $$ = new_string_compare_expression(grib_parser_context,$1,$3); } + | string_or_ident IS string_or_ident { $$ = new_string_compare_expression(grib_parser_context,$1,$3,1); } + | string_or_ident ISNOT string_or_ident { $$ = new_string_compare_expression(grib_parser_context,$1,$3,0); } /* | condition IN term { $$ = new_binop_expression(grib_parser_context,grib_op_pow,$1,$3); } | condition MATCH term { $$ = new_binop_expression(grib_parser_context,grib_op_pow,$1,$3); } diff --git a/src/makeyacc b/src/makeyacc index b53ebe172..840fa41a8 100755 --- a/src/makeyacc +++ b/src/makeyacc @@ -2,6 +2,8 @@ set -xe export LEX=flex export LEX_OUT=gribl.cc + + $LEX -o gribl.cc gribl.l sed 's/yy/grib_yy/g' < $LEX_OUT | sed 's/static void grib_yyunput/void grib_yyunput/' > grib_lex1.cc sed 's/fgetc/getc/g' < grib_lex1.cc > grib_lex.cc @@ -18,11 +20,16 @@ sed 's/yy/grib_yy/g' < y.tab.h > grib_yacc.h rm -f y.tab.c y.tab.h set +x + +$LEX --version +yacc --version + echo "---------------------------------------------" # We use flex and bison echo "Did you use the latest YACC and FLEX modules?" echo " module avail bison" echo " module avail flex" + echo echo ALL OK diff --git a/tests/grib_filter.sh b/tests/grib_filter.sh index 2799c45de..5ca6cce8f 100755 --- a/tests/grib_filter.sh +++ b/tests/grib_filter.sh @@ -385,7 +385,11 @@ grep "MISSING" $tempOut cat >$tempFilt < $tempOut 2>&1 cat $tempOut grep "rubbish must fail" $tempOut From 8b4b26074be25b8be5d54ff3d56f6c0a0b715229 Mon Sep 17 00:00:00 2001 From: shahramn Date: Fri, 5 Jul 2024 11:11:54 +0100 Subject: [PATCH 09/17] AppVeyor: Disable netcdf --- .appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 096e0e4c8..f3d062de1 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -51,8 +51,8 @@ install: m2-perl ^ m2w64-ntldd-git - # get deps - - cmd: conda install -c conda-forge cmake libnetcdf + # get deps. Drop libnetcdf + - cmd: conda install -c conda-forge cmake #---------------------------------# # build configuration # @@ -71,7 +71,7 @@ build_script: -D CMAKE_INSTALL_PREFIX=%INSTALL_DIR% ^ -D CMAKE_BUILD_TYPE=Release ^ -D ENABLE_FORTRAN=0 ^ - -D ENABLE_NETCDF=1 ^ + -D ENABLE_NETCDF=0 ^ -D ENABLE_JPG=1 ^ -D ENABLE_AEC=0 ^ -D IEEE_LE=1 ^ From d802d7fe90d361222197753765de5c8bcbe6dea9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Jul 2024 13:35:11 +0000 Subject: [PATCH 10/17] ECC-1861: GRIB2: emission parameters with additional srcs/sinks --- .../grib2/localConcepts/ecmf/cfVarName.def | 36 +++++++++++++++++++ definitions/grib2/localConcepts/ecmf/name.def | 36 +++++++++++++++++++ .../grib2/localConcepts/ecmf/paramId.def | 36 +++++++++++++++++++ .../grib2/localConcepts/ecmf/shortName.def | 36 +++++++++++++++++++ .../grib2/localConcepts/ecmf/units.def | 36 +++++++++++++++++++ 5 files changed, 180 insertions(+) diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index 957489177..f1a26b807 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -14181,6 +14181,42 @@ parameterCategory = 20 ; parameterNumber = 192 ; } +#Emission mass flux from commercial buildings heating +'emi_mflx_cbh' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 197 ; + } +#Emission mass flux from residential heating +'emi_mflx_rh' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 198 ; + } +#Emission mass flux from oil refineries and transformation industry +'emi_mflx_oti' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 199 ; + } +#Emission mass flux from gas production +'emi_mflx_gp' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 200 ; + } #Stream function gradient 'strfgrd' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index 2f7444e2a..46f80dc2c 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -14181,6 +14181,42 @@ parameterCategory = 20 ; parameterNumber = 192 ; } +#Emission mass flux from commercial buildings heating +'Emission mass flux from commercial buildings heating' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 197 ; + } +#Emission mass flux from residential heating +'Emission mass flux from residential heating' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 198 ; + } +#Emission mass flux from oil refineries and transformation industry +'Emission mass flux from oil refineries and transformation industry' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 199 ; + } +#Emission mass flux from gas production +'Emission mass flux from gas production' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 200 ; + } #Stream function gradient 'Stream function gradient' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index 109f9f001..10245c6bb 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -14181,6 +14181,42 @@ parameterCategory = 20 ; parameterNumber = 192 ; } +#Emission mass flux from commercial buildings heating +'463000' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 197 ; + } +#Emission mass flux from residential heating +'464000' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 198 ; + } +#Emission mass flux from oil refineries and transformation industry +'465000' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 199 ; + } +#Emission mass flux from gas production +'466000' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 200 ; + } #Stream function gradient '129001' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index 0c36a8dd0..88148b199 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -14181,6 +14181,42 @@ parameterCategory = 20 ; parameterNumber = 192 ; } +#Emission mass flux from commercial buildings heating +'emi_mflx_cbh' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 197 ; + } +#Emission mass flux from residential heating +'emi_mflx_rh' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 198 ; + } +#Emission mass flux from oil refineries and transformation industry +'emi_mflx_oti' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 199 ; + } +#Emission mass flux from gas production +'emi_mflx_gp' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 200 ; + } #Stream function gradient 'strfgrd' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 8a166eaa4..720c17198 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -14181,6 +14181,42 @@ parameterCategory = 20 ; parameterNumber = 192 ; } +#Emission mass flux from commercial buildings heating +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 197 ; + } +#Emission mass flux from residential heating +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 198 ; + } +#Emission mass flux from oil refineries and transformation industry +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 199 ; + } +#Emission mass flux from gas production +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 77 ; + is_chemical_srcsink = 1 ; + sourceSinkChemicalPhysicalProcess = 200 ; + } #Stream function gradient 'm**2 s**-1' = { discipline = 192 ; From 0ac670b036212af3fce5900a563a5dbdd4f2741c Mon Sep 17 00:00:00 2001 From: shahramn Date: Sat, 6 Jul 2024 14:19:44 +0100 Subject: [PATCH 11/17] GRIB2 tables cleanup --- definitions/grib2/tables/0.0.table | 4 ---- definitions/grib2/tables/0/4.12.table | 1 - definitions/grib2/tables/0/4.13.table | 1 - definitions/grib2/tables/0/4.14.table | 1 - definitions/grib2/tables/0/4.15.table | 1 - definitions/grib2/tables/0/4.151.table | 1 - definitions/grib2/tables/0/4.201.table | 1 - definitions/grib2/tables/0/4.202.table | 1 - definitions/grib2/tables/0/4.204.table | 1 - definitions/grib2/tables/0/4.205.table | 1 - definitions/grib2/tables/0/4.206.table | 1 - definitions/grib2/tables/0/4.207.table | 1 - definitions/grib2/tables/0/4.208.table | 1 - definitions/grib2/tables/0/4.209.table | 1 - definitions/grib2/tables/0/4.210.table | 1 - definitions/grib2/tables/0/4.211.table | 1 - definitions/grib2/tables/0/4.212.table | 1 - definitions/grib2/tables/0/4.213.table | 1 - definitions/grib2/tables/0/4.217.table | 1 - definitions/grib2/tables/0/4.220.table | 1 - definitions/grib2/tables/0/4.221.table | 1 - definitions/grib2/tables/0/4.7.table | 1 - definitions/grib2/tables/0/4.8.table | 1 - definitions/grib2/tables/0/4.9.table | 1 - definitions/grib2/tables/0/4.91.table | 1 - definitions/grib2/tables/0/5.6.table | 1 - definitions/grib2/tables/1/4.12.table | 1 - definitions/grib2/tables/1/4.13.table | 1 - definitions/grib2/tables/1/4.14.table | 1 - definitions/grib2/tables/1/4.15.table | 1 - definitions/grib2/tables/1/4.151.table | 1 - definitions/grib2/tables/1/4.201.table | 1 - definitions/grib2/tables/1/4.202.table | 1 - definitions/grib2/tables/1/4.204.table | 1 - definitions/grib2/tables/1/4.205.table | 1 - definitions/grib2/tables/1/4.206.table | 1 - definitions/grib2/tables/1/4.207.table | 1 - definitions/grib2/tables/1/4.208.table | 1 - definitions/grib2/tables/1/4.209.table | 1 - definitions/grib2/tables/1/4.210.table | 1 - definitions/grib2/tables/1/4.211.table | 1 - definitions/grib2/tables/1/4.212.table | 1 - definitions/grib2/tables/1/4.213.table | 1 - definitions/grib2/tables/1/4.217.table | 1 - definitions/grib2/tables/1/4.220.table | 1 - definitions/grib2/tables/1/4.221.table | 1 - definitions/grib2/tables/1/4.7.table | 1 - definitions/grib2/tables/1/4.8.table | 1 - definitions/grib2/tables/1/4.9.table | 1 - definitions/grib2/tables/1/5.6.table | 1 - definitions/grib2/tables/10/0.0.table | 3 --- definitions/grib2/tables/10/1.2.table | 2 -- definitions/grib2/tables/10/1.3.table | 2 -- definitions/grib2/tables/10/1.4.table | 2 -- definitions/grib2/tables/10/3.0.table | 2 -- definitions/grib2/tables/10/3.1.table | 15 -------------- definitions/grib2/tables/10/3.10.table | 1 - definitions/grib2/tables/10/3.11.table | 1 - definitions/grib2/tables/10/3.15.table | 5 ----- definitions/grib2/tables/10/3.2.table | 2 -- definitions/grib2/tables/10/3.20.table | 2 -- definitions/grib2/tables/10/3.21.table | 3 --- definitions/grib2/tables/10/3.3.table | 2 -- definitions/grib2/tables/10/3.4.table | 1 - definitions/grib2/tables/10/3.7.table | 1 - definitions/grib2/tables/10/3.8.table | 2 -- definitions/grib2/tables/10/3.9.table | 1 - definitions/grib2/tables/10/4.0.table | 9 --------- definitions/grib2/tables/10/4.1.0.table | 2 -- definitions/grib2/tables/10/4.1.1.table | 2 -- definitions/grib2/tables/10/4.1.10.table | 2 -- definitions/grib2/tables/10/4.1.2.table | 2 -- definitions/grib2/tables/10/4.1.3.table | 2 -- definitions/grib2/tables/10/4.10.table | 2 -- definitions/grib2/tables/10/4.11.table | 2 -- definitions/grib2/tables/10/4.12.table | 2 -- definitions/grib2/tables/10/4.13.table | 2 -- definitions/grib2/tables/10/4.14.table | 2 -- definitions/grib2/tables/10/4.15.table | 2 -- definitions/grib2/tables/10/4.151.table | 1 - definitions/grib2/tables/10/4.2.0.0.table | 2 -- definitions/grib2/tables/10/4.2.0.1.table | 3 --- definitions/grib2/tables/10/4.2.0.13.table | 2 -- definitions/grib2/tables/10/4.2.0.14.table | 2 -- definitions/grib2/tables/10/4.2.0.15.table | 2 -- definitions/grib2/tables/10/4.2.0.16.table | 2 -- definitions/grib2/tables/10/4.2.0.18.table | 2 -- definitions/grib2/tables/10/4.2.0.19.table | 2 -- definitions/grib2/tables/10/4.2.0.190.table | 2 -- definitions/grib2/tables/10/4.2.0.191.table | 2 -- definitions/grib2/tables/10/4.2.0.2.table | 2 -- definitions/grib2/tables/10/4.2.0.20.table | 4 ---- definitions/grib2/tables/10/4.2.0.3.table | 2 -- definitions/grib2/tables/10/4.2.0.4.table | 3 --- definitions/grib2/tables/10/4.2.0.5.table | 2 -- definitions/grib2/tables/10/4.2.0.6.table | 2 -- definitions/grib2/tables/10/4.2.0.7.table | 2 -- definitions/grib2/tables/10/4.2.1.0.table | 2 -- definitions/grib2/tables/10/4.2.1.1.table | 2 -- definitions/grib2/tables/10/4.2.10.0.table | 2 -- definitions/grib2/tables/10/4.2.10.1.table | 2 -- definitions/grib2/tables/10/4.2.10.191.table | 2 -- definitions/grib2/tables/10/4.2.10.2.table | 2 -- definitions/grib2/tables/10/4.2.10.3.table | 2 -- definitions/grib2/tables/10/4.2.10.4.table | 3 --- definitions/grib2/tables/10/4.2.2.0.table | 2 -- definitions/grib2/tables/10/4.2.2.3.table | 2 -- definitions/grib2/tables/10/4.2.2.4.table | 2 -- definitions/grib2/tables/10/4.2.3.0.table | 2 -- definitions/grib2/tables/10/4.2.3.1.table | 2 -- definitions/grib2/tables/10/4.201.table | 2 -- definitions/grib2/tables/10/4.202.table | 2 -- definitions/grib2/tables/10/4.203.table | 2 -- definitions/grib2/tables/10/4.204.table | 2 -- definitions/grib2/tables/10/4.205.table | 2 -- definitions/grib2/tables/10/4.206.table | 2 -- definitions/grib2/tables/10/4.207.table | 2 -- definitions/grib2/tables/10/4.208.table | 2 -- definitions/grib2/tables/10/4.209.table | 2 -- definitions/grib2/tables/10/4.210.table | 2 -- definitions/grib2/tables/10/4.211.table | 2 -- definitions/grib2/tables/10/4.212.table | 2 -- definitions/grib2/tables/10/4.213.table | 2 -- definitions/grib2/tables/10/4.215.table | 4 ---- definitions/grib2/tables/10/4.216.table | 1 - definitions/grib2/tables/10/4.217.table | 2 -- definitions/grib2/tables/10/4.218.table | 3 --- definitions/grib2/tables/10/4.219.table | 2 -- definitions/grib2/tables/10/4.220.table | 2 -- definitions/grib2/tables/10/4.221.table | 2 -- definitions/grib2/tables/10/4.222.table | 2 -- definitions/grib2/tables/10/4.224.table | 4 ---- definitions/grib2/tables/10/4.227.table | 2 -- definitions/grib2/tables/10/4.3.table | 2 -- definitions/grib2/tables/10/4.4.table | 3 --- definitions/grib2/tables/10/4.5.table | 7 ------- definitions/grib2/tables/10/4.6.table | 2 -- definitions/grib2/tables/10/4.7.table | 2 -- definitions/grib2/tables/10/4.8.table | 2 -- definitions/grib2/tables/10/4.9.table | 2 -- definitions/grib2/tables/10/4.91.table | 2 -- definitions/grib2/tables/10/5.0.table | 5 ----- definitions/grib2/tables/10/5.1.table | 2 -- definitions/grib2/tables/10/5.2.table | 3 --- definitions/grib2/tables/10/5.3.table | 2 -- definitions/grib2/tables/10/5.4.table | 2 -- definitions/grib2/tables/10/5.40.table | 1 - definitions/grib2/tables/10/5.5.table | 2 -- definitions/grib2/tables/10/5.6.table | 2 -- definitions/grib2/tables/10/5.7.table | 1 - definitions/grib2/tables/11/0.0.table | 3 --- definitions/grib2/tables/11/1.2.table | 2 -- definitions/grib2/tables/11/1.3.table | 2 -- definitions/grib2/tables/11/1.4.table | 2 -- definitions/grib2/tables/11/3.0.table | 2 -- definitions/grib2/tables/11/3.1.table | 15 -------------- definitions/grib2/tables/11/3.10.table | 1 - definitions/grib2/tables/11/3.11.table | 1 - definitions/grib2/tables/11/3.15.table | 5 ----- definitions/grib2/tables/11/3.2.table | 2 -- definitions/grib2/tables/11/3.20.table | 2 -- definitions/grib2/tables/11/3.21.table | 3 --- definitions/grib2/tables/11/3.3.table | 2 -- definitions/grib2/tables/11/3.4.table | 1 - definitions/grib2/tables/11/3.7.table | 1 - definitions/grib2/tables/11/3.8.table | 2 -- definitions/grib2/tables/11/3.9.table | 1 - definitions/grib2/tables/11/4.0.table | 9 --------- definitions/grib2/tables/11/4.1.0.table | 2 -- definitions/grib2/tables/11/4.1.1.table | 2 -- definitions/grib2/tables/11/4.1.10.table | 2 -- definitions/grib2/tables/11/4.1.2.table | 2 -- definitions/grib2/tables/11/4.1.3.table | 2 -- definitions/grib2/tables/11/4.10.table | 2 -- definitions/grib2/tables/11/4.11.table | 2 -- definitions/grib2/tables/11/4.12.table | 2 -- definitions/grib2/tables/11/4.13.table | 2 -- definitions/grib2/tables/11/4.14.table | 2 -- definitions/grib2/tables/11/4.15.table | 2 -- definitions/grib2/tables/11/4.2.0.0.table | 2 -- definitions/grib2/tables/11/4.2.0.1.table | 3 --- definitions/grib2/tables/11/4.2.0.13.table | 2 -- definitions/grib2/tables/11/4.2.0.14.table | 2 -- definitions/grib2/tables/11/4.2.0.15.table | 2 -- definitions/grib2/tables/11/4.2.0.16.table | 2 -- definitions/grib2/tables/11/4.2.0.18.table | 2 -- definitions/grib2/tables/11/4.2.0.19.table | 2 -- definitions/grib2/tables/11/4.2.0.190.table | 2 -- definitions/grib2/tables/11/4.2.0.191.table | 2 -- definitions/grib2/tables/11/4.2.0.2.table | 2 -- definitions/grib2/tables/11/4.2.0.20.table | 4 ---- definitions/grib2/tables/11/4.2.0.3.table | 2 -- definitions/grib2/tables/11/4.2.0.4.table | 3 --- definitions/grib2/tables/11/4.2.0.5.table | 2 -- definitions/grib2/tables/11/4.2.0.6.table | 2 -- definitions/grib2/tables/11/4.2.0.7.table | 2 -- definitions/grib2/tables/11/4.2.1.0.table | 2 -- definitions/grib2/tables/11/4.2.1.1.table | 2 -- definitions/grib2/tables/11/4.2.10.0.table | 2 -- definitions/grib2/tables/11/4.2.10.1.table | 2 -- definitions/grib2/tables/11/4.2.10.191.table | 2 -- definitions/grib2/tables/11/4.2.10.2.table | 2 -- definitions/grib2/tables/11/4.2.10.3.table | 2 -- definitions/grib2/tables/11/4.2.10.4.table | 3 --- definitions/grib2/tables/11/4.2.2.0.table | 2 -- definitions/grib2/tables/11/4.2.2.3.table | 2 -- definitions/grib2/tables/11/4.2.2.4.table | 2 -- definitions/grib2/tables/11/4.2.3.0.table | 2 -- definitions/grib2/tables/11/4.2.3.1.table | 2 -- definitions/grib2/tables/11/4.201.table | 2 -- definitions/grib2/tables/11/4.202.table | 2 -- definitions/grib2/tables/11/4.203.table | 2 -- definitions/grib2/tables/11/4.204.table | 2 -- definitions/grib2/tables/11/4.205.table | 2 -- definitions/grib2/tables/11/4.206.table | 2 -- definitions/grib2/tables/11/4.207.table | 2 -- definitions/grib2/tables/11/4.208.table | 2 -- definitions/grib2/tables/11/4.209.table | 2 -- definitions/grib2/tables/11/4.210.table | 2 -- definitions/grib2/tables/11/4.211.table | 2 -- definitions/grib2/tables/11/4.212.table | 2 -- definitions/grib2/tables/11/4.213.table | 2 -- definitions/grib2/tables/11/4.215.table | 4 ---- definitions/grib2/tables/11/4.216.table | 1 - definitions/grib2/tables/11/4.217.table | 2 -- definitions/grib2/tables/11/4.218.table | 3 --- definitions/grib2/tables/11/4.219.table | 2 -- definitions/grib2/tables/11/4.220.table | 2 -- definitions/grib2/tables/11/4.221.table | 2 -- definitions/grib2/tables/11/4.222.table | 2 -- definitions/grib2/tables/11/4.224.table | 4 ---- definitions/grib2/tables/11/4.227.table | 2 -- definitions/grib2/tables/11/4.3.table | 2 -- definitions/grib2/tables/11/4.4.table | 3 --- definitions/grib2/tables/11/4.5.table | 7 ------- definitions/grib2/tables/11/4.6.table | 2 -- definitions/grib2/tables/11/4.7.table | 2 -- definitions/grib2/tables/11/4.8.table | 2 -- definitions/grib2/tables/11/4.9.table | 2 -- definitions/grib2/tables/11/4.91.table | 2 -- definitions/grib2/tables/11/5.0.table | 5 ----- definitions/grib2/tables/11/5.1.table | 2 -- definitions/grib2/tables/11/5.2.table | 3 --- definitions/grib2/tables/11/5.3.table | 2 -- definitions/grib2/tables/11/5.4.table | 2 -- definitions/grib2/tables/11/5.40.table | 1 - definitions/grib2/tables/11/5.5.table | 2 -- definitions/grib2/tables/11/5.6.table | 2 -- definitions/grib2/tables/11/5.7.table | 1 - definitions/grib2/tables/12/0.0.table | 3 --- definitions/grib2/tables/12/1.2.table | 2 -- definitions/grib2/tables/12/1.3.table | 2 -- definitions/grib2/tables/12/1.4.table | 2 -- definitions/grib2/tables/12/1.5.table | 2 -- definitions/grib2/tables/12/1.6.table | 2 -- definitions/grib2/tables/12/3.0.table | 2 -- definitions/grib2/tables/12/3.1.table | 15 -------------- definitions/grib2/tables/12/3.10.table | 1 - definitions/grib2/tables/12/3.11.table | 1 - definitions/grib2/tables/12/3.15.table | 5 ----- definitions/grib2/tables/12/3.2.table | 2 -- definitions/grib2/tables/12/3.20.table | 2 -- definitions/grib2/tables/12/3.21.table | 3 --- definitions/grib2/tables/12/3.3.table | 2 -- definitions/grib2/tables/12/3.4.table | 1 - definitions/grib2/tables/12/3.7.table | 1 - definitions/grib2/tables/12/3.8.table | 2 -- definitions/grib2/tables/12/3.9.table | 1 - definitions/grib2/tables/12/4.0.table | 10 ---------- definitions/grib2/tables/12/4.1.0.table | 2 -- definitions/grib2/tables/12/4.1.1.table | 2 -- definitions/grib2/tables/12/4.1.10.table | 2 -- definitions/grib2/tables/12/4.1.2.table | 2 -- definitions/grib2/tables/12/4.1.3.table | 2 -- definitions/grib2/tables/12/4.10.table | 2 -- definitions/grib2/tables/12/4.11.table | 2 -- definitions/grib2/tables/12/4.12.table | 2 -- definitions/grib2/tables/12/4.13.table | 2 -- definitions/grib2/tables/12/4.14.table | 2 -- definitions/grib2/tables/12/4.15.table | 2 -- definitions/grib2/tables/12/4.2.0.0.table | 2 -- definitions/grib2/tables/12/4.2.0.1.table | 3 --- definitions/grib2/tables/12/4.2.0.13.table | 2 -- definitions/grib2/tables/12/4.2.0.14.table | 2 -- definitions/grib2/tables/12/4.2.0.15.table | 2 -- definitions/grib2/tables/12/4.2.0.16.table | 2 -- definitions/grib2/tables/12/4.2.0.18.table | 2 -- definitions/grib2/tables/12/4.2.0.19.table | 2 -- definitions/grib2/tables/12/4.2.0.190.table | 2 -- definitions/grib2/tables/12/4.2.0.191.table | 2 -- definitions/grib2/tables/12/4.2.0.2.table | 2 -- definitions/grib2/tables/12/4.2.0.20.table | 4 ---- definitions/grib2/tables/12/4.2.0.3.table | 2 -- definitions/grib2/tables/12/4.2.0.4.table | 3 --- definitions/grib2/tables/12/4.2.0.5.table | 2 -- definitions/grib2/tables/12/4.2.0.6.table | 2 -- definitions/grib2/tables/12/4.2.0.7.table | 2 -- definitions/grib2/tables/12/4.2.1.0.table | 2 -- definitions/grib2/tables/12/4.2.1.1.table | 2 -- definitions/grib2/tables/12/4.2.10.0.table | 2 -- definitions/grib2/tables/12/4.2.10.1.table | 2 -- definitions/grib2/tables/12/4.2.10.191.table | 2 -- definitions/grib2/tables/12/4.2.10.2.table | 2 -- definitions/grib2/tables/12/4.2.10.3.table | 2 -- definitions/grib2/tables/12/4.2.10.4.table | 3 --- definitions/grib2/tables/12/4.2.2.0.table | 2 -- definitions/grib2/tables/12/4.2.2.3.table | 2 -- definitions/grib2/tables/12/4.2.2.4.table | 2 -- definitions/grib2/tables/12/4.2.3.0.table | 2 -- definitions/grib2/tables/12/4.2.3.1.table | 2 -- definitions/grib2/tables/12/4.201.table | 2 -- definitions/grib2/tables/12/4.202.table | 2 -- definitions/grib2/tables/12/4.203.table | 2 -- definitions/grib2/tables/12/4.204.table | 2 -- definitions/grib2/tables/12/4.205.table | 2 -- definitions/grib2/tables/12/4.206.table | 2 -- definitions/grib2/tables/12/4.207.table | 2 -- definitions/grib2/tables/12/4.208.table | 2 -- definitions/grib2/tables/12/4.209.table | 2 -- definitions/grib2/tables/12/4.210.table | 2 -- definitions/grib2/tables/12/4.211.table | 2 -- definitions/grib2/tables/12/4.212.table | 2 -- definitions/grib2/tables/12/4.213.table | 2 -- definitions/grib2/tables/12/4.215.table | 4 ---- definitions/grib2/tables/12/4.216.table | 1 - definitions/grib2/tables/12/4.217.table | 2 -- definitions/grib2/tables/12/4.218.table | 3 --- definitions/grib2/tables/12/4.219.table | 2 -- definitions/grib2/tables/12/4.220.table | 2 -- definitions/grib2/tables/12/4.221.table | 2 -- definitions/grib2/tables/12/4.222.table | 2 -- definitions/grib2/tables/12/4.224.table | 4 ---- definitions/grib2/tables/12/4.227.table | 2 -- definitions/grib2/tables/12/4.3.table | 2 -- definitions/grib2/tables/12/4.4.table | 3 --- definitions/grib2/tables/12/4.5.table | 7 ------- definitions/grib2/tables/12/4.6.table | 2 -- definitions/grib2/tables/12/4.7.table | 2 -- definitions/grib2/tables/12/4.8.table | 2 -- definitions/grib2/tables/12/4.9.table | 2 -- definitions/grib2/tables/12/4.91.table | 2 -- definitions/grib2/tables/12/5.0.table | 5 ----- definitions/grib2/tables/12/5.1.table | 2 -- definitions/grib2/tables/12/5.2.table | 3 --- definitions/grib2/tables/12/5.3.table | 2 -- definitions/grib2/tables/12/5.4.table | 2 -- definitions/grib2/tables/12/5.40.table | 1 - definitions/grib2/tables/12/5.5.table | 2 -- definitions/grib2/tables/12/5.6.table | 2 -- definitions/grib2/tables/12/5.7.table | 1 - definitions/grib2/tables/13/0.0.table | 3 --- definitions/grib2/tables/13/1.2.table | 2 -- definitions/grib2/tables/13/1.3.table | 2 -- definitions/grib2/tables/13/1.4.table | 2 -- definitions/grib2/tables/13/1.5.table | 2 -- definitions/grib2/tables/13/1.6.table | 2 -- definitions/grib2/tables/13/3.0.table | 2 -- definitions/grib2/tables/13/3.1.table | 15 -------------- definitions/grib2/tables/13/3.10.table | 1 - definitions/grib2/tables/13/3.11.table | 1 - definitions/grib2/tables/13/3.15.table | 5 ----- definitions/grib2/tables/13/3.2.table | 2 -- definitions/grib2/tables/13/3.20.table | 2 -- definitions/grib2/tables/13/3.21.table | 3 --- definitions/grib2/tables/13/3.3.table | 2 -- definitions/grib2/tables/13/3.4.table | 1 - definitions/grib2/tables/13/3.7.table | 1 - definitions/grib2/tables/13/3.8.table | 2 -- definitions/grib2/tables/13/3.9.table | 1 - definitions/grib2/tables/13/4.0.table | 11 ---------- definitions/grib2/tables/13/4.1.0.table | 2 -- definitions/grib2/tables/13/4.1.1.table | 2 -- definitions/grib2/tables/13/4.1.10.table | 2 -- definitions/grib2/tables/13/4.1.2.table | 2 -- definitions/grib2/tables/13/4.1.3.table | 2 -- definitions/grib2/tables/13/4.10.table | 2 -- definitions/grib2/tables/13/4.11.table | 2 -- definitions/grib2/tables/13/4.12.table | 2 -- definitions/grib2/tables/13/4.13.table | 2 -- definitions/grib2/tables/13/4.14.table | 2 -- definitions/grib2/tables/13/4.15.table | 2 -- definitions/grib2/tables/13/4.2.0.0.table | 2 -- definitions/grib2/tables/13/4.2.0.1.table | 3 --- definitions/grib2/tables/13/4.2.0.13.table | 2 -- definitions/grib2/tables/13/4.2.0.14.table | 2 -- definitions/grib2/tables/13/4.2.0.15.table | 2 -- definitions/grib2/tables/13/4.2.0.16.table | 2 -- definitions/grib2/tables/13/4.2.0.18.table | 2 -- definitions/grib2/tables/13/4.2.0.19.table | 2 -- definitions/grib2/tables/13/4.2.0.190.table | 2 -- definitions/grib2/tables/13/4.2.0.191.table | 2 -- definitions/grib2/tables/13/4.2.0.2.table | 2 -- definitions/grib2/tables/13/4.2.0.20.table | 4 ---- definitions/grib2/tables/13/4.2.0.3.table | 2 -- definitions/grib2/tables/13/4.2.0.4.table | 3 --- definitions/grib2/tables/13/4.2.0.5.table | 2 -- definitions/grib2/tables/13/4.2.0.6.table | 2 -- definitions/grib2/tables/13/4.2.0.7.table | 2 -- definitions/grib2/tables/13/4.2.1.0.table | 2 -- definitions/grib2/tables/13/4.2.1.1.table | 2 -- definitions/grib2/tables/13/4.2.10.0.table | 2 -- definitions/grib2/tables/13/4.2.10.1.table | 2 -- definitions/grib2/tables/13/4.2.10.191.table | 2 -- definitions/grib2/tables/13/4.2.10.2.table | 2 -- definitions/grib2/tables/13/4.2.10.3.table | 2 -- definitions/grib2/tables/13/4.2.10.4.table | 3 --- definitions/grib2/tables/13/4.2.2.0.table | 2 -- definitions/grib2/tables/13/4.2.2.3.table | 2 -- definitions/grib2/tables/13/4.2.2.4.table | 2 -- definitions/grib2/tables/13/4.2.3.0.table | 2 -- definitions/grib2/tables/13/4.2.3.1.table | 2 -- definitions/grib2/tables/13/4.201.table | 2 -- definitions/grib2/tables/13/4.202.table | 2 -- definitions/grib2/tables/13/4.203.table | 2 -- definitions/grib2/tables/13/4.204.table | 2 -- definitions/grib2/tables/13/4.205.table | 2 -- definitions/grib2/tables/13/4.206.table | 2 -- definitions/grib2/tables/13/4.207.table | 2 -- definitions/grib2/tables/13/4.208.table | 2 -- definitions/grib2/tables/13/4.209.table | 2 -- definitions/grib2/tables/13/4.210.table | 2 -- definitions/grib2/tables/13/4.211.table | 2 -- definitions/grib2/tables/13/4.212.table | 2 -- definitions/grib2/tables/13/4.213.table | 2 -- definitions/grib2/tables/13/4.215.table | 4 ---- definitions/grib2/tables/13/4.216.table | 1 - definitions/grib2/tables/13/4.217.table | 2 -- definitions/grib2/tables/13/4.218.table | 3 --- definitions/grib2/tables/13/4.219.table | 2 -- definitions/grib2/tables/13/4.220.table | 2 -- definitions/grib2/tables/13/4.221.table | 2 -- definitions/grib2/tables/13/4.222.table | 2 -- definitions/grib2/tables/13/4.224.table | 4 ---- definitions/grib2/tables/13/4.227.table | 2 -- definitions/grib2/tables/13/4.3.table | 2 -- definitions/grib2/tables/13/4.4.table | 3 --- definitions/grib2/tables/13/4.5.table | 7 ------- definitions/grib2/tables/13/4.6.table | 2 -- definitions/grib2/tables/13/4.7.table | 2 -- definitions/grib2/tables/13/4.8.table | 2 -- definitions/grib2/tables/13/4.9.table | 2 -- definitions/grib2/tables/13/4.91.table | 2 -- definitions/grib2/tables/13/5.0.table | 5 ----- definitions/grib2/tables/13/5.1.table | 2 -- definitions/grib2/tables/13/5.2.table | 3 --- definitions/grib2/tables/13/5.3.table | 2 -- definitions/grib2/tables/13/5.4.table | 2 -- definitions/grib2/tables/13/5.40.table | 1 - definitions/grib2/tables/13/5.5.table | 2 -- definitions/grib2/tables/13/5.6.table | 2 -- definitions/grib2/tables/13/5.7.table | 1 - definitions/grib2/tables/14/0.0.table | 3 --- definitions/grib2/tables/14/1.2.table | 2 -- definitions/grib2/tables/14/1.3.table | 2 -- definitions/grib2/tables/14/1.4.table | 2 -- definitions/grib2/tables/14/1.5.table | 2 -- definitions/grib2/tables/14/1.6.table | 2 -- definitions/grib2/tables/14/3.0.table | 2 -- definitions/grib2/tables/14/3.1.table | 15 -------------- definitions/grib2/tables/14/3.10.table | 1 - definitions/grib2/tables/14/3.11.table | 1 - definitions/grib2/tables/14/3.15.table | 5 ----- definitions/grib2/tables/14/3.2.table | 2 -- definitions/grib2/tables/14/3.20.table | 2 -- definitions/grib2/tables/14/3.21.table | 3 --- definitions/grib2/tables/14/3.3.table | 2 -- definitions/grib2/tables/14/3.7.table | 1 - definitions/grib2/tables/14/3.8.table | 2 -- definitions/grib2/tables/14/3.9.table | 1 - definitions/grib2/tables/14/4.0.table | 11 ---------- definitions/grib2/tables/14/4.1.0.table | 2 -- definitions/grib2/tables/14/4.1.1.table | 2 -- definitions/grib2/tables/14/4.1.10.table | 2 -- definitions/grib2/tables/14/4.1.2.table | 2 -- definitions/grib2/tables/14/4.1.3.table | 2 -- definitions/grib2/tables/14/4.10.table | 2 -- definitions/grib2/tables/14/4.11.table | 2 -- definitions/grib2/tables/14/4.12.table | 2 -- definitions/grib2/tables/14/4.13.table | 2 -- definitions/grib2/tables/14/4.14.table | 2 -- definitions/grib2/tables/14/4.15.table | 2 -- definitions/grib2/tables/14/4.2.0.0.table | 2 -- definitions/grib2/tables/14/4.2.0.1.table | 3 --- definitions/grib2/tables/14/4.2.0.13.table | 2 -- definitions/grib2/tables/14/4.2.0.14.table | 2 -- definitions/grib2/tables/14/4.2.0.15.table | 2 -- definitions/grib2/tables/14/4.2.0.16.table | 2 -- definitions/grib2/tables/14/4.2.0.18.table | 2 -- definitions/grib2/tables/14/4.2.0.19.table | 2 -- definitions/grib2/tables/14/4.2.0.190.table | 2 -- definitions/grib2/tables/14/4.2.0.191.table | 2 -- definitions/grib2/tables/14/4.2.0.2.table | 2 -- definitions/grib2/tables/14/4.2.0.20.table | 4 ---- definitions/grib2/tables/14/4.2.0.3.table | 2 -- definitions/grib2/tables/14/4.2.0.4.table | 3 --- definitions/grib2/tables/14/4.2.0.5.table | 2 -- definitions/grib2/tables/14/4.2.0.6.table | 2 -- definitions/grib2/tables/14/4.2.0.7.table | 2 -- definitions/grib2/tables/14/4.2.1.0.table | 2 -- definitions/grib2/tables/14/4.2.1.1.table | 2 -- definitions/grib2/tables/14/4.2.10.0.table | 2 -- definitions/grib2/tables/14/4.2.10.1.table | 2 -- definitions/grib2/tables/14/4.2.10.191.table | 2 -- definitions/grib2/tables/14/4.2.10.2.table | 2 -- definitions/grib2/tables/14/4.2.10.3.table | 2 -- definitions/grib2/tables/14/4.2.10.4.table | 3 --- definitions/grib2/tables/14/4.2.2.0.table | 2 -- definitions/grib2/tables/14/4.2.2.3.table | 2 -- definitions/grib2/tables/14/4.2.2.4.table | 2 -- definitions/grib2/tables/14/4.2.3.0.table | 2 -- definitions/grib2/tables/14/4.2.3.1.table | 2 -- definitions/grib2/tables/14/4.201.table | 2 -- definitions/grib2/tables/14/4.202.table | 2 -- definitions/grib2/tables/14/4.203.table | 2 -- definitions/grib2/tables/14/4.204.table | 2 -- definitions/grib2/tables/14/4.205.table | 2 -- definitions/grib2/tables/14/4.206.table | 2 -- definitions/grib2/tables/14/4.207.table | 2 -- definitions/grib2/tables/14/4.208.table | 2 -- definitions/grib2/tables/14/4.209.table | 2 -- definitions/grib2/tables/14/4.210.table | 2 -- definitions/grib2/tables/14/4.211.table | 2 -- definitions/grib2/tables/14/4.212.table | 2 -- definitions/grib2/tables/14/4.213.table | 2 -- definitions/grib2/tables/14/4.215.table | 4 ---- definitions/grib2/tables/14/4.216.table | 1 - definitions/grib2/tables/14/4.217.table | 2 -- definitions/grib2/tables/14/4.218.table | 3 --- definitions/grib2/tables/14/4.219.table | 2 -- definitions/grib2/tables/14/4.220.table | 2 -- definitions/grib2/tables/14/4.221.table | 2 -- definitions/grib2/tables/14/4.222.table | 2 -- definitions/grib2/tables/14/4.224.table | 4 ---- definitions/grib2/tables/14/4.227.table | 2 -- definitions/grib2/tables/14/4.241.table | 2 -- definitions/grib2/tables/14/4.242.table | 2 -- definitions/grib2/tables/14/4.243.table | 2 -- definitions/grib2/tables/14/4.3.table | 2 -- definitions/grib2/tables/14/4.4.table | 3 --- definitions/grib2/tables/14/4.5.table | 7 ------- definitions/grib2/tables/14/4.6.table | 2 -- definitions/grib2/tables/14/4.7.table | 2 -- definitions/grib2/tables/14/4.8.table | 2 -- definitions/grib2/tables/14/4.9.table | 2 -- definitions/grib2/tables/14/4.91.table | 2 -- definitions/grib2/tables/14/5.0.table | 5 ----- definitions/grib2/tables/14/5.1.table | 2 -- definitions/grib2/tables/14/5.2.table | 3 --- definitions/grib2/tables/14/5.3.table | 2 -- definitions/grib2/tables/14/5.4.table | 2 -- definitions/grib2/tables/14/5.40.table | 1 - definitions/grib2/tables/14/5.5.table | 2 -- definitions/grib2/tables/14/5.6.table | 2 -- definitions/grib2/tables/14/5.7.table | 1 - definitions/grib2/tables/15/0.0.table | 3 --- definitions/grib2/tables/15/1.2.table | 2 -- definitions/grib2/tables/15/1.3.table | 2 -- definitions/grib2/tables/15/1.4.table | 2 -- definitions/grib2/tables/15/1.5.table | 2 -- definitions/grib2/tables/15/1.6.table | 2 -- definitions/grib2/tables/15/3.0.table | 2 -- definitions/grib2/tables/15/3.1.table | 15 -------------- definitions/grib2/tables/15/3.10.table | 1 - definitions/grib2/tables/15/3.11.table | 1 - definitions/grib2/tables/15/3.15.table | 5 ----- definitions/grib2/tables/15/3.2.table | 2 -- definitions/grib2/tables/15/3.20.table | 2 -- definitions/grib2/tables/15/3.21.table | 3 --- definitions/grib2/tables/15/3.3.table | 2 -- definitions/grib2/tables/15/3.7.table | 1 - definitions/grib2/tables/15/3.8.table | 2 -- definitions/grib2/tables/15/3.9.table | 1 - definitions/grib2/tables/15/4.0.table | 12 ----------- definitions/grib2/tables/15/4.1.0.table | 2 -- definitions/grib2/tables/15/4.1.1.table | 2 -- definitions/grib2/tables/15/4.1.10.table | 2 -- definitions/grib2/tables/15/4.1.2.table | 2 -- definitions/grib2/tables/15/4.1.3.table | 2 -- definitions/grib2/tables/15/4.10.table | 2 -- definitions/grib2/tables/15/4.11.table | 2 -- definitions/grib2/tables/15/4.12.table | 2 -- definitions/grib2/tables/15/4.13.table | 2 -- definitions/grib2/tables/15/4.14.table | 2 -- definitions/grib2/tables/15/4.15.table | 2 -- definitions/grib2/tables/15/4.2.0.0.table | 2 -- definitions/grib2/tables/15/4.2.0.1.table | 3 --- definitions/grib2/tables/15/4.2.0.13.table | 2 -- definitions/grib2/tables/15/4.2.0.14.table | 2 -- definitions/grib2/tables/15/4.2.0.15.table | 2 -- definitions/grib2/tables/15/4.2.0.16.table | 2 -- definitions/grib2/tables/15/4.2.0.18.table | 2 -- definitions/grib2/tables/15/4.2.0.19.table | 2 -- definitions/grib2/tables/15/4.2.0.190.table | 2 -- definitions/grib2/tables/15/4.2.0.191.table | 2 -- definitions/grib2/tables/15/4.2.0.2.table | 2 -- definitions/grib2/tables/15/4.2.0.20.table | 4 ---- definitions/grib2/tables/15/4.2.0.3.table | 2 -- definitions/grib2/tables/15/4.2.0.4.table | 3 --- definitions/grib2/tables/15/4.2.0.5.table | 2 -- definitions/grib2/tables/15/4.2.0.6.table | 2 -- definitions/grib2/tables/15/4.2.0.7.table | 2 -- definitions/grib2/tables/15/4.2.1.0.table | 2 -- definitions/grib2/tables/15/4.2.1.1.table | 2 -- definitions/grib2/tables/15/4.2.10.0.table | 2 -- definitions/grib2/tables/15/4.2.10.1.table | 2 -- definitions/grib2/tables/15/4.2.10.191.table | 2 -- definitions/grib2/tables/15/4.2.10.2.table | 2 -- definitions/grib2/tables/15/4.2.10.3.table | 2 -- definitions/grib2/tables/15/4.2.10.4.table | 3 --- definitions/grib2/tables/15/4.2.2.0.table | 2 -- definitions/grib2/tables/15/4.2.2.3.table | 2 -- definitions/grib2/tables/15/4.2.2.4.table | 2 -- definitions/grib2/tables/15/4.2.3.0.table | 2 -- definitions/grib2/tables/15/4.2.3.1.table | 2 -- definitions/grib2/tables/15/4.201.table | 2 -- definitions/grib2/tables/15/4.202.table | 2 -- definitions/grib2/tables/15/4.203.table | 2 -- definitions/grib2/tables/15/4.204.table | 2 -- definitions/grib2/tables/15/4.205.table | 2 -- definitions/grib2/tables/15/4.206.table | 2 -- definitions/grib2/tables/15/4.207.table | 2 -- definitions/grib2/tables/15/4.208.table | 2 -- definitions/grib2/tables/15/4.209.table | 2 -- definitions/grib2/tables/15/4.210.table | 2 -- definitions/grib2/tables/15/4.211.table | 2 -- definitions/grib2/tables/15/4.212.table | 2 -- definitions/grib2/tables/15/4.213.table | 2 -- definitions/grib2/tables/15/4.215.table | 4 ---- definitions/grib2/tables/15/4.216.table | 1 - definitions/grib2/tables/15/4.217.table | 2 -- definitions/grib2/tables/15/4.218.table | 3 --- definitions/grib2/tables/15/4.219.table | 2 -- definitions/grib2/tables/15/4.220.table | 2 -- definitions/grib2/tables/15/4.221.table | 2 -- definitions/grib2/tables/15/4.222.table | 2 -- definitions/grib2/tables/15/4.224.table | 4 ---- definitions/grib2/tables/15/4.227.table | 2 -- definitions/grib2/tables/15/4.240.table | 2 -- definitions/grib2/tables/15/4.241.table | 2 -- definitions/grib2/tables/15/4.242.table | 2 -- definitions/grib2/tables/15/4.243.table | 2 -- definitions/grib2/tables/15/4.3.table | 2 -- definitions/grib2/tables/15/4.4.table | 3 --- definitions/grib2/tables/15/4.5.table | 9 --------- definitions/grib2/tables/15/4.6.table | 2 -- definitions/grib2/tables/15/4.7.table | 2 -- definitions/grib2/tables/15/4.8.table | 2 -- definitions/grib2/tables/15/4.9.table | 2 -- definitions/grib2/tables/15/4.91.table | 2 -- definitions/grib2/tables/15/5.0.table | 5 ----- definitions/grib2/tables/15/5.1.table | 2 -- definitions/grib2/tables/15/5.2.table | 3 --- definitions/grib2/tables/15/5.3.table | 2 -- definitions/grib2/tables/15/5.4.table | 2 -- definitions/grib2/tables/15/5.40.table | 1 - definitions/grib2/tables/15/5.5.table | 2 -- definitions/grib2/tables/15/5.6.table | 2 -- definitions/grib2/tables/15/5.7.table | 1 - definitions/grib2/tables/16/0.0.table | 3 --- definitions/grib2/tables/16/1.2.table | 2 -- definitions/grib2/tables/16/1.3.table | 2 -- definitions/grib2/tables/16/1.4.table | 2 -- definitions/grib2/tables/16/1.5.table | 2 -- definitions/grib2/tables/16/1.6.table | 2 -- definitions/grib2/tables/16/3.0.table | 2 -- definitions/grib2/tables/16/3.1.table | 15 -------------- definitions/grib2/tables/16/3.10.table | 1 - definitions/grib2/tables/16/3.11.table | 1 - definitions/grib2/tables/16/3.15.table | 5 ----- definitions/grib2/tables/16/3.2.table | 2 -- definitions/grib2/tables/16/3.20.table | 2 -- definitions/grib2/tables/16/3.21.table | 3 --- definitions/grib2/tables/16/3.3.table | 2 -- definitions/grib2/tables/16/3.7.table | 1 - definitions/grib2/tables/16/3.8.table | 2 -- definitions/grib2/tables/16/3.9.table | 1 - definitions/grib2/tables/16/4.0.table | 11 ---------- definitions/grib2/tables/16/4.1.0.table | 2 -- definitions/grib2/tables/16/4.1.1.table | 2 -- definitions/grib2/tables/16/4.1.10.table | 2 -- definitions/grib2/tables/16/4.1.2.table | 2 -- definitions/grib2/tables/16/4.1.3.table | 2 -- definitions/grib2/tables/16/4.10.table | 2 -- definitions/grib2/tables/16/4.11.table | 2 -- definitions/grib2/tables/16/4.12.table | 2 -- definitions/grib2/tables/16/4.13.table | 2 -- definitions/grib2/tables/16/4.14.table | 2 -- definitions/grib2/tables/16/4.15.table | 2 -- definitions/grib2/tables/16/4.2.0.0.table | 2 -- definitions/grib2/tables/16/4.2.0.1.table | 3 --- definitions/grib2/tables/16/4.2.0.13.table | 2 -- definitions/grib2/tables/16/4.2.0.14.table | 2 -- definitions/grib2/tables/16/4.2.0.15.table | 2 -- definitions/grib2/tables/16/4.2.0.16.table | 2 -- definitions/grib2/tables/16/4.2.0.18.table | 2 -- definitions/grib2/tables/16/4.2.0.19.table | 2 -- definitions/grib2/tables/16/4.2.0.190.table | 2 -- definitions/grib2/tables/16/4.2.0.191.table | 2 -- definitions/grib2/tables/16/4.2.0.2.table | 2 -- definitions/grib2/tables/16/4.2.0.20.table | 4 ---- definitions/grib2/tables/16/4.2.0.3.table | 2 -- definitions/grib2/tables/16/4.2.0.4.table | 3 --- definitions/grib2/tables/16/4.2.0.5.table | 2 -- definitions/grib2/tables/16/4.2.0.6.table | 3 --- definitions/grib2/tables/16/4.2.0.7.table | 2 -- definitions/grib2/tables/16/4.2.1.0.table | 2 -- definitions/grib2/tables/16/4.2.1.1.table | 2 -- definitions/grib2/tables/16/4.2.10.0.table | 2 -- definitions/grib2/tables/16/4.2.10.1.table | 2 -- definitions/grib2/tables/16/4.2.10.191.table | 2 -- definitions/grib2/tables/16/4.2.10.2.table | 2 -- definitions/grib2/tables/16/4.2.10.3.table | 2 -- definitions/grib2/tables/16/4.2.10.4.table | 3 --- definitions/grib2/tables/16/4.2.2.0.table | 2 -- definitions/grib2/tables/16/4.2.2.3.table | 2 -- definitions/grib2/tables/16/4.2.2.4.table | 2 -- definitions/grib2/tables/16/4.2.3.0.table | 2 -- definitions/grib2/tables/16/4.2.3.1.table | 3 --- definitions/grib2/tables/16/4.201.table | 2 -- definitions/grib2/tables/16/4.202.table | 2 -- definitions/grib2/tables/16/4.203.table | 2 -- definitions/grib2/tables/16/4.204.table | 2 -- definitions/grib2/tables/16/4.205.table | 2 -- definitions/grib2/tables/16/4.206.table | 2 -- definitions/grib2/tables/16/4.207.table | 2 -- definitions/grib2/tables/16/4.208.table | 2 -- definitions/grib2/tables/16/4.209.table | 2 -- definitions/grib2/tables/16/4.210.table | 2 -- definitions/grib2/tables/16/4.211.table | 2 -- definitions/grib2/tables/16/4.212.table | 2 -- definitions/grib2/tables/16/4.213.table | 2 -- definitions/grib2/tables/16/4.215.table | 4 ---- definitions/grib2/tables/16/4.216.table | 1 - definitions/grib2/tables/16/4.217.table | 2 -- definitions/grib2/tables/16/4.218.table | 3 --- definitions/grib2/tables/16/4.219.table | 2 -- definitions/grib2/tables/16/4.220.table | 2 -- definitions/grib2/tables/16/4.221.table | 2 -- definitions/grib2/tables/16/4.222.table | 2 -- definitions/grib2/tables/16/4.224.table | 4 ---- definitions/grib2/tables/16/4.227.table | 2 -- definitions/grib2/tables/16/4.240.table | 2 -- definitions/grib2/tables/16/4.241.table | 2 -- definitions/grib2/tables/16/4.242.table | 2 -- definitions/grib2/tables/16/4.243.table | 2 -- definitions/grib2/tables/16/4.3.table | 2 -- definitions/grib2/tables/16/4.4.table | 3 --- definitions/grib2/tables/16/4.5.table | 8 -------- definitions/grib2/tables/16/4.6.table | 2 -- definitions/grib2/tables/16/4.7.table | 2 -- definitions/grib2/tables/16/4.8.table | 2 -- definitions/grib2/tables/16/4.9.table | 2 -- definitions/grib2/tables/16/4.91.table | 2 -- definitions/grib2/tables/16/5.0.table | 5 ----- definitions/grib2/tables/16/5.1.table | 2 -- definitions/grib2/tables/16/5.2.table | 3 --- definitions/grib2/tables/16/5.3.table | 2 -- definitions/grib2/tables/16/5.4.table | 2 -- definitions/grib2/tables/16/5.40.table | 1 - definitions/grib2/tables/16/5.5.table | 2 -- definitions/grib2/tables/16/5.6.table | 2 -- definitions/grib2/tables/16/5.7.table | 1 - definitions/grib2/tables/17/0.0.table | 3 --- definitions/grib2/tables/17/1.2.table | 2 -- definitions/grib2/tables/17/1.3.table | 2 -- definitions/grib2/tables/17/1.4.table | 2 -- definitions/grib2/tables/17/1.5.table | 2 -- definitions/grib2/tables/17/1.6.table | 2 -- definitions/grib2/tables/17/3.0.table | 2 -- definitions/grib2/tables/17/3.1.table | 15 -------------- definitions/grib2/tables/17/3.10.table | 1 - definitions/grib2/tables/17/3.11.table | 1 - definitions/grib2/tables/17/3.15.table | 5 ----- definitions/grib2/tables/17/3.2.table | 2 -- definitions/grib2/tables/17/3.20.table | 2 -- definitions/grib2/tables/17/3.21.table | 3 --- definitions/grib2/tables/17/3.3.table | 2 -- definitions/grib2/tables/17/3.7.table | 1 - definitions/grib2/tables/17/3.8.table | 2 -- definitions/grib2/tables/17/3.9.table | 1 - definitions/grib2/tables/17/4.0.table | 11 ---------- definitions/grib2/tables/17/4.1.0.table | 2 -- definitions/grib2/tables/17/4.1.1.table | 2 -- definitions/grib2/tables/17/4.1.10.table | 2 -- definitions/grib2/tables/17/4.1.2.table | 2 -- definitions/grib2/tables/17/4.1.3.table | 2 -- definitions/grib2/tables/17/4.10.table | 2 -- definitions/grib2/tables/17/4.11.table | 2 -- definitions/grib2/tables/17/4.12.table | 2 -- definitions/grib2/tables/17/4.13.table | 2 -- definitions/grib2/tables/17/4.14.table | 2 -- definitions/grib2/tables/17/4.15.table | 2 -- definitions/grib2/tables/17/4.2.0.0.table | 2 -- definitions/grib2/tables/17/4.2.0.1.table | 3 --- definitions/grib2/tables/17/4.2.0.13.table | 2 -- definitions/grib2/tables/17/4.2.0.14.table | 2 -- definitions/grib2/tables/17/4.2.0.15.table | 2 -- definitions/grib2/tables/17/4.2.0.16.table | 2 -- definitions/grib2/tables/17/4.2.0.18.table | 2 -- definitions/grib2/tables/17/4.2.0.19.table | 2 -- definitions/grib2/tables/17/4.2.0.190.table | 2 -- definitions/grib2/tables/17/4.2.0.191.table | 2 -- definitions/grib2/tables/17/4.2.0.2.table | 2 -- definitions/grib2/tables/17/4.2.0.20.table | 4 ---- definitions/grib2/tables/17/4.2.0.3.table | 2 -- definitions/grib2/tables/17/4.2.0.4.table | 3 --- definitions/grib2/tables/17/4.2.0.5.table | 2 -- definitions/grib2/tables/17/4.2.0.6.table | 3 --- definitions/grib2/tables/17/4.2.0.7.table | 2 -- definitions/grib2/tables/17/4.2.1.0.table | 2 -- definitions/grib2/tables/17/4.2.1.1.table | 2 -- definitions/grib2/tables/17/4.2.10.0.table | 2 -- definitions/grib2/tables/17/4.2.10.1.table | 2 -- definitions/grib2/tables/17/4.2.10.191.table | 2 -- definitions/grib2/tables/17/4.2.10.2.table | 2 -- definitions/grib2/tables/17/4.2.10.3.table | 2 -- definitions/grib2/tables/17/4.2.10.4.table | 3 --- definitions/grib2/tables/17/4.2.2.0.table | 2 -- definitions/grib2/tables/17/4.2.2.3.table | 2 -- definitions/grib2/tables/17/4.2.2.4.table | 2 -- definitions/grib2/tables/17/4.2.3.0.table | 2 -- definitions/grib2/tables/17/4.2.3.1.table | 3 --- definitions/grib2/tables/17/4.201.table | 2 -- definitions/grib2/tables/17/4.202.table | 2 -- definitions/grib2/tables/17/4.203.table | 2 -- definitions/grib2/tables/17/4.204.table | 2 -- definitions/grib2/tables/17/4.205.table | 2 -- definitions/grib2/tables/17/4.206.table | 2 -- definitions/grib2/tables/17/4.207.table | 2 -- definitions/grib2/tables/17/4.208.table | 2 -- definitions/grib2/tables/17/4.209.table | 2 -- definitions/grib2/tables/17/4.210.table | 2 -- definitions/grib2/tables/17/4.211.table | 2 -- definitions/grib2/tables/17/4.212.table | 2 -- definitions/grib2/tables/17/4.213.table | 2 -- definitions/grib2/tables/17/4.215.table | 4 ---- definitions/grib2/tables/17/4.216.table | 1 - definitions/grib2/tables/17/4.217.table | 2 -- definitions/grib2/tables/17/4.218.table | 3 --- definitions/grib2/tables/17/4.219.table | 2 -- definitions/grib2/tables/17/4.220.table | 2 -- definitions/grib2/tables/17/4.221.table | 2 -- definitions/grib2/tables/17/4.222.table | 2 -- definitions/grib2/tables/17/4.224.table | 4 ---- definitions/grib2/tables/17/4.227.table | 2 -- definitions/grib2/tables/17/4.240.table | 2 -- definitions/grib2/tables/17/4.241.table | 2 -- definitions/grib2/tables/17/4.242.table | 2 -- definitions/grib2/tables/17/4.243.table | 2 -- definitions/grib2/tables/17/4.3.table | 2 -- definitions/grib2/tables/17/4.4.table | 3 --- definitions/grib2/tables/17/4.5.table | 9 --------- definitions/grib2/tables/17/4.6.table | 2 -- definitions/grib2/tables/17/4.7.table | 2 -- definitions/grib2/tables/17/4.8.table | 2 -- definitions/grib2/tables/17/4.9.table | 2 -- definitions/grib2/tables/17/4.91.table | 2 -- definitions/grib2/tables/17/5.0.table | 5 ----- definitions/grib2/tables/17/5.1.table | 2 -- definitions/grib2/tables/17/5.2.table | 3 --- definitions/grib2/tables/17/5.3.table | 2 -- definitions/grib2/tables/17/5.4.table | 2 -- definitions/grib2/tables/17/5.40.table | 1 - definitions/grib2/tables/17/5.5.table | 2 -- definitions/grib2/tables/17/5.6.table | 2 -- definitions/grib2/tables/17/5.7.table | 1 - definitions/grib2/tables/18/0.0.table | 3 --- definitions/grib2/tables/18/1.2.table | 2 -- definitions/grib2/tables/18/1.3.table | 2 -- definitions/grib2/tables/18/1.4.table | 2 -- definitions/grib2/tables/18/1.5.table | 2 -- definitions/grib2/tables/18/1.6.table | 2 -- definitions/grib2/tables/18/3.0.table | 2 -- definitions/grib2/tables/18/3.1.table | 15 -------------- definitions/grib2/tables/18/3.10.table | 1 - definitions/grib2/tables/18/3.11.table | 1 - definitions/grib2/tables/18/3.15.table | 5 ----- definitions/grib2/tables/18/3.2.table | 2 -- definitions/grib2/tables/18/3.20.table | 2 -- definitions/grib2/tables/18/3.21.table | 3 --- definitions/grib2/tables/18/3.3.table | 2 -- definitions/grib2/tables/18/3.7.table | 1 - definitions/grib2/tables/18/3.8.table | 2 -- definitions/grib2/tables/18/3.9.table | 1 - definitions/grib2/tables/18/4.0.table | 12 ----------- definitions/grib2/tables/18/4.1.0.table | 2 -- definitions/grib2/tables/18/4.1.1.table | 2 -- definitions/grib2/tables/18/4.1.10.table | 2 -- definitions/grib2/tables/18/4.1.2.table | 2 -- definitions/grib2/tables/18/4.1.3.table | 2 -- definitions/grib2/tables/18/4.10.table | 2 -- definitions/grib2/tables/18/4.11.table | 2 -- definitions/grib2/tables/18/4.12.table | 2 -- definitions/grib2/tables/18/4.13.table | 2 -- definitions/grib2/tables/18/4.14.table | 2 -- definitions/grib2/tables/18/4.15.table | 2 -- definitions/grib2/tables/18/4.2.0.0.table | 2 -- definitions/grib2/tables/18/4.2.0.1.table | 3 --- definitions/grib2/tables/18/4.2.0.13.table | 2 -- definitions/grib2/tables/18/4.2.0.14.table | 2 -- definitions/grib2/tables/18/4.2.0.15.table | 2 -- definitions/grib2/tables/18/4.2.0.16.table | 2 -- definitions/grib2/tables/18/4.2.0.18.table | 2 -- definitions/grib2/tables/18/4.2.0.19.table | 2 -- definitions/grib2/tables/18/4.2.0.190.table | 2 -- definitions/grib2/tables/18/4.2.0.191.table | 2 -- definitions/grib2/tables/18/4.2.0.2.table | 2 -- definitions/grib2/tables/18/4.2.0.20.table | 4 ---- definitions/grib2/tables/18/4.2.0.3.table | 2 -- definitions/grib2/tables/18/4.2.0.4.table | 3 --- definitions/grib2/tables/18/4.2.0.5.table | 2 -- definitions/grib2/tables/18/4.2.0.6.table | 3 --- definitions/grib2/tables/18/4.2.0.7.table | 2 -- definitions/grib2/tables/18/4.2.1.0.table | 2 -- definitions/grib2/tables/18/4.2.1.1.table | 2 -- definitions/grib2/tables/18/4.2.10.0.table | 2 -- definitions/grib2/tables/18/4.2.10.1.table | 2 -- definitions/grib2/tables/18/4.2.10.191.table | 2 -- definitions/grib2/tables/18/4.2.10.2.table | 2 -- definitions/grib2/tables/18/4.2.10.3.table | 2 -- definitions/grib2/tables/18/4.2.10.4.table | 3 --- definitions/grib2/tables/18/4.2.2.0.table | 2 -- definitions/grib2/tables/18/4.2.2.3.table | 2 -- definitions/grib2/tables/18/4.2.2.4.table | 2 -- definitions/grib2/tables/18/4.2.3.0.table | 2 -- definitions/grib2/tables/18/4.2.3.1.table | 3 --- definitions/grib2/tables/18/4.201.table | 2 -- definitions/grib2/tables/18/4.202.table | 2 -- definitions/grib2/tables/18/4.203.table | 2 -- definitions/grib2/tables/18/4.204.table | 2 -- definitions/grib2/tables/18/4.205.table | 2 -- definitions/grib2/tables/18/4.206.table | 2 -- definitions/grib2/tables/18/4.207.table | 2 -- definitions/grib2/tables/18/4.208.table | 2 -- definitions/grib2/tables/18/4.209.table | 2 -- definitions/grib2/tables/18/4.210.table | 2 -- definitions/grib2/tables/18/4.211.table | 2 -- definitions/grib2/tables/18/4.212.table | 2 -- definitions/grib2/tables/18/4.213.table | 2 -- definitions/grib2/tables/18/4.215.table | 4 ---- definitions/grib2/tables/18/4.216.table | 1 - definitions/grib2/tables/18/4.217.table | 2 -- definitions/grib2/tables/18/4.218.table | 3 --- definitions/grib2/tables/18/4.219.table | 2 -- definitions/grib2/tables/18/4.220.table | 2 -- definitions/grib2/tables/18/4.221.table | 2 -- definitions/grib2/tables/18/4.222.table | 2 -- definitions/grib2/tables/18/4.224.table | 4 ---- definitions/grib2/tables/18/4.227.table | 2 -- definitions/grib2/tables/18/4.240.table | 2 -- definitions/grib2/tables/18/4.241.table | 2 -- definitions/grib2/tables/18/4.242.table | 2 -- definitions/grib2/tables/18/4.243.table | 2 -- definitions/grib2/tables/18/4.3.table | 2 -- definitions/grib2/tables/18/4.4.table | 3 --- definitions/grib2/tables/18/4.5.table | 9 --------- definitions/grib2/tables/18/4.6.table | 2 -- definitions/grib2/tables/18/4.7.table | 2 -- definitions/grib2/tables/18/4.8.table | 2 -- definitions/grib2/tables/18/4.9.table | 2 -- definitions/grib2/tables/18/4.91.table | 2 -- definitions/grib2/tables/18/5.0.table | 5 ----- definitions/grib2/tables/18/5.1.table | 2 -- definitions/grib2/tables/18/5.2.table | 3 --- definitions/grib2/tables/18/5.3.table | 2 -- definitions/grib2/tables/18/5.4.table | 2 -- definitions/grib2/tables/18/5.40.table | 1 - definitions/grib2/tables/18/5.5.table | 2 -- definitions/grib2/tables/18/5.6.table | 2 -- definitions/grib2/tables/18/5.7.table | 1 - definitions/grib2/tables/19/0.0.table | 3 --- definitions/grib2/tables/19/1.2.table | 2 -- definitions/grib2/tables/19/1.3.table | 2 -- definitions/grib2/tables/19/1.4.table | 2 -- definitions/grib2/tables/19/1.5.table | 2 -- definitions/grib2/tables/19/1.6.table | 2 -- definitions/grib2/tables/19/3.0.table | 2 -- definitions/grib2/tables/19/3.1.table | 15 -------------- definitions/grib2/tables/19/3.10.table | 1 - definitions/grib2/tables/19/3.11.table | 1 - definitions/grib2/tables/19/3.15.table | 5 ----- definitions/grib2/tables/19/3.2.table | 2 -- definitions/grib2/tables/19/3.20.table | 2 -- definitions/grib2/tables/19/3.21.table | 3 --- definitions/grib2/tables/19/3.3.table | 2 -- definitions/grib2/tables/19/3.7.table | 1 - definitions/grib2/tables/19/3.8.table | 2 -- definitions/grib2/tables/19/3.9.table | 1 - definitions/grib2/tables/19/4.0.table | 13 ------------ definitions/grib2/tables/19/4.1.0.table | 2 -- definitions/grib2/tables/19/4.1.1.table | 2 -- definitions/grib2/tables/19/4.1.10.table | 2 -- definitions/grib2/tables/19/4.1.2.table | 2 -- definitions/grib2/tables/19/4.1.3.table | 2 -- definitions/grib2/tables/19/4.10.table | 2 -- definitions/grib2/tables/19/4.11.table | 2 -- definitions/grib2/tables/19/4.12.table | 2 -- definitions/grib2/tables/19/4.13.table | 2 -- definitions/grib2/tables/19/4.14.table | 2 -- definitions/grib2/tables/19/4.15.table | 2 -- definitions/grib2/tables/19/4.2.0.0.table | 2 -- definitions/grib2/tables/19/4.2.0.1.table | 3 --- definitions/grib2/tables/19/4.2.0.13.table | 2 -- definitions/grib2/tables/19/4.2.0.14.table | 2 -- definitions/grib2/tables/19/4.2.0.15.table | 2 -- definitions/grib2/tables/19/4.2.0.16.table | 2 -- definitions/grib2/tables/19/4.2.0.18.table | 2 -- definitions/grib2/tables/19/4.2.0.19.table | 2 -- definitions/grib2/tables/19/4.2.0.190.table | 2 -- definitions/grib2/tables/19/4.2.0.191.table | 2 -- definitions/grib2/tables/19/4.2.0.2.table | 2 -- definitions/grib2/tables/19/4.2.0.20.table | 4 ---- definitions/grib2/tables/19/4.2.0.3.table | 2 -- definitions/grib2/tables/19/4.2.0.4.table | 3 --- definitions/grib2/tables/19/4.2.0.5.table | 2 -- definitions/grib2/tables/19/4.2.0.6.table | 3 --- definitions/grib2/tables/19/4.2.0.7.table | 2 -- definitions/grib2/tables/19/4.2.1.0.table | 2 -- definitions/grib2/tables/19/4.2.1.1.table | 2 -- definitions/grib2/tables/19/4.2.10.0.table | 2 -- definitions/grib2/tables/19/4.2.10.1.table | 2 -- definitions/grib2/tables/19/4.2.10.191.table | 2 -- definitions/grib2/tables/19/4.2.10.2.table | 2 -- definitions/grib2/tables/19/4.2.10.3.table | 2 -- definitions/grib2/tables/19/4.2.10.4.table | 3 --- definitions/grib2/tables/19/4.2.2.0.table | 2 -- definitions/grib2/tables/19/4.2.2.3.table | 2 -- definitions/grib2/tables/19/4.2.2.4.table | 2 -- definitions/grib2/tables/19/4.2.3.0.table | 2 -- definitions/grib2/tables/19/4.2.3.1.table | 3 --- definitions/grib2/tables/19/4.201.table | 2 -- definitions/grib2/tables/19/4.202.table | 2 -- definitions/grib2/tables/19/4.203.table | 2 -- definitions/grib2/tables/19/4.204.table | 2 -- definitions/grib2/tables/19/4.205.table | 2 -- definitions/grib2/tables/19/4.206.table | 2 -- definitions/grib2/tables/19/4.207.table | 2 -- definitions/grib2/tables/19/4.208.table | 2 -- definitions/grib2/tables/19/4.209.table | 2 -- definitions/grib2/tables/19/4.210.table | 2 -- definitions/grib2/tables/19/4.211.table | 2 -- definitions/grib2/tables/19/4.212.table | 2 -- definitions/grib2/tables/19/4.213.table | 2 -- definitions/grib2/tables/19/4.215.table | 4 ---- definitions/grib2/tables/19/4.216.table | 1 - definitions/grib2/tables/19/4.217.table | 2 -- definitions/grib2/tables/19/4.218.table | 3 --- definitions/grib2/tables/19/4.219.table | 2 -- definitions/grib2/tables/19/4.220.table | 2 -- definitions/grib2/tables/19/4.221.table | 2 -- definitions/grib2/tables/19/4.222.table | 2 -- definitions/grib2/tables/19/4.224.table | 4 ---- definitions/grib2/tables/19/4.227.table | 2 -- definitions/grib2/tables/19/4.240.table | 2 -- definitions/grib2/tables/19/4.241.table | 2 -- definitions/grib2/tables/19/4.242.table | 2 -- definitions/grib2/tables/19/4.243.table | 2 -- definitions/grib2/tables/19/4.3.table | 2 -- definitions/grib2/tables/19/4.4.table | 3 --- definitions/grib2/tables/19/4.5.table | 9 --------- definitions/grib2/tables/19/4.6.table | 2 -- definitions/grib2/tables/19/4.7.table | 2 -- definitions/grib2/tables/19/4.8.table | 2 -- definitions/grib2/tables/19/4.9.table | 2 -- definitions/grib2/tables/19/4.91.table | 2 -- definitions/grib2/tables/19/5.0.table | 5 ----- definitions/grib2/tables/19/5.1.table | 2 -- definitions/grib2/tables/19/5.2.table | 3 --- definitions/grib2/tables/19/5.3.table | 2 -- definitions/grib2/tables/19/5.4.table | 2 -- definitions/grib2/tables/19/5.40.table | 1 - definitions/grib2/tables/19/5.5.table | 2 -- definitions/grib2/tables/19/5.6.table | 2 -- definitions/grib2/tables/19/5.7.table | 1 - definitions/grib2/tables/2/0.0.table | 3 --- definitions/grib2/tables/2/1.2.table | 2 -- definitions/grib2/tables/2/1.3.table | 2 -- definitions/grib2/tables/2/1.4.table | 2 -- definitions/grib2/tables/2/3.0.table | 2 -- definitions/grib2/tables/2/3.1.table | 16 --------------- definitions/grib2/tables/2/3.2.table | 2 -- definitions/grib2/tables/2/3.20.table | 2 -- definitions/grib2/tables/2/3.21.table | 3 --- definitions/grib2/tables/2/3.8.table | 2 -- definitions/grib2/tables/2/4.1.0.table | 2 -- definitions/grib2/tables/2/4.1.1.table | 2 -- definitions/grib2/tables/2/4.1.10.table | 2 -- definitions/grib2/tables/2/4.1.2.table | 2 -- definitions/grib2/tables/2/4.1.3.table | 2 -- definitions/grib2/tables/2/4.10.table | 1 - definitions/grib2/tables/2/4.11.table | 1 - definitions/grib2/tables/2/4.12.table | 1 - definitions/grib2/tables/2/4.13.table | 1 - definitions/grib2/tables/2/4.14.table | 1 - definitions/grib2/tables/2/4.15.table | 1 - definitions/grib2/tables/2/4.151.table | 1 - definitions/grib2/tables/2/4.2.0.0.table | 2 -- definitions/grib2/tables/2/4.2.0.1.table | 2 -- definitions/grib2/tables/2/4.2.0.13.table | 2 -- definitions/grib2/tables/2/4.2.0.14.table | 2 -- definitions/grib2/tables/2/4.2.0.15.table | 2 -- definitions/grib2/tables/2/4.2.0.18.table | 2 -- definitions/grib2/tables/2/4.2.0.19.table | 2 -- definitions/grib2/tables/2/4.2.0.190.table | 2 -- definitions/grib2/tables/2/4.2.0.191.table | 2 -- definitions/grib2/tables/2/4.2.0.2.table | 2 -- definitions/grib2/tables/2/4.2.0.20.table | 2 -- definitions/grib2/tables/2/4.2.0.3.table | 2 -- definitions/grib2/tables/2/4.2.0.4.table | 2 -- definitions/grib2/tables/2/4.2.0.5.table | 2 -- definitions/grib2/tables/2/4.2.0.6.table | 2 -- definitions/grib2/tables/2/4.2.0.7.table | 2 -- definitions/grib2/tables/2/4.2.1.1.table | 2 -- definitions/grib2/tables/2/4.2.10.0.table | 2 -- definitions/grib2/tables/2/4.2.10.1.table | 2 -- definitions/grib2/tables/2/4.2.10.2.table | 2 -- definitions/grib2/tables/2/4.2.10.3.table | 2 -- definitions/grib2/tables/2/4.2.10.4.table | 2 -- definitions/grib2/tables/2/4.2.2.0.table | 2 -- definitions/grib2/tables/2/4.2.2.3.table | 2 -- definitions/grib2/tables/2/4.2.3.0.table | 2 -- definitions/grib2/tables/2/4.2.3.1.table | 2 -- definitions/grib2/tables/2/4.201.table | 1 - definitions/grib2/tables/2/4.202.table | 1 - definitions/grib2/tables/2/4.203.table | 1 - definitions/grib2/tables/2/4.204.table | 1 - definitions/grib2/tables/2/4.205.table | 1 - definitions/grib2/tables/2/4.206.table | 1 - definitions/grib2/tables/2/4.207.table | 1 - definitions/grib2/tables/2/4.208.table | 1 - definitions/grib2/tables/2/4.209.table | 1 - definitions/grib2/tables/2/4.210.table | 1 - definitions/grib2/tables/2/4.211.table | 1 - definitions/grib2/tables/2/4.212.table | 1 - definitions/grib2/tables/2/4.213.table | 1 - definitions/grib2/tables/2/4.217.table | 1 - definitions/grib2/tables/2/4.220.table | 1 - definitions/grib2/tables/2/4.221.table | 1 - definitions/grib2/tables/2/4.230.table | 3 --- definitions/grib2/tables/2/4.3.table | 2 -- definitions/grib2/tables/2/4.4.table | 2 -- definitions/grib2/tables/2/4.5.table | 6 ------ definitions/grib2/tables/2/4.6.table | 1 - definitions/grib2/tables/2/4.7.table | 1 - definitions/grib2/tables/2/4.8.table | 1 - definitions/grib2/tables/2/4.9.table | 1 - definitions/grib2/tables/2/4.91.table | 1 - definitions/grib2/tables/2/5.0.table | 1 - definitions/grib2/tables/2/5.1.table | 1 - definitions/grib2/tables/2/5.2.table | 1 - definitions/grib2/tables/2/5.3.table | 1 - definitions/grib2/tables/2/5.4.table | 1 - definitions/grib2/tables/2/5.40.table | 1 - definitions/grib2/tables/2/5.5.table | 1 - definitions/grib2/tables/2/5.6.table | 1 - definitions/grib2/tables/20/0.0.table | 3 --- definitions/grib2/tables/20/1.2.table | 2 -- definitions/grib2/tables/20/1.3.table | 2 -- definitions/grib2/tables/20/1.4.table | 2 -- definitions/grib2/tables/20/1.5.table | 2 -- definitions/grib2/tables/20/1.6.table | 2 -- definitions/grib2/tables/20/3.0.table | 2 -- definitions/grib2/tables/20/3.1.table | 15 -------------- definitions/grib2/tables/20/3.10.table | 1 - definitions/grib2/tables/20/3.11.table | 1 - definitions/grib2/tables/20/3.15.table | 5 ----- definitions/grib2/tables/20/3.2.table | 2 -- definitions/grib2/tables/20/3.20.table | 2 -- definitions/grib2/tables/20/3.21.table | 3 --- definitions/grib2/tables/20/3.3.table | 2 -- definitions/grib2/tables/20/3.7.table | 1 - definitions/grib2/tables/20/3.8.table | 2 -- definitions/grib2/tables/20/3.9.table | 1 - definitions/grib2/tables/20/4.0.table | 13 ------------ definitions/grib2/tables/20/4.1.0.table | 2 -- definitions/grib2/tables/20/4.1.1.table | 2 -- definitions/grib2/tables/20/4.1.10.table | 2 -- definitions/grib2/tables/20/4.1.2.table | 2 -- definitions/grib2/tables/20/4.1.3.table | 2 -- definitions/grib2/tables/20/4.10.table | 2 -- definitions/grib2/tables/20/4.11.table | 2 -- definitions/grib2/tables/20/4.12.table | 2 -- definitions/grib2/tables/20/4.13.table | 2 -- definitions/grib2/tables/20/4.14.table | 2 -- definitions/grib2/tables/20/4.15.table | 2 -- definitions/grib2/tables/20/4.2.0.0.table | 2 -- definitions/grib2/tables/20/4.2.0.1.table | 3 --- definitions/grib2/tables/20/4.2.0.13.table | 2 -- definitions/grib2/tables/20/4.2.0.14.table | 2 -- definitions/grib2/tables/20/4.2.0.15.table | 2 -- definitions/grib2/tables/20/4.2.0.16.table | 2 -- definitions/grib2/tables/20/4.2.0.18.table | 2 -- definitions/grib2/tables/20/4.2.0.19.table | 2 -- definitions/grib2/tables/20/4.2.0.190.table | 2 -- definitions/grib2/tables/20/4.2.0.191.table | 2 -- definitions/grib2/tables/20/4.2.0.2.table | 2 -- definitions/grib2/tables/20/4.2.0.20.table | 4 ---- definitions/grib2/tables/20/4.2.0.3.table | 2 -- definitions/grib2/tables/20/4.2.0.4.table | 3 --- definitions/grib2/tables/20/4.2.0.5.table | 2 -- definitions/grib2/tables/20/4.2.0.6.table | 3 --- definitions/grib2/tables/20/4.2.0.7.table | 2 -- definitions/grib2/tables/20/4.2.1.0.table | 2 -- definitions/grib2/tables/20/4.2.1.1.table | 2 -- definitions/grib2/tables/20/4.2.10.0.table | 2 -- definitions/grib2/tables/20/4.2.10.1.table | 2 -- definitions/grib2/tables/20/4.2.10.191.table | 2 -- definitions/grib2/tables/20/4.2.10.2.table | 2 -- definitions/grib2/tables/20/4.2.10.3.table | 2 -- definitions/grib2/tables/20/4.2.10.4.table | 3 --- definitions/grib2/tables/20/4.2.2.0.table | 2 -- definitions/grib2/tables/20/4.2.2.3.table | 2 -- definitions/grib2/tables/20/4.2.2.4.table | 2 -- definitions/grib2/tables/20/4.2.3.0.table | 2 -- definitions/grib2/tables/20/4.2.3.1.table | 3 --- definitions/grib2/tables/20/4.201.table | 2 -- definitions/grib2/tables/20/4.202.table | 2 -- definitions/grib2/tables/20/4.203.table | 2 -- definitions/grib2/tables/20/4.204.table | 2 -- definitions/grib2/tables/20/4.205.table | 2 -- definitions/grib2/tables/20/4.206.table | 2 -- definitions/grib2/tables/20/4.207.table | 2 -- definitions/grib2/tables/20/4.208.table | 2 -- definitions/grib2/tables/20/4.209.table | 2 -- definitions/grib2/tables/20/4.210.table | 2 -- definitions/grib2/tables/20/4.211.table | 2 -- definitions/grib2/tables/20/4.212.table | 2 -- definitions/grib2/tables/20/4.213.table | 2 -- definitions/grib2/tables/20/4.215.table | 4 ---- definitions/grib2/tables/20/4.216.table | 1 - definitions/grib2/tables/20/4.217.table | 2 -- definitions/grib2/tables/20/4.218.table | 3 --- definitions/grib2/tables/20/4.219.table | 2 -- definitions/grib2/tables/20/4.220.table | 2 -- definitions/grib2/tables/20/4.221.table | 2 -- definitions/grib2/tables/20/4.222.table | 2 -- definitions/grib2/tables/20/4.224.table | 4 ---- definitions/grib2/tables/20/4.227.table | 2 -- definitions/grib2/tables/20/4.230.table | 12 ----------- definitions/grib2/tables/20/4.240.table | 2 -- definitions/grib2/tables/20/4.241.table | 2 -- definitions/grib2/tables/20/4.242.table | 2 -- definitions/grib2/tables/20/4.243.table | 2 -- definitions/grib2/tables/20/4.3.table | 2 -- definitions/grib2/tables/20/4.4.table | 3 --- definitions/grib2/tables/20/4.5.table | 9 --------- definitions/grib2/tables/20/4.6.table | 2 -- definitions/grib2/tables/20/4.7.table | 2 -- definitions/grib2/tables/20/4.8.table | 2 -- definitions/grib2/tables/20/4.9.table | 2 -- definitions/grib2/tables/20/4.91.table | 2 -- definitions/grib2/tables/20/5.0.table | 5 ----- definitions/grib2/tables/20/5.1.table | 2 -- definitions/grib2/tables/20/5.2.table | 3 --- definitions/grib2/tables/20/5.3.table | 2 -- definitions/grib2/tables/20/5.4.table | 2 -- definitions/grib2/tables/20/5.40.table | 1 - definitions/grib2/tables/20/5.5.table | 2 -- definitions/grib2/tables/20/5.6.table | 2 -- definitions/grib2/tables/20/5.7.table | 1 - definitions/grib2/tables/21/0.0.table | 3 --- definitions/grib2/tables/21/1.2.table | 2 -- definitions/grib2/tables/21/1.3.table | 2 -- definitions/grib2/tables/21/1.4.table | 2 -- definitions/grib2/tables/21/1.5.table | 2 -- definitions/grib2/tables/21/1.6.table | 2 -- definitions/grib2/tables/21/3.0.table | 2 -- definitions/grib2/tables/21/3.1.table | 15 -------------- definitions/grib2/tables/21/3.10.table | 1 - definitions/grib2/tables/21/3.11.table | 1 - definitions/grib2/tables/21/3.15.table | 5 ----- definitions/grib2/tables/21/3.2.table | 2 -- definitions/grib2/tables/21/3.20.table | 2 -- definitions/grib2/tables/21/3.21.table | 3 --- definitions/grib2/tables/21/3.3.table | 2 -- definitions/grib2/tables/21/3.7.table | 1 - definitions/grib2/tables/21/3.8.table | 2 -- definitions/grib2/tables/21/3.9.table | 1 - definitions/grib2/tables/21/4.0.table | 13 ------------ definitions/grib2/tables/21/4.1.0.table | 2 -- definitions/grib2/tables/21/4.1.1.table | 2 -- definitions/grib2/tables/21/4.1.10.table | 2 -- definitions/grib2/tables/21/4.1.2.table | 2 -- definitions/grib2/tables/21/4.1.3.table | 2 -- definitions/grib2/tables/21/4.10.table | 2 -- definitions/grib2/tables/21/4.11.table | 2 -- definitions/grib2/tables/21/4.12.table | 2 -- definitions/grib2/tables/21/4.13.table | 2 -- definitions/grib2/tables/21/4.14.table | 2 -- definitions/grib2/tables/21/4.15.table | 2 -- definitions/grib2/tables/21/4.16.table | 2 -- definitions/grib2/tables/21/4.2.0.0.table | 2 -- definitions/grib2/tables/21/4.2.0.1.table | 3 --- definitions/grib2/tables/21/4.2.0.13.table | 2 -- definitions/grib2/tables/21/4.2.0.14.table | 2 -- definitions/grib2/tables/21/4.2.0.15.table | 2 -- definitions/grib2/tables/21/4.2.0.16.table | 2 -- definitions/grib2/tables/21/4.2.0.18.table | 2 -- definitions/grib2/tables/21/4.2.0.19.table | 2 -- definitions/grib2/tables/21/4.2.0.190.table | 2 -- definitions/grib2/tables/21/4.2.0.191.table | 2 -- definitions/grib2/tables/21/4.2.0.2.table | 2 -- definitions/grib2/tables/21/4.2.0.20.table | 4 ---- definitions/grib2/tables/21/4.2.0.3.table | 2 -- definitions/grib2/tables/21/4.2.0.4.table | 3 --- definitions/grib2/tables/21/4.2.0.5.table | 2 -- definitions/grib2/tables/21/4.2.0.6.table | 3 --- definitions/grib2/tables/21/4.2.0.7.table | 2 -- definitions/grib2/tables/21/4.2.1.0.table | 2 -- definitions/grib2/tables/21/4.2.1.1.table | 2 -- definitions/grib2/tables/21/4.2.10.0.table | 2 -- definitions/grib2/tables/21/4.2.10.1.table | 2 -- definitions/grib2/tables/21/4.2.10.191.table | 2 -- definitions/grib2/tables/21/4.2.10.2.table | 2 -- definitions/grib2/tables/21/4.2.10.3.table | 2 -- definitions/grib2/tables/21/4.2.10.4.table | 3 --- definitions/grib2/tables/21/4.2.2.0.table | 2 -- definitions/grib2/tables/21/4.2.2.3.table | 2 -- definitions/grib2/tables/21/4.2.2.4.table | 2 -- definitions/grib2/tables/21/4.2.3.0.table | 2 -- definitions/grib2/tables/21/4.2.3.1.table | 3 --- definitions/grib2/tables/21/4.201.table | 2 -- definitions/grib2/tables/21/4.202.table | 2 -- definitions/grib2/tables/21/4.203.table | 2 -- definitions/grib2/tables/21/4.204.table | 2 -- definitions/grib2/tables/21/4.205.table | 2 -- definitions/grib2/tables/21/4.206.table | 2 -- definitions/grib2/tables/21/4.207.table | 2 -- definitions/grib2/tables/21/4.208.table | 2 -- definitions/grib2/tables/21/4.209.table | 2 -- definitions/grib2/tables/21/4.210.table | 2 -- definitions/grib2/tables/21/4.211.table | 2 -- definitions/grib2/tables/21/4.212.table | 2 -- definitions/grib2/tables/21/4.213.table | 2 -- definitions/grib2/tables/21/4.215.table | 4 ---- definitions/grib2/tables/21/4.216.table | 1 - definitions/grib2/tables/21/4.217.table | 2 -- definitions/grib2/tables/21/4.218.table | 3 --- definitions/grib2/tables/21/4.219.table | 2 -- definitions/grib2/tables/21/4.220.table | 2 -- definitions/grib2/tables/21/4.221.table | 2 -- definitions/grib2/tables/21/4.222.table | 2 -- definitions/grib2/tables/21/4.224.table | 4 ---- definitions/grib2/tables/21/4.227.table | 2 -- definitions/grib2/tables/21/4.230.table | 12 ----------- definitions/grib2/tables/21/4.233.table | 12 ----------- definitions/grib2/tables/21/4.238.table | 2 -- definitions/grib2/tables/21/4.240.table | 2 -- definitions/grib2/tables/21/4.241.table | 2 -- definitions/grib2/tables/21/4.242.table | 2 -- definitions/grib2/tables/21/4.243.table | 2 -- definitions/grib2/tables/21/4.244.table | 2 -- definitions/grib2/tables/21/4.3.table | 2 -- definitions/grib2/tables/21/4.4.table | 3 --- definitions/grib2/tables/21/4.5.table | 9 --------- definitions/grib2/tables/21/4.6.table | 2 -- definitions/grib2/tables/21/4.7.table | 2 -- definitions/grib2/tables/21/4.8.table | 2 -- definitions/grib2/tables/21/4.9.table | 2 -- definitions/grib2/tables/21/4.91.table | 2 -- definitions/grib2/tables/21/5.0.table | 5 ----- definitions/grib2/tables/21/5.1.table | 2 -- definitions/grib2/tables/21/5.2.table | 3 --- definitions/grib2/tables/21/5.3.table | 2 -- definitions/grib2/tables/21/5.4.table | 2 -- definitions/grib2/tables/21/5.40.table | 1 - definitions/grib2/tables/21/5.5.table | 2 -- definitions/grib2/tables/21/5.6.table | 2 -- definitions/grib2/tables/21/5.7.table | 1 - definitions/grib2/tables/22/0.0.table | 3 --- definitions/grib2/tables/22/1.2.table | 2 -- definitions/grib2/tables/22/1.3.table | 2 -- definitions/grib2/tables/22/1.4.table | 2 -- definitions/grib2/tables/22/1.5.table | 2 -- definitions/grib2/tables/22/1.6.table | 2 -- definitions/grib2/tables/22/3.0.table | 2 -- definitions/grib2/tables/22/3.1.table | 19 ------------------ definitions/grib2/tables/22/3.10.table | 1 - definitions/grib2/tables/22/3.11.table | 1 - definitions/grib2/tables/22/3.15.table | 5 ----- definitions/grib2/tables/22/3.2.table | 2 -- definitions/grib2/tables/22/3.20.table | 2 -- definitions/grib2/tables/22/3.21.table | 3 --- definitions/grib2/tables/22/3.25.table | 5 ----- definitions/grib2/tables/22/3.3.table | 2 -- definitions/grib2/tables/22/3.7.table | 1 - definitions/grib2/tables/22/3.8.table | 2 -- definitions/grib2/tables/22/3.9.table | 1 - definitions/grib2/tables/22/4.0.table | 13 ------------ definitions/grib2/tables/22/4.1.0.table | 2 -- definitions/grib2/tables/22/4.1.1.table | 2 -- definitions/grib2/tables/22/4.1.10.table | 2 -- definitions/grib2/tables/22/4.1.2.table | 2 -- definitions/grib2/tables/22/4.1.3.table | 2 -- definitions/grib2/tables/22/4.10.table | 2 -- definitions/grib2/tables/22/4.11.table | 2 -- definitions/grib2/tables/22/4.12.table | 2 -- definitions/grib2/tables/22/4.13.table | 2 -- definitions/grib2/tables/22/4.14.table | 2 -- definitions/grib2/tables/22/4.15.table | 2 -- definitions/grib2/tables/22/4.16.table | 2 -- definitions/grib2/tables/22/4.2.0.0.table | 2 -- definitions/grib2/tables/22/4.2.0.1.table | 3 --- definitions/grib2/tables/22/4.2.0.13.table | 2 -- definitions/grib2/tables/22/4.2.0.14.table | 2 -- definitions/grib2/tables/22/4.2.0.15.table | 2 -- definitions/grib2/tables/22/4.2.0.16.table | 2 -- definitions/grib2/tables/22/4.2.0.18.table | 2 -- definitions/grib2/tables/22/4.2.0.19.table | 2 -- definitions/grib2/tables/22/4.2.0.190.table | 2 -- definitions/grib2/tables/22/4.2.0.191.table | 2 -- definitions/grib2/tables/22/4.2.0.2.table | 2 -- definitions/grib2/tables/22/4.2.0.20.table | 4 ---- definitions/grib2/tables/22/4.2.0.3.table | 2 -- definitions/grib2/tables/22/4.2.0.4.table | 3 --- definitions/grib2/tables/22/4.2.0.5.table | 2 -- definitions/grib2/tables/22/4.2.0.6.table | 3 --- definitions/grib2/tables/22/4.2.0.7.table | 2 -- definitions/grib2/tables/22/4.2.1.0.table | 2 -- definitions/grib2/tables/22/4.2.1.1.table | 2 -- definitions/grib2/tables/22/4.2.10.0.table | 3 --- definitions/grib2/tables/22/4.2.10.1.table | 2 -- definitions/grib2/tables/22/4.2.10.191.table | 2 -- definitions/grib2/tables/22/4.2.10.2.table | 2 -- definitions/grib2/tables/22/4.2.10.3.table | 2 -- definitions/grib2/tables/22/4.2.10.4.table | 3 --- definitions/grib2/tables/22/4.2.2.0.table | 2 -- definitions/grib2/tables/22/4.2.2.3.table | 2 -- definitions/grib2/tables/22/4.2.2.4.table | 2 -- definitions/grib2/tables/22/4.2.3.0.table | 2 -- definitions/grib2/tables/22/4.2.3.1.table | 4 ---- definitions/grib2/tables/22/4.201.table | 2 -- definitions/grib2/tables/22/4.202.table | 2 -- definitions/grib2/tables/22/4.203.table | 2 -- definitions/grib2/tables/22/4.204.table | 2 -- definitions/grib2/tables/22/4.205.table | 2 -- definitions/grib2/tables/22/4.206.table | 2 -- definitions/grib2/tables/22/4.207.table | 2 -- definitions/grib2/tables/22/4.208.table | 2 -- definitions/grib2/tables/22/4.209.table | 2 -- definitions/grib2/tables/22/4.210.table | 2 -- definitions/grib2/tables/22/4.211.table | 2 -- definitions/grib2/tables/22/4.212.table | 2 -- definitions/grib2/tables/22/4.213.table | 2 -- definitions/grib2/tables/22/4.215.table | 4 ---- definitions/grib2/tables/22/4.216.table | 1 - definitions/grib2/tables/22/4.217.table | 2 -- definitions/grib2/tables/22/4.218.table | 3 --- definitions/grib2/tables/22/4.219.table | 2 -- definitions/grib2/tables/22/4.220.table | 2 -- definitions/grib2/tables/22/4.221.table | 2 -- definitions/grib2/tables/22/4.222.table | 2 -- definitions/grib2/tables/22/4.224.table | 4 ---- definitions/grib2/tables/22/4.227.table | 2 -- definitions/grib2/tables/22/4.230.table | 15 -------------- definitions/grib2/tables/22/4.233.table | 15 -------------- definitions/grib2/tables/22/4.240.table | 2 -- definitions/grib2/tables/22/4.241.table | 2 -- definitions/grib2/tables/22/4.242.table | 2 -- definitions/grib2/tables/22/4.243.table | 2 -- definitions/grib2/tables/22/4.244.table | 2 -- definitions/grib2/tables/22/4.3.table | 2 -- definitions/grib2/tables/22/4.4.table | 3 --- definitions/grib2/tables/22/4.5.table | 9 --------- definitions/grib2/tables/22/4.6.table | 2 -- definitions/grib2/tables/22/4.7.table | 2 -- definitions/grib2/tables/22/4.8.table | 2 -- definitions/grib2/tables/22/4.9.table | 2 -- definitions/grib2/tables/22/4.91.table | 2 -- definitions/grib2/tables/22/5.0.table | 7 ------- definitions/grib2/tables/22/5.1.table | 2 -- definitions/grib2/tables/22/5.2.table | 3 --- definitions/grib2/tables/22/5.25.table | 4 ---- definitions/grib2/tables/22/5.26.table | 1 - definitions/grib2/tables/22/5.3.table | 2 -- definitions/grib2/tables/22/5.4.table | 2 -- definitions/grib2/tables/22/5.40.table | 1 - definitions/grib2/tables/22/5.5.table | 2 -- definitions/grib2/tables/22/5.6.table | 2 -- definitions/grib2/tables/22/5.7.table | 1 - definitions/grib2/tables/23/0.0.table | 3 --- definitions/grib2/tables/23/1.2.table | 2 -- definitions/grib2/tables/23/1.3.table | 2 -- definitions/grib2/tables/23/1.4.table | 2 -- definitions/grib2/tables/23/1.5.table | 2 -- definitions/grib2/tables/23/1.6.table | 2 -- definitions/grib2/tables/23/3.0.table | 2 -- definitions/grib2/tables/23/3.1.table | 19 ------------------ definitions/grib2/tables/23/3.10.table | 1 - definitions/grib2/tables/23/3.11.table | 1 - definitions/grib2/tables/23/3.15.table | 5 ----- definitions/grib2/tables/23/3.2.table | 2 -- definitions/grib2/tables/23/3.20.table | 2 -- definitions/grib2/tables/23/3.21.table | 3 --- definitions/grib2/tables/23/3.25.table | 5 ----- definitions/grib2/tables/23/3.3.table | 2 -- definitions/grib2/tables/23/3.7.table | 1 - definitions/grib2/tables/23/3.8.table | 2 -- definitions/grib2/tables/23/3.9.table | 1 - definitions/grib2/tables/23/4.0.table | 13 ------------ definitions/grib2/tables/23/4.1.0.table | 2 -- definitions/grib2/tables/23/4.1.1.table | 2 -- definitions/grib2/tables/23/4.1.10.table | 2 -- definitions/grib2/tables/23/4.1.2.table | 2 -- definitions/grib2/tables/23/4.1.3.table | 2 -- definitions/grib2/tables/23/4.10.table | 2 -- definitions/grib2/tables/23/4.11.table | 2 -- definitions/grib2/tables/23/4.12.table | 2 -- definitions/grib2/tables/23/4.13.table | 2 -- definitions/grib2/tables/23/4.14.table | 2 -- definitions/grib2/tables/23/4.15.table | 2 -- definitions/grib2/tables/23/4.16.table | 2 -- definitions/grib2/tables/23/4.2.0.0.table | 2 -- definitions/grib2/tables/23/4.2.0.1.table | 3 --- definitions/grib2/tables/23/4.2.0.13.table | 2 -- definitions/grib2/tables/23/4.2.0.14.table | 2 -- definitions/grib2/tables/23/4.2.0.15.table | 2 -- definitions/grib2/tables/23/4.2.0.16.table | 2 -- definitions/grib2/tables/23/4.2.0.18.table | 2 -- definitions/grib2/tables/23/4.2.0.19.table | 2 -- definitions/grib2/tables/23/4.2.0.190.table | 2 -- definitions/grib2/tables/23/4.2.0.191.table | 2 -- definitions/grib2/tables/23/4.2.0.2.table | 2 -- definitions/grib2/tables/23/4.2.0.20.table | 4 ---- definitions/grib2/tables/23/4.2.0.3.table | 2 -- definitions/grib2/tables/23/4.2.0.4.table | 3 --- definitions/grib2/tables/23/4.2.0.5.table | 2 -- definitions/grib2/tables/23/4.2.0.6.table | 3 --- definitions/grib2/tables/23/4.2.0.7.table | 2 -- definitions/grib2/tables/23/4.2.1.0.table | 2 -- definitions/grib2/tables/23/4.2.1.1.table | 2 -- definitions/grib2/tables/23/4.2.10.0.table | 3 --- definitions/grib2/tables/23/4.2.10.1.table | 2 -- definitions/grib2/tables/23/4.2.10.191.table | 2 -- definitions/grib2/tables/23/4.2.10.2.table | 2 -- definitions/grib2/tables/23/4.2.10.3.table | 2 -- definitions/grib2/tables/23/4.2.10.4.table | 3 --- definitions/grib2/tables/23/4.2.2.0.table | 2 -- definitions/grib2/tables/23/4.2.2.3.table | 2 -- definitions/grib2/tables/23/4.2.2.4.table | 2 -- definitions/grib2/tables/23/4.2.3.0.table | 2 -- definitions/grib2/tables/23/4.2.3.1.table | 4 ---- definitions/grib2/tables/23/4.201.table | 2 -- definitions/grib2/tables/23/4.202.table | 2 -- definitions/grib2/tables/23/4.203.table | 2 -- definitions/grib2/tables/23/4.204.table | 2 -- definitions/grib2/tables/23/4.205.table | 2 -- definitions/grib2/tables/23/4.206.table | 2 -- definitions/grib2/tables/23/4.207.table | 2 -- definitions/grib2/tables/23/4.208.table | 2 -- definitions/grib2/tables/23/4.209.table | 2 -- definitions/grib2/tables/23/4.210.table | 2 -- definitions/grib2/tables/23/4.211.table | 2 -- definitions/grib2/tables/23/4.212.table | 2 -- definitions/grib2/tables/23/4.213.table | 2 -- definitions/grib2/tables/23/4.215.table | 4 ---- definitions/grib2/tables/23/4.216.table | 1 - definitions/grib2/tables/23/4.217.table | 2 -- definitions/grib2/tables/23/4.218.table | 3 --- definitions/grib2/tables/23/4.219.table | 2 -- definitions/grib2/tables/23/4.220.table | 2 -- definitions/grib2/tables/23/4.221.table | 2 -- definitions/grib2/tables/23/4.222.table | 2 -- definitions/grib2/tables/23/4.224.table | 4 ---- definitions/grib2/tables/23/4.227.table | 2 -- definitions/grib2/tables/23/4.230.table | 15 -------------- definitions/grib2/tables/23/4.233.table | 15 -------------- definitions/grib2/tables/23/4.240.table | 2 -- definitions/grib2/tables/23/4.241.table | 2 -- definitions/grib2/tables/23/4.242.table | 2 -- definitions/grib2/tables/23/4.243.table | 2 -- definitions/grib2/tables/23/4.244.table | 2 -- definitions/grib2/tables/23/4.3.table | 2 -- definitions/grib2/tables/23/4.4.table | 3 --- definitions/grib2/tables/23/4.5.table | 9 --------- definitions/grib2/tables/23/4.6.table | 2 -- definitions/grib2/tables/23/4.7.table | 2 -- definitions/grib2/tables/23/4.8.table | 2 -- definitions/grib2/tables/23/4.9.table | 2 -- definitions/grib2/tables/23/4.91.table | 2 -- definitions/grib2/tables/23/5.0.table | 7 ------- definitions/grib2/tables/23/5.1.table | 2 -- definitions/grib2/tables/23/5.2.table | 3 --- definitions/grib2/tables/23/5.25.table | 4 ---- definitions/grib2/tables/23/5.26.table | 1 - definitions/grib2/tables/23/5.3.table | 2 -- definitions/grib2/tables/23/5.4.table | 2 -- definitions/grib2/tables/23/5.40.table | 1 - definitions/grib2/tables/23/5.5.table | 2 -- definitions/grib2/tables/23/5.6.table | 2 -- definitions/grib2/tables/23/5.7.table | 1 - definitions/grib2/tables/24/0.0.table | 3 --- definitions/grib2/tables/24/1.2.table | 2 -- definitions/grib2/tables/24/1.3.table | 2 -- definitions/grib2/tables/24/1.4.table | 2 -- definitions/grib2/tables/24/1.5.table | 2 -- definitions/grib2/tables/24/1.6.table | 2 -- definitions/grib2/tables/24/3.0.table | 2 -- definitions/grib2/tables/24/3.1.table | 19 ------------------ definitions/grib2/tables/24/3.10.table | 1 - definitions/grib2/tables/24/3.11.table | 1 - definitions/grib2/tables/24/3.15.table | 5 ----- definitions/grib2/tables/24/3.2.table | 2 -- definitions/grib2/tables/24/3.20.table | 2 -- definitions/grib2/tables/24/3.21.table | 3 --- definitions/grib2/tables/24/3.25.table | 5 ----- definitions/grib2/tables/24/3.3.table | 2 -- definitions/grib2/tables/24/3.7.table | 1 - definitions/grib2/tables/24/3.8.table | 2 -- definitions/grib2/tables/24/3.9.table | 1 - definitions/grib2/tables/24/4.0.table | 14 ------------- definitions/grib2/tables/24/4.1.0.table | 2 -- definitions/grib2/tables/24/4.1.1.table | 2 -- definitions/grib2/tables/24/4.1.10.table | 2 -- definitions/grib2/tables/24/4.1.2.table | 2 -- definitions/grib2/tables/24/4.1.3.table | 2 -- definitions/grib2/tables/24/4.10.table | 2 -- definitions/grib2/tables/24/4.11.table | 2 -- definitions/grib2/tables/24/4.12.table | 2 -- definitions/grib2/tables/24/4.13.table | 2 -- definitions/grib2/tables/24/4.14.table | 2 -- definitions/grib2/tables/24/4.15.table | 2 -- definitions/grib2/tables/24/4.16.table | 2 -- definitions/grib2/tables/24/4.2.0.0.table | 2 -- definitions/grib2/tables/24/4.2.0.1.table | 4 ---- definitions/grib2/tables/24/4.2.0.13.table | 2 -- definitions/grib2/tables/24/4.2.0.14.table | 2 -- definitions/grib2/tables/24/4.2.0.15.table | 2 -- definitions/grib2/tables/24/4.2.0.16.table | 2 -- definitions/grib2/tables/24/4.2.0.18.table | 2 -- definitions/grib2/tables/24/4.2.0.19.table | 2 -- definitions/grib2/tables/24/4.2.0.190.table | 2 -- definitions/grib2/tables/24/4.2.0.191.table | 2 -- definitions/grib2/tables/24/4.2.0.2.table | 2 -- definitions/grib2/tables/24/4.2.0.20.table | 4 ---- definitions/grib2/tables/24/4.2.0.3.table | 2 -- definitions/grib2/tables/24/4.2.0.4.table | 3 --- definitions/grib2/tables/24/4.2.0.5.table | 2 -- definitions/grib2/tables/24/4.2.0.6.table | 3 --- definitions/grib2/tables/24/4.2.0.7.table | 2 -- definitions/grib2/tables/24/4.2.1.0.table | 2 -- definitions/grib2/tables/24/4.2.1.1.table | 2 -- definitions/grib2/tables/24/4.2.10.0.table | 2 -- definitions/grib2/tables/24/4.2.10.1.table | 2 -- definitions/grib2/tables/24/4.2.10.191.table | 2 -- definitions/grib2/tables/24/4.2.10.2.table | 2 -- definitions/grib2/tables/24/4.2.10.3.table | 2 -- definitions/grib2/tables/24/4.2.10.4.table | 3 --- definitions/grib2/tables/24/4.2.2.0.table | 2 -- definitions/grib2/tables/24/4.2.2.3.table | 2 -- definitions/grib2/tables/24/4.2.2.4.table | 2 -- definitions/grib2/tables/24/4.2.3.0.table | 2 -- definitions/grib2/tables/24/4.2.3.1.table | 4 ---- definitions/grib2/tables/24/4.201.table | 2 -- definitions/grib2/tables/24/4.202.table | 2 -- definitions/grib2/tables/24/4.203.table | 2 -- definitions/grib2/tables/24/4.204.table | 2 -- definitions/grib2/tables/24/4.205.table | 2 -- definitions/grib2/tables/24/4.206.table | 2 -- definitions/grib2/tables/24/4.207.table | 2 -- definitions/grib2/tables/24/4.208.table | 2 -- definitions/grib2/tables/24/4.209.table | 2 -- definitions/grib2/tables/24/4.210.table | 2 -- definitions/grib2/tables/24/4.211.table | 2 -- definitions/grib2/tables/24/4.212.table | 2 -- definitions/grib2/tables/24/4.213.table | 2 -- definitions/grib2/tables/24/4.215.table | 4 ---- definitions/grib2/tables/24/4.216.table | 1 - definitions/grib2/tables/24/4.217.table | 2 -- definitions/grib2/tables/24/4.218.table | 3 --- definitions/grib2/tables/24/4.219.table | 2 -- definitions/grib2/tables/24/4.220.table | 2 -- definitions/grib2/tables/24/4.221.table | 2 -- definitions/grib2/tables/24/4.222.table | 2 -- definitions/grib2/tables/24/4.224.table | 4 ---- definitions/grib2/tables/24/4.227.table | 2 -- definitions/grib2/tables/24/4.230.table | 15 -------------- definitions/grib2/tables/24/4.233.table | 15 -------------- definitions/grib2/tables/24/4.238.table | 2 -- definitions/grib2/tables/24/4.240.table | 2 -- definitions/grib2/tables/24/4.241.table | 2 -- definitions/grib2/tables/24/4.242.table | 2 -- definitions/grib2/tables/24/4.243.table | 2 -- definitions/grib2/tables/24/4.244.table | 2 -- definitions/grib2/tables/24/4.3.table | 2 -- definitions/grib2/tables/24/4.4.table | 3 --- definitions/grib2/tables/24/4.5.table | 9 --------- definitions/grib2/tables/24/4.6.table | 2 -- definitions/grib2/tables/24/4.7.table | 2 -- definitions/grib2/tables/24/4.8.table | 2 -- definitions/grib2/tables/24/4.9.table | 2 -- definitions/grib2/tables/24/4.91.table | 2 -- definitions/grib2/tables/24/5.0.table | 7 ------- definitions/grib2/tables/24/5.1.table | 2 -- definitions/grib2/tables/24/5.2.table | 3 --- definitions/grib2/tables/24/5.25.table | 4 ---- definitions/grib2/tables/24/5.26.table | 1 - definitions/grib2/tables/24/5.3.table | 2 -- definitions/grib2/tables/24/5.4.table | 2 -- definitions/grib2/tables/24/5.40.table | 1 - definitions/grib2/tables/24/5.5.table | 2 -- definitions/grib2/tables/24/5.6.table | 2 -- definitions/grib2/tables/24/5.7.table | 1 - definitions/grib2/tables/25/0.0.table | 4 ---- definitions/grib2/tables/25/1.2.table | 2 -- definitions/grib2/tables/25/1.3.table | 2 -- definitions/grib2/tables/25/1.4.table | 2 -- definitions/grib2/tables/25/1.5.table | 2 -- definitions/grib2/tables/25/1.6.table | 2 -- definitions/grib2/tables/25/3.0.table | 2 -- definitions/grib2/tables/25/3.1.table | 19 ------------------ definitions/grib2/tables/25/3.10.table | 1 - definitions/grib2/tables/25/3.11.table | 1 - definitions/grib2/tables/25/3.15.table | 5 ----- definitions/grib2/tables/25/3.2.table | 2 -- definitions/grib2/tables/25/3.20.table | 2 -- definitions/grib2/tables/25/3.21.table | 3 --- definitions/grib2/tables/25/3.25.table | 5 ----- definitions/grib2/tables/25/3.3.table | 2 -- definitions/grib2/tables/25/3.7.table | 1 - definitions/grib2/tables/25/3.8.table | 2 -- definitions/grib2/tables/25/3.9.table | 1 - definitions/grib2/tables/25/4.0.table | 14 ------------- definitions/grib2/tables/25/4.1.0.table | 2 -- definitions/grib2/tables/25/4.1.1.table | 2 -- definitions/grib2/tables/25/4.1.10.table | 2 -- definitions/grib2/tables/25/4.1.2.table | 2 -- definitions/grib2/tables/25/4.1.20.table | 2 -- definitions/grib2/tables/25/4.1.3.table | 2 -- definitions/grib2/tables/25/4.1.4.table | 2 -- definitions/grib2/tables/25/4.10.table | 2 -- definitions/grib2/tables/25/4.11.table | 2 -- definitions/grib2/tables/25/4.12.table | 2 -- definitions/grib2/tables/25/4.13.table | 2 -- definitions/grib2/tables/25/4.14.table | 2 -- definitions/grib2/tables/25/4.15.table | 2 -- definitions/grib2/tables/25/4.16.table | 2 -- definitions/grib2/tables/25/4.2.0.0.table | 2 -- definitions/grib2/tables/25/4.2.0.1.table | 4 ---- definitions/grib2/tables/25/4.2.0.13.table | 2 -- definitions/grib2/tables/25/4.2.0.14.table | 2 -- definitions/grib2/tables/25/4.2.0.15.table | 2 -- definitions/grib2/tables/25/4.2.0.16.table | 2 -- definitions/grib2/tables/25/4.2.0.18.table | 2 -- definitions/grib2/tables/25/4.2.0.19.table | 2 -- definitions/grib2/tables/25/4.2.0.190.table | 2 -- definitions/grib2/tables/25/4.2.0.191.table | 2 -- definitions/grib2/tables/25/4.2.0.2.table | 2 -- definitions/grib2/tables/25/4.2.0.20.table | 4 ---- definitions/grib2/tables/25/4.2.0.3.table | 2 -- definitions/grib2/tables/25/4.2.0.4.table | 3 --- definitions/grib2/tables/25/4.2.0.5.table | 2 -- definitions/grib2/tables/25/4.2.0.6.table | 3 --- definitions/grib2/tables/25/4.2.0.7.table | 2 -- definitions/grib2/tables/25/4.2.1.0.table | 2 -- definitions/grib2/tables/25/4.2.1.1.table | 2 -- definitions/grib2/tables/25/4.2.10.0.table | 2 -- definitions/grib2/tables/25/4.2.10.1.table | 2 -- definitions/grib2/tables/25/4.2.10.191.table | 2 -- definitions/grib2/tables/25/4.2.10.2.table | 2 -- definitions/grib2/tables/25/4.2.10.3.table | 2 -- definitions/grib2/tables/25/4.2.10.4.table | 3 --- definitions/grib2/tables/25/4.2.2.0.table | 2 -- definitions/grib2/tables/25/4.2.2.3.table | 2 -- definitions/grib2/tables/25/4.2.2.4.table | 2 -- definitions/grib2/tables/25/4.2.2.5.table | 2 -- definitions/grib2/tables/25/4.2.20.0.table | 2 -- definitions/grib2/tables/25/4.2.20.1.table | 2 -- definitions/grib2/tables/25/4.2.20.2.table | 2 -- definitions/grib2/tables/25/4.2.3.0.table | 2 -- definitions/grib2/tables/25/4.2.3.1.table | 4 ---- definitions/grib2/tables/25/4.2.4.0.table | 2 -- definitions/grib2/tables/25/4.2.4.1.table | 2 -- definitions/grib2/tables/25/4.2.4.10.table | 2 -- definitions/grib2/tables/25/4.2.4.2.table | 2 -- definitions/grib2/tables/25/4.2.4.3.table | 2 -- definitions/grib2/tables/25/4.2.4.4.table | 2 -- definitions/grib2/tables/25/4.2.4.5.table | 2 -- definitions/grib2/tables/25/4.2.4.6.table | 2 -- definitions/grib2/tables/25/4.2.4.7.table | 2 -- definitions/grib2/tables/25/4.2.4.8.table | 2 -- definitions/grib2/tables/25/4.2.4.9.table | 2 -- definitions/grib2/tables/25/4.201.table | 2 -- definitions/grib2/tables/25/4.202.table | 2 -- definitions/grib2/tables/25/4.203.table | 2 -- definitions/grib2/tables/25/4.204.table | 2 -- definitions/grib2/tables/25/4.205.table | 2 -- definitions/grib2/tables/25/4.206.table | 2 -- definitions/grib2/tables/25/4.207.table | 2 -- definitions/grib2/tables/25/4.208.table | 2 -- definitions/grib2/tables/25/4.209.table | 2 -- definitions/grib2/tables/25/4.210.table | 2 -- definitions/grib2/tables/25/4.211.table | 2 -- definitions/grib2/tables/25/4.212.table | 2 -- definitions/grib2/tables/25/4.213.table | 2 -- definitions/grib2/tables/25/4.215.table | 4 ---- definitions/grib2/tables/25/4.216.table | 1 - definitions/grib2/tables/25/4.217.table | 2 -- definitions/grib2/tables/25/4.218.table | 3 --- definitions/grib2/tables/25/4.219.table | 2 -- definitions/grib2/tables/25/4.220.table | 2 -- definitions/grib2/tables/25/4.221.table | 2 -- definitions/grib2/tables/25/4.222.table | 2 -- definitions/grib2/tables/25/4.224.table | 4 ---- definitions/grib2/tables/25/4.227.table | 2 -- definitions/grib2/tables/25/4.228.table | 1 - definitions/grib2/tables/25/4.230.table | 15 -------------- definitions/grib2/tables/25/4.233.table | 15 -------------- definitions/grib2/tables/25/4.238.table | 2 -- definitions/grib2/tables/25/4.240.table | 2 -- definitions/grib2/tables/25/4.241.table | 2 -- definitions/grib2/tables/25/4.242.table | 2 -- definitions/grib2/tables/25/4.243.table | 2 -- definitions/grib2/tables/25/4.244.table | 2 -- definitions/grib2/tables/25/4.3.table | 2 -- definitions/grib2/tables/25/4.4.table | 3 --- definitions/grib2/tables/25/4.5.table | 10 ---------- definitions/grib2/tables/25/4.6.table | 2 -- definitions/grib2/tables/25/4.7.table | 2 -- definitions/grib2/tables/25/4.8.table | 2 -- definitions/grib2/tables/25/4.9.table | 2 -- definitions/grib2/tables/25/4.91.table | 2 -- definitions/grib2/tables/25/5.0.table | 7 ------- definitions/grib2/tables/25/5.1.table | 2 -- definitions/grib2/tables/25/5.2.table | 3 --- definitions/grib2/tables/25/5.25.table | 4 ---- definitions/grib2/tables/25/5.26.table | 1 - definitions/grib2/tables/25/5.3.table | 2 -- definitions/grib2/tables/25/5.4.table | 2 -- definitions/grib2/tables/25/5.40.table | 1 - definitions/grib2/tables/25/5.5.table | 2 -- definitions/grib2/tables/25/5.6.table | 2 -- definitions/grib2/tables/25/5.7.table | 1 - definitions/grib2/tables/26/0.0.table | 4 ---- definitions/grib2/tables/26/1.2.table | 2 -- definitions/grib2/tables/26/1.3.table | 2 -- definitions/grib2/tables/26/1.4.table | 2 -- definitions/grib2/tables/26/1.5.table | 2 -- definitions/grib2/tables/26/1.6.table | 2 -- definitions/grib2/tables/26/3.0.table | 2 -- definitions/grib2/tables/26/3.1.table | 19 ------------------ definitions/grib2/tables/26/3.10.table | 1 - definitions/grib2/tables/26/3.11.table | 1 - definitions/grib2/tables/26/3.15.table | 5 ----- definitions/grib2/tables/26/3.2.table | 2 -- definitions/grib2/tables/26/3.20.table | 2 -- definitions/grib2/tables/26/3.21.table | 3 --- definitions/grib2/tables/26/3.25.table | 5 ----- definitions/grib2/tables/26/3.3.table | 2 -- definitions/grib2/tables/26/3.7.table | 1 - definitions/grib2/tables/26/3.8.table | 2 -- definitions/grib2/tables/26/3.9.table | 1 - definitions/grib2/tables/26/4.0.table | 14 ------------- definitions/grib2/tables/26/4.1.0.table | 2 -- definitions/grib2/tables/26/4.1.1.table | 2 -- definitions/grib2/tables/26/4.1.10.table | 2 -- definitions/grib2/tables/26/4.1.2.table | 2 -- definitions/grib2/tables/26/4.1.20.table | 2 -- definitions/grib2/tables/26/4.1.3.table | 2 -- definitions/grib2/tables/26/4.1.4.table | 2 -- definitions/grib2/tables/26/4.10.table | 2 -- definitions/grib2/tables/26/4.11.table | 2 -- definitions/grib2/tables/26/4.12.table | 2 -- definitions/grib2/tables/26/4.13.table | 2 -- definitions/grib2/tables/26/4.14.table | 2 -- definitions/grib2/tables/26/4.15.table | 2 -- definitions/grib2/tables/26/4.16.table | 2 -- definitions/grib2/tables/26/4.2.0.0.table | 2 -- definitions/grib2/tables/26/4.2.0.1.table | 3 --- definitions/grib2/tables/26/4.2.0.13.table | 2 -- definitions/grib2/tables/26/4.2.0.14.table | 2 -- definitions/grib2/tables/26/4.2.0.15.table | 2 -- definitions/grib2/tables/26/4.2.0.16.table | 2 -- definitions/grib2/tables/26/4.2.0.18.table | 2 -- definitions/grib2/tables/26/4.2.0.19.table | 2 -- definitions/grib2/tables/26/4.2.0.190.table | 2 -- definitions/grib2/tables/26/4.2.0.191.table | 2 -- definitions/grib2/tables/26/4.2.0.2.table | 2 -- definitions/grib2/tables/26/4.2.0.20.table | 4 ---- definitions/grib2/tables/26/4.2.0.3.table | 2 -- definitions/grib2/tables/26/4.2.0.4.table | 3 --- definitions/grib2/tables/26/4.2.0.5.table | 2 -- definitions/grib2/tables/26/4.2.0.6.table | 3 --- definitions/grib2/tables/26/4.2.0.7.table | 2 -- definitions/grib2/tables/26/4.2.1.0.table | 2 -- definitions/grib2/tables/26/4.2.1.1.table | 2 -- definitions/grib2/tables/26/4.2.10.0.table | 2 -- definitions/grib2/tables/26/4.2.10.1.table | 2 -- definitions/grib2/tables/26/4.2.10.191.table | 2 -- definitions/grib2/tables/26/4.2.10.2.table | 2 -- definitions/grib2/tables/26/4.2.10.3.table | 2 -- definitions/grib2/tables/26/4.2.10.4.table | 3 --- definitions/grib2/tables/26/4.2.2.0.table | 2 -- definitions/grib2/tables/26/4.2.2.3.table | 2 -- definitions/grib2/tables/26/4.2.2.4.table | 2 -- definitions/grib2/tables/26/4.2.2.5.table | 2 -- definitions/grib2/tables/26/4.2.20.0.table | 2 -- definitions/grib2/tables/26/4.2.20.1.table | 2 -- definitions/grib2/tables/26/4.2.20.2.table | 2 -- definitions/grib2/tables/26/4.2.3.0.table | 2 -- definitions/grib2/tables/26/4.2.3.1.table | 4 ---- definitions/grib2/tables/26/4.2.4.0.table | 2 -- definitions/grib2/tables/26/4.2.4.1.table | 2 -- definitions/grib2/tables/26/4.2.4.10.table | 2 -- definitions/grib2/tables/26/4.2.4.2.table | 2 -- definitions/grib2/tables/26/4.2.4.3.table | 2 -- definitions/grib2/tables/26/4.2.4.4.table | 2 -- definitions/grib2/tables/26/4.2.4.5.table | 2 -- definitions/grib2/tables/26/4.2.4.6.table | 2 -- definitions/grib2/tables/26/4.2.4.7.table | 2 -- definitions/grib2/tables/26/4.2.4.8.table | 2 -- definitions/grib2/tables/26/4.2.4.9.table | 2 -- definitions/grib2/tables/26/4.201.table | 2 -- definitions/grib2/tables/26/4.202.table | 2 -- definitions/grib2/tables/26/4.203.table | 2 -- definitions/grib2/tables/26/4.204.table | 2 -- definitions/grib2/tables/26/4.205.table | 2 -- definitions/grib2/tables/26/4.206.table | 2 -- definitions/grib2/tables/26/4.207.table | 2 -- definitions/grib2/tables/26/4.208.table | 2 -- definitions/grib2/tables/26/4.209.table | 2 -- definitions/grib2/tables/26/4.210.table | 2 -- definitions/grib2/tables/26/4.211.table | 2 -- definitions/grib2/tables/26/4.212.table | 2 -- definitions/grib2/tables/26/4.213.table | 2 -- definitions/grib2/tables/26/4.214.table | 2 -- definitions/grib2/tables/26/4.215.table | 4 ---- definitions/grib2/tables/26/4.216.table | 1 - definitions/grib2/tables/26/4.217.table | 2 -- definitions/grib2/tables/26/4.218.table | 3 --- definitions/grib2/tables/26/4.219.table | 2 -- definitions/grib2/tables/26/4.220.table | 2 -- definitions/grib2/tables/26/4.221.table | 2 -- definitions/grib2/tables/26/4.222.table | 2 -- definitions/grib2/tables/26/4.224.table | 4 ---- definitions/grib2/tables/26/4.227.table | 2 -- definitions/grib2/tables/26/4.228.table | 1 - definitions/grib2/tables/26/4.230.table | 15 -------------- definitions/grib2/tables/26/4.233.table | 15 -------------- definitions/grib2/tables/26/4.238.table | 2 -- definitions/grib2/tables/26/4.240.table | 2 -- definitions/grib2/tables/26/4.241.table | 2 -- definitions/grib2/tables/26/4.242.table | 2 -- definitions/grib2/tables/26/4.243.table | 2 -- definitions/grib2/tables/26/4.244.table | 2 -- definitions/grib2/tables/26/4.246.table | 1 - definitions/grib2/tables/26/4.247.table | 1 - definitions/grib2/tables/26/4.3.table | 2 -- definitions/grib2/tables/26/4.4.table | 3 --- definitions/grib2/tables/26/4.5.table | 10 ---------- definitions/grib2/tables/26/4.6.table | 2 -- definitions/grib2/tables/26/4.7.table | 2 -- definitions/grib2/tables/26/4.8.table | 2 -- definitions/grib2/tables/26/4.9.table | 2 -- definitions/grib2/tables/26/4.91.table | 2 -- definitions/grib2/tables/26/5.0.table | 7 ------- definitions/grib2/tables/26/5.1.table | 2 -- definitions/grib2/tables/26/5.2.table | 3 --- definitions/grib2/tables/26/5.25.table | 4 ---- definitions/grib2/tables/26/5.26.table | 1 - definitions/grib2/tables/26/5.3.table | 2 -- definitions/grib2/tables/26/5.4.table | 2 -- definitions/grib2/tables/26/5.40.table | 1 - definitions/grib2/tables/26/5.5.table | 2 -- definitions/grib2/tables/26/5.6.table | 2 -- definitions/grib2/tables/26/5.7.table | 1 - definitions/grib2/tables/27/0.0.table | 4 ---- definitions/grib2/tables/27/1.2.table | 2 -- definitions/grib2/tables/27/1.3.table | 2 -- definitions/grib2/tables/27/1.4.table | 2 -- definitions/grib2/tables/27/1.5.table | 2 -- definitions/grib2/tables/27/1.6.table | 2 -- definitions/grib2/tables/27/3.0.table | 2 -- definitions/grib2/tables/27/3.1.table | 19 ------------------ definitions/grib2/tables/27/3.10.table | 1 - definitions/grib2/tables/27/3.11.table | 1 - definitions/grib2/tables/27/3.15.table | 5 ----- definitions/grib2/tables/27/3.2.table | 2 -- definitions/grib2/tables/27/3.20.table | 2 -- definitions/grib2/tables/27/3.21.table | 3 --- definitions/grib2/tables/27/3.25.table | 5 ----- definitions/grib2/tables/27/3.3.table | 2 -- definitions/grib2/tables/27/3.7.table | 1 - definitions/grib2/tables/27/3.8.table | 2 -- definitions/grib2/tables/27/3.9.table | 1 - definitions/grib2/tables/27/4.0.table | 14 ------------- definitions/grib2/tables/27/4.1.0.table | 2 -- definitions/grib2/tables/27/4.1.1.table | 2 -- definitions/grib2/tables/27/4.1.10.table | 2 -- definitions/grib2/tables/27/4.1.2.table | 2 -- definitions/grib2/tables/27/4.1.20.table | 2 -- definitions/grib2/tables/27/4.1.3.table | 2 -- definitions/grib2/tables/27/4.1.4.table | 2 -- definitions/grib2/tables/27/4.10.table | 2 -- definitions/grib2/tables/27/4.11.table | 2 -- definitions/grib2/tables/27/4.12.table | 2 -- definitions/grib2/tables/27/4.13.table | 2 -- definitions/grib2/tables/27/4.14.table | 2 -- definitions/grib2/tables/27/4.15.table | 2 -- definitions/grib2/tables/27/4.16.table | 2 -- definitions/grib2/tables/27/4.2.0.0.table | 2 -- definitions/grib2/tables/27/4.2.0.1.table | 3 --- definitions/grib2/tables/27/4.2.0.13.table | 2 -- definitions/grib2/tables/27/4.2.0.14.table | 2 -- definitions/grib2/tables/27/4.2.0.15.table | 2 -- definitions/grib2/tables/27/4.2.0.16.table | 2 -- definitions/grib2/tables/27/4.2.0.18.table | 2 -- definitions/grib2/tables/27/4.2.0.19.table | 2 -- definitions/grib2/tables/27/4.2.0.190.table | 2 -- definitions/grib2/tables/27/4.2.0.191.table | 2 -- definitions/grib2/tables/27/4.2.0.2.table | 2 -- definitions/grib2/tables/27/4.2.0.20.table | 4 ---- definitions/grib2/tables/27/4.2.0.3.table | 2 -- definitions/grib2/tables/27/4.2.0.4.table | 3 --- definitions/grib2/tables/27/4.2.0.5.table | 2 -- definitions/grib2/tables/27/4.2.0.6.table | 3 --- definitions/grib2/tables/27/4.2.0.7.table | 2 -- definitions/grib2/tables/27/4.2.1.0.table | 2 -- definitions/grib2/tables/27/4.2.1.1.table | 2 -- definitions/grib2/tables/27/4.2.1.2.table | 2 -- definitions/grib2/tables/27/4.2.10.0.table | 2 -- definitions/grib2/tables/27/4.2.10.1.table | 2 -- definitions/grib2/tables/27/4.2.10.191.table | 2 -- definitions/grib2/tables/27/4.2.10.2.table | 2 -- definitions/grib2/tables/27/4.2.10.3.table | 2 -- definitions/grib2/tables/27/4.2.10.4.table | 3 --- definitions/grib2/tables/27/4.2.2.0.table | 2 -- definitions/grib2/tables/27/4.2.2.3.table | 2 -- definitions/grib2/tables/27/4.2.2.4.table | 2 -- definitions/grib2/tables/27/4.2.2.5.table | 2 -- definitions/grib2/tables/27/4.2.20.0.table | 2 -- definitions/grib2/tables/27/4.2.20.1.table | 2 -- definitions/grib2/tables/27/4.2.20.2.table | 2 -- definitions/grib2/tables/27/4.2.3.0.table | 2 -- definitions/grib2/tables/27/4.2.3.1.table | 4 ---- definitions/grib2/tables/27/4.2.4.0.table | 2 -- definitions/grib2/tables/27/4.2.4.1.table | 2 -- definitions/grib2/tables/27/4.2.4.10.table | 2 -- definitions/grib2/tables/27/4.2.4.2.table | 2 -- definitions/grib2/tables/27/4.2.4.3.table | 2 -- definitions/grib2/tables/27/4.2.4.4.table | 2 -- definitions/grib2/tables/27/4.2.4.5.table | 2 -- definitions/grib2/tables/27/4.2.4.6.table | 2 -- definitions/grib2/tables/27/4.2.4.7.table | 2 -- definitions/grib2/tables/27/4.2.4.8.table | 2 -- definitions/grib2/tables/27/4.2.4.9.table | 2 -- definitions/grib2/tables/27/4.201.table | 2 -- definitions/grib2/tables/27/4.202.table | 2 -- definitions/grib2/tables/27/4.203.table | 2 -- definitions/grib2/tables/27/4.204.table | 2 -- definitions/grib2/tables/27/4.205.table | 2 -- definitions/grib2/tables/27/4.206.table | 2 -- definitions/grib2/tables/27/4.207.table | 2 -- definitions/grib2/tables/27/4.208.table | 2 -- definitions/grib2/tables/27/4.209.table | 2 -- definitions/grib2/tables/27/4.210.table | 2 -- definitions/grib2/tables/27/4.211.table | 2 -- definitions/grib2/tables/27/4.212.table | 2 -- definitions/grib2/tables/27/4.213.table | 2 -- definitions/grib2/tables/27/4.214.table | 2 -- definitions/grib2/tables/27/4.215.table | 4 ---- definitions/grib2/tables/27/4.216.table | 1 - definitions/grib2/tables/27/4.217.table | 2 -- definitions/grib2/tables/27/4.218.table | 3 --- definitions/grib2/tables/27/4.219.table | 2 -- definitions/grib2/tables/27/4.220.table | 2 -- definitions/grib2/tables/27/4.221.table | 2 -- definitions/grib2/tables/27/4.222.table | 2 -- definitions/grib2/tables/27/4.224.table | 4 ---- definitions/grib2/tables/27/4.227.table | 2 -- definitions/grib2/tables/27/4.228.table | 1 - definitions/grib2/tables/27/4.230.table | 15 -------------- definitions/grib2/tables/27/4.233.table | 15 -------------- definitions/grib2/tables/27/4.238.table | 2 -- definitions/grib2/tables/27/4.240.table | 2 -- definitions/grib2/tables/27/4.241.table | 2 -- definitions/grib2/tables/27/4.242.table | 2 -- definitions/grib2/tables/27/4.243.table | 2 -- definitions/grib2/tables/27/4.244.table | 2 -- definitions/grib2/tables/27/4.246.table | 1 - definitions/grib2/tables/27/4.247.table | 1 - definitions/grib2/tables/27/4.248.table | 2 -- definitions/grib2/tables/27/4.3.table | 2 -- definitions/grib2/tables/27/4.4.table | 3 --- definitions/grib2/tables/27/4.5.table | 10 ---------- definitions/grib2/tables/27/4.6.table | 2 -- definitions/grib2/tables/27/4.7.table | 2 -- definitions/grib2/tables/27/4.8.table | 2 -- definitions/grib2/tables/27/4.9.table | 2 -- definitions/grib2/tables/27/4.91.table | 2 -- definitions/grib2/tables/27/5.0.table | 7 ------- definitions/grib2/tables/27/5.1.table | 2 -- definitions/grib2/tables/27/5.2.table | 3 --- definitions/grib2/tables/27/5.25.table | 4 ---- definitions/grib2/tables/27/5.26.table | 1 - definitions/grib2/tables/27/5.3.table | 2 -- definitions/grib2/tables/27/5.4.table | 2 -- definitions/grib2/tables/27/5.40.table | 1 - definitions/grib2/tables/27/5.5.table | 2 -- definitions/grib2/tables/27/5.6.table | 2 -- definitions/grib2/tables/27/5.7.table | 1 - definitions/grib2/tables/28/0.0.table | 4 ---- definitions/grib2/tables/28/1.2.table | 2 -- definitions/grib2/tables/28/1.3.table | 2 -- definitions/grib2/tables/28/1.4.table | 2 -- definitions/grib2/tables/28/1.5.table | 2 -- definitions/grib2/tables/28/1.6.table | 2 -- definitions/grib2/tables/28/3.0.table | 2 -- definitions/grib2/tables/28/3.1.table | 19 ------------------ definitions/grib2/tables/28/3.10.table | 1 - definitions/grib2/tables/28/3.11.table | 1 - definitions/grib2/tables/28/3.15.table | 5 ----- definitions/grib2/tables/28/3.2.table | 2 -- definitions/grib2/tables/28/3.20.table | 2 -- definitions/grib2/tables/28/3.21.table | 3 --- definitions/grib2/tables/28/3.25.table | 5 ----- definitions/grib2/tables/28/3.3.table | 2 -- definitions/grib2/tables/28/3.7.table | 1 - definitions/grib2/tables/28/3.8.table | 2 -- definitions/grib2/tables/28/3.9.table | 1 - definitions/grib2/tables/28/4.0.table | 14 ------------- definitions/grib2/tables/28/4.1.0.table | 2 -- definitions/grib2/tables/28/4.1.1.table | 2 -- definitions/grib2/tables/28/4.1.10.table | 2 -- definitions/grib2/tables/28/4.1.2.table | 2 -- definitions/grib2/tables/28/4.1.20.table | 2 -- definitions/grib2/tables/28/4.1.3.table | 2 -- definitions/grib2/tables/28/4.1.4.table | 2 -- definitions/grib2/tables/28/4.10.table | 3 --- definitions/grib2/tables/28/4.11.table | 2 -- definitions/grib2/tables/28/4.12.table | 2 -- definitions/grib2/tables/28/4.13.table | 2 -- definitions/grib2/tables/28/4.14.table | 2 -- definitions/grib2/tables/28/4.15.table | 2 -- definitions/grib2/tables/28/4.16.table | 2 -- definitions/grib2/tables/28/4.2.0.0.table | 2 -- definitions/grib2/tables/28/4.2.0.1.table | 3 --- definitions/grib2/tables/28/4.2.0.13.table | 2 -- definitions/grib2/tables/28/4.2.0.14.table | 2 -- definitions/grib2/tables/28/4.2.0.15.table | 2 -- definitions/grib2/tables/28/4.2.0.16.table | 2 -- definitions/grib2/tables/28/4.2.0.18.table | 2 -- definitions/grib2/tables/28/4.2.0.19.table | 2 -- definitions/grib2/tables/28/4.2.0.190.table | 2 -- definitions/grib2/tables/28/4.2.0.191.table | 2 -- definitions/grib2/tables/28/4.2.0.2.table | 2 -- definitions/grib2/tables/28/4.2.0.20.table | 4 ---- definitions/grib2/tables/28/4.2.0.3.table | 2 -- definitions/grib2/tables/28/4.2.0.4.table | 3 --- definitions/grib2/tables/28/4.2.0.5.table | 2 -- definitions/grib2/tables/28/4.2.0.6.table | 3 --- definitions/grib2/tables/28/4.2.0.7.table | 2 -- definitions/grib2/tables/28/4.2.1.0.table | 2 -- definitions/grib2/tables/28/4.2.1.1.table | 2 -- definitions/grib2/tables/28/4.2.1.2.table | 2 -- definitions/grib2/tables/28/4.2.10.0.table | 2 -- definitions/grib2/tables/28/4.2.10.1.table | 2 -- definitions/grib2/tables/28/4.2.10.191.table | 2 -- definitions/grib2/tables/28/4.2.10.2.table | 2 -- definitions/grib2/tables/28/4.2.10.3.table | 2 -- definitions/grib2/tables/28/4.2.10.4.table | 3 --- definitions/grib2/tables/28/4.2.2.0.table | 2 -- definitions/grib2/tables/28/4.2.2.3.table | 2 -- definitions/grib2/tables/28/4.2.2.4.table | 2 -- definitions/grib2/tables/28/4.2.2.5.table | 2 -- definitions/grib2/tables/28/4.2.20.0.table | 2 -- definitions/grib2/tables/28/4.2.20.1.table | 2 -- definitions/grib2/tables/28/4.2.20.2.table | 2 -- definitions/grib2/tables/28/4.2.3.0.table | 2 -- definitions/grib2/tables/28/4.2.3.1.table | 4 ---- definitions/grib2/tables/28/4.2.4.0.table | 2 -- definitions/grib2/tables/28/4.2.4.1.table | 2 -- definitions/grib2/tables/28/4.2.4.10.table | 2 -- definitions/grib2/tables/28/4.2.4.2.table | 2 -- definitions/grib2/tables/28/4.2.4.3.table | 2 -- definitions/grib2/tables/28/4.2.4.4.table | 2 -- definitions/grib2/tables/28/4.2.4.5.table | 2 -- definitions/grib2/tables/28/4.2.4.6.table | 2 -- definitions/grib2/tables/28/4.2.4.7.table | 2 -- definitions/grib2/tables/28/4.2.4.8.table | 2 -- definitions/grib2/tables/28/4.2.4.9.table | 2 -- definitions/grib2/tables/28/4.201.table | 2 -- definitions/grib2/tables/28/4.202.table | 2 -- definitions/grib2/tables/28/4.203.table | 2 -- definitions/grib2/tables/28/4.204.table | 2 -- definitions/grib2/tables/28/4.205.table | 2 -- definitions/grib2/tables/28/4.206.table | 2 -- definitions/grib2/tables/28/4.207.table | 2 -- definitions/grib2/tables/28/4.208.table | 2 -- definitions/grib2/tables/28/4.209.table | 2 -- definitions/grib2/tables/28/4.210.table | 2 -- definitions/grib2/tables/28/4.211.table | 2 -- definitions/grib2/tables/28/4.212.table | 2 -- definitions/grib2/tables/28/4.213.table | 2 -- definitions/grib2/tables/28/4.214.table | 2 -- definitions/grib2/tables/28/4.215.table | 4 ---- definitions/grib2/tables/28/4.216.table | 1 - definitions/grib2/tables/28/4.217.table | 2 -- definitions/grib2/tables/28/4.218.table | 3 --- definitions/grib2/tables/28/4.219.table | 2 -- definitions/grib2/tables/28/4.220.table | 2 -- definitions/grib2/tables/28/4.221.table | 2 -- definitions/grib2/tables/28/4.222.table | 2 -- definitions/grib2/tables/28/4.224.table | 4 ---- definitions/grib2/tables/28/4.227.table | 2 -- definitions/grib2/tables/28/4.228.table | 1 - definitions/grib2/tables/28/4.230.table | 15 -------------- definitions/grib2/tables/28/4.233.table | 15 -------------- definitions/grib2/tables/28/4.238.table | 2 -- definitions/grib2/tables/28/4.240.table | 2 -- definitions/grib2/tables/28/4.241.table | 2 -- definitions/grib2/tables/28/4.242.table | 2 -- definitions/grib2/tables/28/4.243.table | 2 -- definitions/grib2/tables/28/4.244.table | 2 -- definitions/grib2/tables/28/4.246.table | 1 - definitions/grib2/tables/28/4.247.table | 1 - definitions/grib2/tables/28/4.248.table | 2 -- definitions/grib2/tables/28/4.249.table | 1 - definitions/grib2/tables/28/4.3.table | 2 -- definitions/grib2/tables/28/4.4.table | 3 --- definitions/grib2/tables/28/4.5.table | 10 ---------- definitions/grib2/tables/28/4.6.table | 2 -- definitions/grib2/tables/28/4.7.table | 2 -- definitions/grib2/tables/28/4.8.table | 2 -- definitions/grib2/tables/28/4.9.table | 2 -- definitions/grib2/tables/28/4.91.table | 2 -- definitions/grib2/tables/28/5.0.table | 7 ------- definitions/grib2/tables/28/5.1.table | 2 -- definitions/grib2/tables/28/5.2.table | 3 --- definitions/grib2/tables/28/5.25.table | 4 ---- definitions/grib2/tables/28/5.26.table | 1 - definitions/grib2/tables/28/5.3.table | 2 -- definitions/grib2/tables/28/5.4.table | 2 -- definitions/grib2/tables/28/5.40.table | 1 - definitions/grib2/tables/28/5.5.table | 2 -- definitions/grib2/tables/28/5.6.table | 2 -- definitions/grib2/tables/28/5.7.table | 1 - definitions/grib2/tables/29/0.0.table | 4 ---- definitions/grib2/tables/29/1.2.table | 2 -- definitions/grib2/tables/29/1.3.table | 2 -- definitions/grib2/tables/29/1.4.table | 2 -- definitions/grib2/tables/29/1.5.table | 2 -- definitions/grib2/tables/29/1.6.table | 2 -- definitions/grib2/tables/29/3.0.table | 2 -- definitions/grib2/tables/29/3.1.table | 19 ------------------ definitions/grib2/tables/29/3.10.table | 1 - definitions/grib2/tables/29/3.11.table | 1 - definitions/grib2/tables/29/3.15.table | 5 ----- definitions/grib2/tables/29/3.2.table | 2 -- definitions/grib2/tables/29/3.20.table | 2 -- definitions/grib2/tables/29/3.21.table | 3 --- definitions/grib2/tables/29/3.25.table | 5 ----- definitions/grib2/tables/29/3.3.table | 2 -- definitions/grib2/tables/29/3.7.table | 1 - definitions/grib2/tables/29/3.8.table | 2 -- definitions/grib2/tables/29/3.9.table | 1 - definitions/grib2/tables/29/4.0.table | 14 ------------- definitions/grib2/tables/29/4.1.0.table | 2 -- definitions/grib2/tables/29/4.1.1.table | 2 -- definitions/grib2/tables/29/4.1.10.table | 2 -- definitions/grib2/tables/29/4.1.2.table | 2 -- definitions/grib2/tables/29/4.1.20.table | 2 -- definitions/grib2/tables/29/4.1.3.table | 2 -- definitions/grib2/tables/29/4.1.4.table | 2 -- definitions/grib2/tables/29/4.10.table | 3 --- definitions/grib2/tables/29/4.11.table | 2 -- definitions/grib2/tables/29/4.12.table | 2 -- definitions/grib2/tables/29/4.13.table | 2 -- definitions/grib2/tables/29/4.14.table | 2 -- definitions/grib2/tables/29/4.15.table | 2 -- definitions/grib2/tables/29/4.16.table | 2 -- definitions/grib2/tables/29/4.2.0.0.table | 2 -- definitions/grib2/tables/29/4.2.0.1.table | 3 --- definitions/grib2/tables/29/4.2.0.13.table | 2 -- definitions/grib2/tables/29/4.2.0.14.table | 2 -- definitions/grib2/tables/29/4.2.0.15.table | 2 -- definitions/grib2/tables/29/4.2.0.16.table | 2 -- definitions/grib2/tables/29/4.2.0.18.table | 2 -- definitions/grib2/tables/29/4.2.0.19.table | 2 -- definitions/grib2/tables/29/4.2.0.190.table | 2 -- definitions/grib2/tables/29/4.2.0.191.table | 2 -- definitions/grib2/tables/29/4.2.0.2.table | 2 -- definitions/grib2/tables/29/4.2.0.20.table | 4 ---- definitions/grib2/tables/29/4.2.0.3.table | 2 -- definitions/grib2/tables/29/4.2.0.4.table | 3 --- definitions/grib2/tables/29/4.2.0.5.table | 2 -- definitions/grib2/tables/29/4.2.0.6.table | 3 --- definitions/grib2/tables/29/4.2.0.7.table | 2 -- definitions/grib2/tables/29/4.2.1.0.table | 2 -- definitions/grib2/tables/29/4.2.1.1.table | 2 -- definitions/grib2/tables/29/4.2.1.2.table | 2 -- definitions/grib2/tables/29/4.2.10.0.table | 2 -- definitions/grib2/tables/29/4.2.10.1.table | 2 -- definitions/grib2/tables/29/4.2.10.191.table | 2 -- definitions/grib2/tables/29/4.2.10.2.table | 2 -- definitions/grib2/tables/29/4.2.10.3.table | 2 -- definitions/grib2/tables/29/4.2.10.4.table | 3 --- definitions/grib2/tables/29/4.2.2.0.table | 2 -- definitions/grib2/tables/29/4.2.2.3.table | 2 -- definitions/grib2/tables/29/4.2.2.4.table | 2 -- definitions/grib2/tables/29/4.2.2.5.table | 2 -- definitions/grib2/tables/29/4.2.20.0.table | 2 -- definitions/grib2/tables/29/4.2.20.1.table | 2 -- definitions/grib2/tables/29/4.2.20.2.table | 2 -- definitions/grib2/tables/29/4.2.3.0.table | 2 -- definitions/grib2/tables/29/4.2.3.1.table | 4 ---- definitions/grib2/tables/29/4.2.4.0.table | 2 -- definitions/grib2/tables/29/4.2.4.1.table | 2 -- definitions/grib2/tables/29/4.2.4.10.table | 2 -- definitions/grib2/tables/29/4.2.4.2.table | 2 -- definitions/grib2/tables/29/4.2.4.3.table | 2 -- definitions/grib2/tables/29/4.2.4.4.table | 2 -- definitions/grib2/tables/29/4.2.4.5.table | 2 -- definitions/grib2/tables/29/4.2.4.6.table | 2 -- definitions/grib2/tables/29/4.2.4.7.table | 2 -- definitions/grib2/tables/29/4.2.4.8.table | 2 -- definitions/grib2/tables/29/4.2.4.9.table | 2 -- definitions/grib2/tables/29/4.201.table | 2 -- definitions/grib2/tables/29/4.202.table | 2 -- definitions/grib2/tables/29/4.203.table | 2 -- definitions/grib2/tables/29/4.204.table | 2 -- definitions/grib2/tables/29/4.205.table | 2 -- definitions/grib2/tables/29/4.206.table | 2 -- definitions/grib2/tables/29/4.207.table | 2 -- definitions/grib2/tables/29/4.208.table | 2 -- definitions/grib2/tables/29/4.209.table | 2 -- definitions/grib2/tables/29/4.210.table | 2 -- definitions/grib2/tables/29/4.211.table | 2 -- definitions/grib2/tables/29/4.212.table | 2 -- definitions/grib2/tables/29/4.213.table | 2 -- definitions/grib2/tables/29/4.214.table | 2 -- definitions/grib2/tables/29/4.215.table | 4 ---- definitions/grib2/tables/29/4.216.table | 1 - definitions/grib2/tables/29/4.217.table | 2 -- definitions/grib2/tables/29/4.218.table | 3 --- definitions/grib2/tables/29/4.219.table | 2 -- definitions/grib2/tables/29/4.220.table | 2 -- definitions/grib2/tables/29/4.221.table | 2 -- definitions/grib2/tables/29/4.222.table | 2 -- definitions/grib2/tables/29/4.224.table | 4 ---- definitions/grib2/tables/29/4.227.table | 2 -- definitions/grib2/tables/29/4.228.table | 1 - definitions/grib2/tables/29/4.230.table | 15 -------------- definitions/grib2/tables/29/4.233.table | 15 -------------- definitions/grib2/tables/29/4.238.table | 2 -- definitions/grib2/tables/29/4.240.table | 2 -- definitions/grib2/tables/29/4.241.table | 2 -- definitions/grib2/tables/29/4.242.table | 2 -- definitions/grib2/tables/29/4.243.table | 2 -- definitions/grib2/tables/29/4.244.table | 2 -- definitions/grib2/tables/29/4.246.table | 1 - definitions/grib2/tables/29/4.247.table | 1 - definitions/grib2/tables/29/4.248.table | 2 -- definitions/grib2/tables/29/4.249.table | 1 - definitions/grib2/tables/29/4.250.table | 2 -- definitions/grib2/tables/29/4.3.table | 2 -- definitions/grib2/tables/29/4.4.table | 3 --- definitions/grib2/tables/29/4.5.table | 10 ---------- definitions/grib2/tables/29/4.6.table | 2 -- definitions/grib2/tables/29/4.7.table | 2 -- definitions/grib2/tables/29/4.8.table | 2 -- definitions/grib2/tables/29/4.9.table | 2 -- definitions/grib2/tables/29/4.91.table | 2 -- definitions/grib2/tables/29/5.0.table | 7 ------- definitions/grib2/tables/29/5.1.table | 2 -- definitions/grib2/tables/29/5.2.table | 3 --- definitions/grib2/tables/29/5.25.table | 4 ---- definitions/grib2/tables/29/5.26.table | 1 - definitions/grib2/tables/29/5.3.table | 2 -- definitions/grib2/tables/29/5.4.table | 2 -- definitions/grib2/tables/29/5.40.table | 1 - definitions/grib2/tables/29/5.5.table | 2 -- definitions/grib2/tables/29/5.6.table | 2 -- definitions/grib2/tables/29/5.7.table | 1 - definitions/grib2/tables/3/0.0.table | 3 --- definitions/grib2/tables/3/1.2.table | 2 -- definitions/grib2/tables/3/1.3.table | 2 -- definitions/grib2/tables/3/1.4.table | 2 -- definitions/grib2/tables/3/3.0.table | 2 -- definitions/grib2/tables/3/3.1.table | 16 --------------- definitions/grib2/tables/3/3.2.table | 2 -- definitions/grib2/tables/3/3.20.table | 2 -- definitions/grib2/tables/3/3.21.table | 3 --- definitions/grib2/tables/3/3.7.table | 1 - definitions/grib2/tables/3/3.8.table | 2 -- definitions/grib2/tables/3/4.1.0.table | 2 -- definitions/grib2/tables/3/4.1.1.table | 2 -- definitions/grib2/tables/3/4.1.10.table | 2 -- definitions/grib2/tables/3/4.1.2.table | 2 -- definitions/grib2/tables/3/4.1.3.table | 2 -- definitions/grib2/tables/3/4.10.table | 1 - definitions/grib2/tables/3/4.11.table | 1 - definitions/grib2/tables/3/4.12.table | 1 - definitions/grib2/tables/3/4.13.table | 1 - definitions/grib2/tables/3/4.14.table | 1 - definitions/grib2/tables/3/4.15.table | 1 - definitions/grib2/tables/3/4.151.table | 1 - definitions/grib2/tables/3/4.2.0.0.table | 2 -- definitions/grib2/tables/3/4.2.0.1.table | 2 -- definitions/grib2/tables/3/4.2.0.13.table | 2 -- definitions/grib2/tables/3/4.2.0.14.table | 2 -- definitions/grib2/tables/3/4.2.0.15.table | 2 -- definitions/grib2/tables/3/4.2.0.18.table | 2 -- definitions/grib2/tables/3/4.2.0.19.table | 2 -- definitions/grib2/tables/3/4.2.0.190.table | 2 -- definitions/grib2/tables/3/4.2.0.191.table | 2 -- definitions/grib2/tables/3/4.2.0.2.table | 2 -- definitions/grib2/tables/3/4.2.0.20.table | 2 -- definitions/grib2/tables/3/4.2.0.3.table | 2 -- definitions/grib2/tables/3/4.2.0.4.table | 2 -- definitions/grib2/tables/3/4.2.0.5.table | 2 -- definitions/grib2/tables/3/4.2.0.6.table | 2 -- definitions/grib2/tables/3/4.2.0.7.table | 2 -- definitions/grib2/tables/3/4.2.1.1.table | 2 -- definitions/grib2/tables/3/4.2.10.0.table | 2 -- definitions/grib2/tables/3/4.2.10.1.table | 2 -- definitions/grib2/tables/3/4.2.10.2.table | 2 -- definitions/grib2/tables/3/4.2.10.3.table | 2 -- definitions/grib2/tables/3/4.2.10.4.table | 2 -- definitions/grib2/tables/3/4.2.2.0.table | 2 -- definitions/grib2/tables/3/4.2.2.3.table | 2 -- definitions/grib2/tables/3/4.2.3.0.table | 2 -- definitions/grib2/tables/3/4.2.3.1.table | 2 -- definitions/grib2/tables/3/4.201.table | 1 - definitions/grib2/tables/3/4.202.table | 1 - definitions/grib2/tables/3/4.203.table | 1 - definitions/grib2/tables/3/4.204.table | 1 - definitions/grib2/tables/3/4.205.table | 1 - definitions/grib2/tables/3/4.206.table | 1 - definitions/grib2/tables/3/4.207.table | 1 - definitions/grib2/tables/3/4.208.table | 1 - definitions/grib2/tables/3/4.209.table | 1 - definitions/grib2/tables/3/4.210.table | 1 - definitions/grib2/tables/3/4.211.table | 1 - definitions/grib2/tables/3/4.212.table | 1 - definitions/grib2/tables/3/4.213.table | 1 - definitions/grib2/tables/3/4.217.table | 1 - definitions/grib2/tables/3/4.220.table | 1 - definitions/grib2/tables/3/4.221.table | 1 - definitions/grib2/tables/3/4.230.table | 3 --- definitions/grib2/tables/3/4.3.table | 2 -- definitions/grib2/tables/3/4.4.table | 2 -- definitions/grib2/tables/3/4.5.table | 6 ------ definitions/grib2/tables/3/4.6.table | 1 - definitions/grib2/tables/3/4.7.table | 1 - definitions/grib2/tables/3/4.8.table | 1 - definitions/grib2/tables/3/4.9.table | 1 - definitions/grib2/tables/3/4.91.table | 1 - definitions/grib2/tables/3/5.0.table | 1 - definitions/grib2/tables/3/5.1.table | 1 - definitions/grib2/tables/3/5.2.table | 1 - definitions/grib2/tables/3/5.3.table | 1 - definitions/grib2/tables/3/5.4.table | 1 - definitions/grib2/tables/3/5.40.table | 1 - definitions/grib2/tables/3/5.5.table | 1 - definitions/grib2/tables/3/5.6.table | 1 - definitions/grib2/tables/30/0.0.table | 4 ---- definitions/grib2/tables/30/1.2.table | 2 -- definitions/grib2/tables/30/1.3.table | 2 -- definitions/grib2/tables/30/1.4.table | 2 -- definitions/grib2/tables/30/1.5.table | 2 -- definitions/grib2/tables/30/1.6.table | 2 -- definitions/grib2/tables/30/3.0.table | 2 -- definitions/grib2/tables/30/3.1.table | 19 ------------------ definitions/grib2/tables/30/3.10.table | 1 - definitions/grib2/tables/30/3.11.table | 1 - definitions/grib2/tables/30/3.15.table | 5 ----- definitions/grib2/tables/30/3.2.table | 2 -- definitions/grib2/tables/30/3.20.table | 2 -- definitions/grib2/tables/30/3.21.table | 3 --- definitions/grib2/tables/30/3.25.table | 5 ----- definitions/grib2/tables/30/3.3.table | 2 -- definitions/grib2/tables/30/3.7.table | 1 - definitions/grib2/tables/30/3.8.table | 2 -- definitions/grib2/tables/30/3.9.table | 1 - definitions/grib2/tables/30/4.0.table | 14 ------------- definitions/grib2/tables/30/4.1.0.table | 2 -- definitions/grib2/tables/30/4.1.1.table | 2 -- definitions/grib2/tables/30/4.1.10.table | 2 -- definitions/grib2/tables/30/4.1.2.table | 2 -- definitions/grib2/tables/30/4.1.20.table | 2 -- definitions/grib2/tables/30/4.1.3.table | 2 -- definitions/grib2/tables/30/4.1.4.table | 2 -- definitions/grib2/tables/30/4.10.table | 3 --- definitions/grib2/tables/30/4.11.table | 2 -- definitions/grib2/tables/30/4.12.table | 2 -- definitions/grib2/tables/30/4.13.table | 2 -- definitions/grib2/tables/30/4.14.table | 2 -- definitions/grib2/tables/30/4.15.table | 2 -- definitions/grib2/tables/30/4.16.table | 2 -- definitions/grib2/tables/30/4.2.0.0.table | 2 -- definitions/grib2/tables/30/4.2.0.1.table | 3 --- definitions/grib2/tables/30/4.2.0.13.table | 2 -- definitions/grib2/tables/30/4.2.0.14.table | 2 -- definitions/grib2/tables/30/4.2.0.15.table | 2 -- definitions/grib2/tables/30/4.2.0.16.table | 2 -- definitions/grib2/tables/30/4.2.0.18.table | 2 -- definitions/grib2/tables/30/4.2.0.19.table | 2 -- definitions/grib2/tables/30/4.2.0.190.table | 2 -- definitions/grib2/tables/30/4.2.0.191.table | 2 -- definitions/grib2/tables/30/4.2.0.2.table | 2 -- definitions/grib2/tables/30/4.2.0.20.table | 4 ---- definitions/grib2/tables/30/4.2.0.21.table | 2 -- definitions/grib2/tables/30/4.2.0.3.table | 2 -- definitions/grib2/tables/30/4.2.0.4.table | 3 --- definitions/grib2/tables/30/4.2.0.5.table | 2 -- definitions/grib2/tables/30/4.2.0.6.table | 3 --- definitions/grib2/tables/30/4.2.0.7.table | 2 -- definitions/grib2/tables/30/4.2.1.0.table | 2 -- definitions/grib2/tables/30/4.2.1.1.table | 2 -- definitions/grib2/tables/30/4.2.1.2.table | 2 -- definitions/grib2/tables/30/4.2.10.0.table | 2 -- definitions/grib2/tables/30/4.2.10.1.table | 2 -- definitions/grib2/tables/30/4.2.10.191.table | 2 -- definitions/grib2/tables/30/4.2.10.2.table | 2 -- definitions/grib2/tables/30/4.2.10.3.table | 2 -- definitions/grib2/tables/30/4.2.10.4.table | 3 --- definitions/grib2/tables/30/4.2.2.0.table | 2 -- definitions/grib2/tables/30/4.2.2.3.table | 2 -- definitions/grib2/tables/30/4.2.2.4.table | 2 -- definitions/grib2/tables/30/4.2.2.5.table | 2 -- definitions/grib2/tables/30/4.2.2.6.table | 2 -- definitions/grib2/tables/30/4.2.20.0.table | 2 -- definitions/grib2/tables/30/4.2.20.1.table | 2 -- definitions/grib2/tables/30/4.2.20.2.table | 2 -- definitions/grib2/tables/30/4.2.3.0.table | 2 -- definitions/grib2/tables/30/4.2.3.1.table | 4 ---- definitions/grib2/tables/30/4.2.4.0.table | 2 -- definitions/grib2/tables/30/4.2.4.1.table | 2 -- definitions/grib2/tables/30/4.2.4.10.table | 2 -- definitions/grib2/tables/30/4.2.4.2.table | 2 -- definitions/grib2/tables/30/4.2.4.3.table | 2 -- definitions/grib2/tables/30/4.2.4.4.table | 2 -- definitions/grib2/tables/30/4.2.4.5.table | 2 -- definitions/grib2/tables/30/4.2.4.6.table | 2 -- definitions/grib2/tables/30/4.2.4.7.table | 2 -- definitions/grib2/tables/30/4.2.4.8.table | 2 -- definitions/grib2/tables/30/4.2.4.9.table | 2 -- definitions/grib2/tables/30/4.201.table | 2 -- definitions/grib2/tables/30/4.202.table | 2 -- definitions/grib2/tables/30/4.203.table | 2 -- definitions/grib2/tables/30/4.204.table | 2 -- definitions/grib2/tables/30/4.205.table | 2 -- definitions/grib2/tables/30/4.206.table | 2 -- definitions/grib2/tables/30/4.207.table | 2 -- definitions/grib2/tables/30/4.208.table | 2 -- definitions/grib2/tables/30/4.209.table | 2 -- definitions/grib2/tables/30/4.210.table | 2 -- definitions/grib2/tables/30/4.211.table | 2 -- definitions/grib2/tables/30/4.212.table | 2 -- definitions/grib2/tables/30/4.213.table | 2 -- definitions/grib2/tables/30/4.214.table | 2 -- definitions/grib2/tables/30/4.215.table | 4 ---- definitions/grib2/tables/30/4.216.table | 1 - definitions/grib2/tables/30/4.217.table | 2 -- definitions/grib2/tables/30/4.218.table | 3 --- definitions/grib2/tables/30/4.219.table | 2 -- definitions/grib2/tables/30/4.220.table | 2 -- definitions/grib2/tables/30/4.221.table | 2 -- definitions/grib2/tables/30/4.222.table | 2 -- definitions/grib2/tables/30/4.224.table | 4 ---- definitions/grib2/tables/30/4.227.table | 2 -- definitions/grib2/tables/30/4.228.table | 1 - definitions/grib2/tables/30/4.230.table | 15 -------------- definitions/grib2/tables/30/4.233.table | 15 -------------- definitions/grib2/tables/30/4.238.table | 2 -- definitions/grib2/tables/30/4.239.table | 2 -- definitions/grib2/tables/30/4.240.table | 2 -- definitions/grib2/tables/30/4.241.table | 2 -- definitions/grib2/tables/30/4.242.table | 2 -- definitions/grib2/tables/30/4.243.table | 2 -- definitions/grib2/tables/30/4.244.table | 2 -- definitions/grib2/tables/30/4.246.table | 1 - definitions/grib2/tables/30/4.247.table | 1 - definitions/grib2/tables/30/4.248.table | 2 -- definitions/grib2/tables/30/4.249.table | 1 - definitions/grib2/tables/30/4.250.table | 2 -- definitions/grib2/tables/30/4.3.table | 2 -- definitions/grib2/tables/30/4.4.table | 3 --- definitions/grib2/tables/30/4.5.table | 10 ---------- definitions/grib2/tables/30/4.6.table | 2 -- definitions/grib2/tables/30/4.7.table | 2 -- definitions/grib2/tables/30/4.8.table | 2 -- definitions/grib2/tables/30/4.9.table | 2 -- definitions/grib2/tables/30/4.91.table | 2 -- definitions/grib2/tables/30/5.0.table | 7 ------- definitions/grib2/tables/30/5.1.table | 2 -- definitions/grib2/tables/30/5.2.table | 3 --- definitions/grib2/tables/30/5.25.table | 4 ---- definitions/grib2/tables/30/5.26.table | 1 - definitions/grib2/tables/30/5.3.table | 2 -- definitions/grib2/tables/30/5.4.table | 2 -- definitions/grib2/tables/30/5.40.table | 1 - definitions/grib2/tables/30/5.5.table | 2 -- definitions/grib2/tables/30/5.6.table | 2 -- definitions/grib2/tables/30/5.7.table | 1 - definitions/grib2/tables/31/0.0.table | 4 ---- definitions/grib2/tables/31/1.2.table | 2 -- definitions/grib2/tables/31/1.3.table | 2 -- definitions/grib2/tables/31/1.4.table | 2 -- definitions/grib2/tables/31/1.5.table | 2 -- definitions/grib2/tables/31/1.6.table | 2 -- definitions/grib2/tables/31/3.0.table | 2 -- definitions/grib2/tables/31/3.1.table | 19 ------------------ definitions/grib2/tables/31/3.10.table | 1 - definitions/grib2/tables/31/3.11.table | 1 - definitions/grib2/tables/31/3.15.table | 5 ----- definitions/grib2/tables/31/3.2.table | 2 -- definitions/grib2/tables/31/3.20.table | 2 -- definitions/grib2/tables/31/3.21.table | 3 --- definitions/grib2/tables/31/3.25.table | 5 ----- definitions/grib2/tables/31/3.3.table | 2 -- definitions/grib2/tables/31/3.7.table | 1 - definitions/grib2/tables/31/3.8.table | 2 -- definitions/grib2/tables/31/3.9.table | 1 - definitions/grib2/tables/31/4.0.table | 14 ------------- definitions/grib2/tables/31/4.1.0.table | 2 -- definitions/grib2/tables/31/4.1.1.table | 2 -- definitions/grib2/tables/31/4.1.10.table | 2 -- definitions/grib2/tables/31/4.1.2.table | 2 -- definitions/grib2/tables/31/4.1.20.table | 2 -- definitions/grib2/tables/31/4.1.3.table | 2 -- definitions/grib2/tables/31/4.1.4.table | 2 -- definitions/grib2/tables/31/4.10.table | 3 --- definitions/grib2/tables/31/4.100.table | 2 -- definitions/grib2/tables/31/4.101.table | 3 --- definitions/grib2/tables/31/4.102.table | 3 --- definitions/grib2/tables/31/4.11.table | 2 -- definitions/grib2/tables/31/4.12.table | 2 -- definitions/grib2/tables/31/4.13.table | 2 -- definitions/grib2/tables/31/4.14.table | 2 -- definitions/grib2/tables/31/4.15.table | 2 -- definitions/grib2/tables/31/4.16.table | 2 -- definitions/grib2/tables/31/4.2.0.0.table | 2 -- definitions/grib2/tables/31/4.2.0.1.table | 3 --- definitions/grib2/tables/31/4.2.0.13.table | 2 -- definitions/grib2/tables/31/4.2.0.14.table | 2 -- definitions/grib2/tables/31/4.2.0.15.table | 2 -- definitions/grib2/tables/31/4.2.0.16.table | 2 -- definitions/grib2/tables/31/4.2.0.18.table | 2 -- definitions/grib2/tables/31/4.2.0.19.table | 2 -- definitions/grib2/tables/31/4.2.0.190.table | 2 -- definitions/grib2/tables/31/4.2.0.191.table | 2 -- definitions/grib2/tables/31/4.2.0.2.table | 2 -- definitions/grib2/tables/31/4.2.0.20.table | 4 ---- definitions/grib2/tables/31/4.2.0.21.table | 2 -- definitions/grib2/tables/31/4.2.0.3.table | 2 -- definitions/grib2/tables/31/4.2.0.4.table | 3 --- definitions/grib2/tables/31/4.2.0.5.table | 2 -- definitions/grib2/tables/31/4.2.0.6.table | 3 --- definitions/grib2/tables/31/4.2.0.7.table | 2 -- definitions/grib2/tables/31/4.2.1.0.table | 2 -- definitions/grib2/tables/31/4.2.1.1.table | 2 -- definitions/grib2/tables/31/4.2.1.2.table | 2 -- definitions/grib2/tables/31/4.2.10.0.table | 2 -- definitions/grib2/tables/31/4.2.10.1.table | 2 -- definitions/grib2/tables/31/4.2.10.191.table | 2 -- definitions/grib2/tables/31/4.2.10.2.table | 2 -- definitions/grib2/tables/31/4.2.10.3.table | 2 -- definitions/grib2/tables/31/4.2.10.4.table | 3 --- definitions/grib2/tables/31/4.2.2.0.table | 2 -- definitions/grib2/tables/31/4.2.2.3.table | 2 -- definitions/grib2/tables/31/4.2.2.4.table | 2 -- definitions/grib2/tables/31/4.2.2.5.table | 2 -- definitions/grib2/tables/31/4.2.2.6.table | 2 -- definitions/grib2/tables/31/4.2.20.0.table | 2 -- definitions/grib2/tables/31/4.2.20.1.table | 2 -- definitions/grib2/tables/31/4.2.20.2.table | 2 -- definitions/grib2/tables/31/4.2.3.0.table | 2 -- definitions/grib2/tables/31/4.2.3.1.table | 4 ---- definitions/grib2/tables/31/4.2.4.0.table | 2 -- definitions/grib2/tables/31/4.2.4.1.table | 2 -- definitions/grib2/tables/31/4.2.4.10.table | 2 -- definitions/grib2/tables/31/4.2.4.2.table | 2 -- definitions/grib2/tables/31/4.2.4.3.table | 2 -- definitions/grib2/tables/31/4.2.4.4.table | 2 -- definitions/grib2/tables/31/4.2.4.5.table | 2 -- definitions/grib2/tables/31/4.2.4.6.table | 2 -- definitions/grib2/tables/31/4.2.4.7.table | 2 -- definitions/grib2/tables/31/4.2.4.8.table | 2 -- definitions/grib2/tables/31/4.2.4.9.table | 2 -- definitions/grib2/tables/31/4.201.table | 2 -- definitions/grib2/tables/31/4.202.table | 2 -- definitions/grib2/tables/31/4.203.table | 2 -- definitions/grib2/tables/31/4.204.table | 2 -- definitions/grib2/tables/31/4.205.table | 2 -- definitions/grib2/tables/31/4.206.table | 2 -- definitions/grib2/tables/31/4.207.table | 2 -- definitions/grib2/tables/31/4.208.table | 2 -- definitions/grib2/tables/31/4.209.table | 2 -- definitions/grib2/tables/31/4.210.table | 2 -- definitions/grib2/tables/31/4.211.table | 2 -- definitions/grib2/tables/31/4.212.table | 2 -- definitions/grib2/tables/31/4.213.table | 2 -- definitions/grib2/tables/31/4.214.table | 2 -- definitions/grib2/tables/31/4.215.table | 4 ---- definitions/grib2/tables/31/4.216.table | 1 - definitions/grib2/tables/31/4.217.table | 2 -- definitions/grib2/tables/31/4.218.table | 3 --- definitions/grib2/tables/31/4.219.table | 2 -- definitions/grib2/tables/31/4.220.table | 2 -- definitions/grib2/tables/31/4.221.table | 2 -- definitions/grib2/tables/31/4.222.table | 2 -- definitions/grib2/tables/31/4.224.table | 4 ---- definitions/grib2/tables/31/4.227.table | 2 -- definitions/grib2/tables/31/4.228.table | 1 - definitions/grib2/tables/31/4.230.table | 15 -------------- definitions/grib2/tables/31/4.233.table | 15 -------------- definitions/grib2/tables/31/4.238.table | 2 -- definitions/grib2/tables/31/4.239.table | 2 -- definitions/grib2/tables/31/4.240.table | 2 -- definitions/grib2/tables/31/4.241.table | 2 -- definitions/grib2/tables/31/4.242.table | 2 -- definitions/grib2/tables/31/4.243.table | 2 -- definitions/grib2/tables/31/4.244.table | 2 -- definitions/grib2/tables/31/4.246.table | 1 - definitions/grib2/tables/31/4.247.table | 1 - definitions/grib2/tables/31/4.248.table | 2 -- definitions/grib2/tables/31/4.249.table | 1 - definitions/grib2/tables/31/4.250.table | 2 -- definitions/grib2/tables/31/4.251.table | 2 -- definitions/grib2/tables/31/4.3.table | 2 -- definitions/grib2/tables/31/4.4.table | 3 --- definitions/grib2/tables/31/4.5.table | 10 ---------- definitions/grib2/tables/31/4.6.table | 2 -- definitions/grib2/tables/31/4.7.table | 2 -- definitions/grib2/tables/31/4.8.table | 2 -- definitions/grib2/tables/31/4.9.table | 2 -- definitions/grib2/tables/31/4.91.table | 2 -- definitions/grib2/tables/31/5.0.table | 7 ------- definitions/grib2/tables/31/5.1.table | 2 -- definitions/grib2/tables/31/5.2.table | 3 --- definitions/grib2/tables/31/5.25.table | 4 ---- definitions/grib2/tables/31/5.26.table | 1 - definitions/grib2/tables/31/5.3.table | 2 -- definitions/grib2/tables/31/5.4.table | 2 -- definitions/grib2/tables/31/5.40.table | 1 - definitions/grib2/tables/31/5.5.table | 2 -- definitions/grib2/tables/31/5.6.table | 2 -- definitions/grib2/tables/31/5.7.table | 1 - definitions/grib2/tables/32/0.0.table | 4 ---- definitions/grib2/tables/32/1.2.table | 2 -- definitions/grib2/tables/32/1.3.table | 2 -- definitions/grib2/tables/32/1.4.table | 2 -- definitions/grib2/tables/32/1.5.table | 2 -- definitions/grib2/tables/32/1.6.table | 2 -- definitions/grib2/tables/32/3.0.table | 2 -- definitions/grib2/tables/32/3.1.table | 20 ------------------- definitions/grib2/tables/32/3.10.table | 1 - definitions/grib2/tables/32/3.11.table | 1 - definitions/grib2/tables/32/3.12.table | 2 -- definitions/grib2/tables/32/3.13.table | 1 - definitions/grib2/tables/32/3.15.table | 5 ----- definitions/grib2/tables/32/3.2.table | 2 -- definitions/grib2/tables/32/3.20.table | 2 -- definitions/grib2/tables/32/3.21.table | 3 --- definitions/grib2/tables/32/3.25.table | 5 ----- definitions/grib2/tables/32/3.3.table | 2 -- definitions/grib2/tables/32/3.7.table | 1 - definitions/grib2/tables/32/3.8.table | 2 -- definitions/grib2/tables/32/3.9.table | 1 - definitions/grib2/tables/32/4.0.table | 13 ------------ definitions/grib2/tables/32/4.1.0.table | 2 -- definitions/grib2/tables/32/4.1.1.table | 2 -- definitions/grib2/tables/32/4.1.10.table | 2 -- definitions/grib2/tables/32/4.1.2.table | 2 -- definitions/grib2/tables/32/4.1.20.table | 2 -- definitions/grib2/tables/32/4.1.3.table | 2 -- definitions/grib2/tables/32/4.1.4.table | 2 -- definitions/grib2/tables/32/4.10.table | 3 --- definitions/grib2/tables/32/4.100.table | 2 -- definitions/grib2/tables/32/4.101.table | 3 --- definitions/grib2/tables/32/4.102.table | 3 --- definitions/grib2/tables/32/4.11.table | 2 -- definitions/grib2/tables/32/4.12.table | 2 -- definitions/grib2/tables/32/4.13.table | 2 -- definitions/grib2/tables/32/4.14.table | 2 -- definitions/grib2/tables/32/4.15.table | 2 -- definitions/grib2/tables/32/4.16.table | 2 -- definitions/grib2/tables/32/4.2.0.0.table | 2 -- definitions/grib2/tables/32/4.2.0.1.table | 3 --- definitions/grib2/tables/32/4.2.0.13.table | 2 -- definitions/grib2/tables/32/4.2.0.14.table | 2 -- definitions/grib2/tables/32/4.2.0.15.table | 2 -- definitions/grib2/tables/32/4.2.0.16.table | 2 -- definitions/grib2/tables/32/4.2.0.18.table | 2 -- definitions/grib2/tables/32/4.2.0.19.table | 2 -- definitions/grib2/tables/32/4.2.0.190.table | 2 -- definitions/grib2/tables/32/4.2.0.191.table | 2 -- definitions/grib2/tables/32/4.2.0.2.table | 2 -- definitions/grib2/tables/32/4.2.0.20.table | 4 ---- definitions/grib2/tables/32/4.2.0.21.table | 2 -- definitions/grib2/tables/32/4.2.0.3.table | 2 -- definitions/grib2/tables/32/4.2.0.4.table | 3 --- definitions/grib2/tables/32/4.2.0.5.table | 2 -- definitions/grib2/tables/32/4.2.0.6.table | 3 --- definitions/grib2/tables/32/4.2.0.7.table | 2 -- definitions/grib2/tables/32/4.2.1.0.table | 2 -- definitions/grib2/tables/32/4.2.1.1.table | 2 -- definitions/grib2/tables/32/4.2.1.2.table | 2 -- definitions/grib2/tables/32/4.2.10.0.table | 2 -- definitions/grib2/tables/32/4.2.10.1.table | 2 -- definitions/grib2/tables/32/4.2.10.191.table | 2 -- definitions/grib2/tables/32/4.2.10.2.table | 2 -- definitions/grib2/tables/32/4.2.10.3.table | 2 -- definitions/grib2/tables/32/4.2.10.4.table | 3 --- definitions/grib2/tables/32/4.2.2.0.table | 2 -- definitions/grib2/tables/32/4.2.2.3.table | 2 -- definitions/grib2/tables/32/4.2.2.4.table | 2 -- definitions/grib2/tables/32/4.2.2.5.table | 2 -- definitions/grib2/tables/32/4.2.2.6.table | 2 -- definitions/grib2/tables/32/4.2.20.0.table | 2 -- definitions/grib2/tables/32/4.2.20.1.table | 2 -- definitions/grib2/tables/32/4.2.20.2.table | 2 -- definitions/grib2/tables/32/4.2.20.3.table | 2 -- definitions/grib2/tables/32/4.2.3.0.table | 2 -- definitions/grib2/tables/32/4.2.3.1.table | 4 ---- definitions/grib2/tables/32/4.2.4.0.table | 2 -- definitions/grib2/tables/32/4.2.4.1.table | 2 -- definitions/grib2/tables/32/4.2.4.10.table | 2 -- definitions/grib2/tables/32/4.2.4.2.table | 2 -- definitions/grib2/tables/32/4.2.4.3.table | 2 -- definitions/grib2/tables/32/4.2.4.4.table | 2 -- definitions/grib2/tables/32/4.2.4.5.table | 2 -- definitions/grib2/tables/32/4.2.4.6.table | 2 -- definitions/grib2/tables/32/4.2.4.7.table | 2 -- definitions/grib2/tables/32/4.2.4.8.table | 2 -- definitions/grib2/tables/32/4.2.4.9.table | 2 -- definitions/grib2/tables/32/4.201.table | 2 -- definitions/grib2/tables/32/4.202.table | 2 -- definitions/grib2/tables/32/4.203.table | 2 -- definitions/grib2/tables/32/4.204.table | 2 -- definitions/grib2/tables/32/4.205.table | 2 -- definitions/grib2/tables/32/4.206.table | 2 -- definitions/grib2/tables/32/4.207.table | 2 -- definitions/grib2/tables/32/4.208.table | 2 -- definitions/grib2/tables/32/4.209.table | 2 -- definitions/grib2/tables/32/4.210.table | 2 -- definitions/grib2/tables/32/4.211.table | 2 -- definitions/grib2/tables/32/4.212.table | 2 -- definitions/grib2/tables/32/4.213.table | 2 -- definitions/grib2/tables/32/4.214.table | 2 -- definitions/grib2/tables/32/4.215.table | 4 ---- definitions/grib2/tables/32/4.216.table | 1 - definitions/grib2/tables/32/4.217.table | 2 -- definitions/grib2/tables/32/4.218.table | 3 --- definitions/grib2/tables/32/4.219.table | 2 -- definitions/grib2/tables/32/4.220.table | 2 -- definitions/grib2/tables/32/4.221.table | 2 -- definitions/grib2/tables/32/4.222.table | 2 -- definitions/grib2/tables/32/4.224.table | 4 ---- definitions/grib2/tables/32/4.227.table | 2 -- definitions/grib2/tables/32/4.228.table | 1 - definitions/grib2/tables/32/4.230.table | 15 -------------- definitions/grib2/tables/32/4.233.table | 15 -------------- definitions/grib2/tables/32/4.238.table | 2 -- definitions/grib2/tables/32/4.239.table | 2 -- definitions/grib2/tables/32/4.240.table | 2 -- definitions/grib2/tables/32/4.241.table | 2 -- definitions/grib2/tables/32/4.242.table | 2 -- definitions/grib2/tables/32/4.243.table | 2 -- definitions/grib2/tables/32/4.244.table | 2 -- definitions/grib2/tables/32/4.246.table | 1 - definitions/grib2/tables/32/4.247.table | 1 - definitions/grib2/tables/32/4.248.table | 2 -- definitions/grib2/tables/32/4.249.table | 1 - definitions/grib2/tables/32/4.250.table | 2 -- definitions/grib2/tables/32/4.251.table | 2 -- definitions/grib2/tables/32/4.252.table | 1 - definitions/grib2/tables/32/4.3.table | 2 -- definitions/grib2/tables/32/4.4.table | 3 --- definitions/grib2/tables/32/4.5.table | 10 ---------- definitions/grib2/tables/32/4.6.table | 2 -- definitions/grib2/tables/32/4.7.table | 2 -- definitions/grib2/tables/32/4.8.table | 2 -- definitions/grib2/tables/32/4.9.table | 2 -- definitions/grib2/tables/32/4.91.table | 2 -- definitions/grib2/tables/32/5.0.table | 7 ------- definitions/grib2/tables/32/5.1.table | 2 -- definitions/grib2/tables/32/5.2.table | 3 --- definitions/grib2/tables/32/5.25.table | 4 ---- definitions/grib2/tables/32/5.26.table | 1 - definitions/grib2/tables/32/5.3.table | 2 -- definitions/grib2/tables/32/5.4.table | 2 -- definitions/grib2/tables/32/5.40.table | 1 - definitions/grib2/tables/32/5.5.table | 2 -- definitions/grib2/tables/32/5.6.table | 2 -- definitions/grib2/tables/32/5.7.table | 1 - definitions/grib2/tables/4/0.0.table | 3 --- definitions/grib2/tables/4/1.2.table | 2 -- definitions/grib2/tables/4/1.3.table | 2 -- definitions/grib2/tables/4/1.4.table | 2 -- definitions/grib2/tables/4/3.0.table | 2 -- definitions/grib2/tables/4/3.1.table | 16 --------------- definitions/grib2/tables/4/3.15.table | 5 ----- definitions/grib2/tables/4/3.2.table | 2 -- definitions/grib2/tables/4/3.20.table | 2 -- definitions/grib2/tables/4/3.21.table | 3 --- definitions/grib2/tables/4/3.7.table | 1 - definitions/grib2/tables/4/3.8.table | 2 -- definitions/grib2/tables/4/4.1.0.table | 2 -- definitions/grib2/tables/4/4.1.1.table | 2 -- definitions/grib2/tables/4/4.1.10.table | 2 -- definitions/grib2/tables/4/4.1.2.table | 2 -- definitions/grib2/tables/4/4.1.3.table | 2 -- definitions/grib2/tables/4/4.10.table | 1 - definitions/grib2/tables/4/4.11.table | 1 - definitions/grib2/tables/4/4.2.0.0.table | 2 -- definitions/grib2/tables/4/4.2.0.1.table | 2 -- definitions/grib2/tables/4/4.2.0.13.table | 2 -- definitions/grib2/tables/4/4.2.0.14.table | 2 -- definitions/grib2/tables/4/4.2.0.15.table | 2 -- definitions/grib2/tables/4/4.2.0.18.table | 2 -- definitions/grib2/tables/4/4.2.0.19.table | 2 -- definitions/grib2/tables/4/4.2.0.190.table | 2 -- definitions/grib2/tables/4/4.2.0.191.table | 2 -- definitions/grib2/tables/4/4.2.0.2.table | 2 -- definitions/grib2/tables/4/4.2.0.20.table | 2 -- definitions/grib2/tables/4/4.2.0.3.table | 2 -- definitions/grib2/tables/4/4.2.0.4.table | 2 -- definitions/grib2/tables/4/4.2.0.5.table | 2 -- definitions/grib2/tables/4/4.2.0.6.table | 2 -- definitions/grib2/tables/4/4.2.0.7.table | 2 -- definitions/grib2/tables/4/4.2.1.0.table | 2 -- definitions/grib2/tables/4/4.2.1.1.table | 2 -- definitions/grib2/tables/4/4.2.10.0.table | 2 -- definitions/grib2/tables/4/4.2.10.1.table | 2 -- definitions/grib2/tables/4/4.2.10.2.table | 2 -- definitions/grib2/tables/4/4.2.10.3.table | 2 -- definitions/grib2/tables/4/4.2.10.4.table | 2 -- definitions/grib2/tables/4/4.2.2.0.table | 2 -- definitions/grib2/tables/4/4.2.2.3.table | 2 -- definitions/grib2/tables/4/4.2.3.0.table | 2 -- definitions/grib2/tables/4/4.2.3.1.table | 2 -- definitions/grib2/tables/4/4.230.table | 3 --- definitions/grib2/tables/4/4.3.table | 2 -- definitions/grib2/tables/4/4.4.table | 2 -- definitions/grib2/tables/4/4.5.table | 6 ------ definitions/grib2/tables/4/4.6.table | 1 - definitions/grib2/tables/4/5.0.table | 1 - definitions/grib2/tables/4/5.1.table | 1 - definitions/grib2/tables/4/5.2.table | 1 - definitions/grib2/tables/4/5.3.table | 1 - definitions/grib2/tables/4/5.4.table | 1 - definitions/grib2/tables/4/5.40.table | 1 - definitions/grib2/tables/4/5.5.table | 1 - definitions/grib2/tables/5/0.0.table | 3 --- definitions/grib2/tables/5/1.2.table | 2 -- definitions/grib2/tables/5/1.3.table | 2 -- definitions/grib2/tables/5/1.4.table | 2 -- definitions/grib2/tables/5/3.0.table | 2 -- definitions/grib2/tables/5/3.1.table | 16 --------------- definitions/grib2/tables/5/3.15.table | 5 ----- definitions/grib2/tables/5/3.2.table | 2 -- definitions/grib2/tables/5/3.20.table | 2 -- definitions/grib2/tables/5/3.21.table | 3 --- definitions/grib2/tables/5/3.7.table | 1 - definitions/grib2/tables/5/3.8.table | 2 -- definitions/grib2/tables/5/4.1.0.table | 2 -- definitions/grib2/tables/5/4.1.1.table | 2 -- definitions/grib2/tables/5/4.1.10.table | 2 -- definitions/grib2/tables/5/4.1.2.table | 2 -- definitions/grib2/tables/5/4.1.3.table | 2 -- definitions/grib2/tables/5/4.10.table | 1 - definitions/grib2/tables/5/4.11.table | 1 - definitions/grib2/tables/5/4.15.table | 2 -- definitions/grib2/tables/5/4.2.0.20.table | 4 ---- definitions/grib2/tables/5/4.203.table | 1 - definitions/grib2/tables/5/4.230.table | 1 - definitions/grib2/tables/5/4.3.table | 2 -- definitions/grib2/tables/5/4.4.table | 2 -- definitions/grib2/tables/5/4.5.table | 6 ------ definitions/grib2/tables/5/4.6.table | 1 - definitions/grib2/tables/5/5.0.table | 1 - definitions/grib2/tables/5/5.1.table | 1 - definitions/grib2/tables/5/5.2.table | 1 - definitions/grib2/tables/5/5.3.table | 1 - definitions/grib2/tables/5/5.4.table | 1 - definitions/grib2/tables/5/5.40.table | 1 - definitions/grib2/tables/5/5.5.table | 1 - definitions/grib2/tables/6/0.0.table | 3 --- definitions/grib2/tables/6/1.2.table | 2 -- definitions/grib2/tables/6/1.3.table | 2 -- definitions/grib2/tables/6/1.4.table | 2 -- definitions/grib2/tables/6/3.0.table | 2 -- definitions/grib2/tables/6/3.1.table | 16 --------------- definitions/grib2/tables/6/3.15.table | 4 ---- definitions/grib2/tables/6/3.2.table | 2 -- definitions/grib2/tables/6/3.20.table | 2 -- definitions/grib2/tables/6/3.21.table | 3 --- definitions/grib2/tables/6/3.8.table | 2 -- definitions/grib2/tables/6/4.0.table | 1 - definitions/grib2/tables/6/4.1.0.table | 2 -- definitions/grib2/tables/6/4.1.1.table | 2 -- definitions/grib2/tables/6/4.1.10.table | 2 -- definitions/grib2/tables/6/4.1.2.table | 2 -- definitions/grib2/tables/6/4.1.3.table | 2 -- definitions/grib2/tables/6/4.10.table | 1 - definitions/grib2/tables/6/4.11.table | 1 - definitions/grib2/tables/6/4.12.table | 1 - definitions/grib2/tables/6/4.13.table | 1 - definitions/grib2/tables/6/4.14.table | 1 - definitions/grib2/tables/6/4.15.table | 2 -- definitions/grib2/tables/6/4.151.table | 1 - definitions/grib2/tables/6/4.2.10.191.table | 2 -- definitions/grib2/tables/6/4.201.table | 1 - definitions/grib2/tables/6/4.202.table | 1 - definitions/grib2/tables/6/4.203.table | 1 - definitions/grib2/tables/6/4.204.table | 1 - definitions/grib2/tables/6/4.205.table | 1 - definitions/grib2/tables/6/4.206.table | 1 - definitions/grib2/tables/6/4.207.table | 1 - definitions/grib2/tables/6/4.208.table | 1 - definitions/grib2/tables/6/4.209.table | 1 - definitions/grib2/tables/6/4.210.table | 1 - definitions/grib2/tables/6/4.211.table | 1 - definitions/grib2/tables/6/4.212.table | 1 - definitions/grib2/tables/6/4.213.table | 1 - definitions/grib2/tables/6/4.217.table | 1 - definitions/grib2/tables/6/4.220.table | 1 - definitions/grib2/tables/6/4.221.table | 1 - definitions/grib2/tables/6/4.230.table | 1 - definitions/grib2/tables/6/4.3.table | 2 -- definitions/grib2/tables/6/4.4.table | 2 -- definitions/grib2/tables/6/4.5.table | 6 ------ definitions/grib2/tables/6/4.6.table | 2 -- definitions/grib2/tables/6/4.7.table | 1 - definitions/grib2/tables/6/4.8.table | 1 - definitions/grib2/tables/6/4.9.table | 1 - definitions/grib2/tables/6/4.91.table | 1 - definitions/grib2/tables/6/5.0.table | 1 - definitions/grib2/tables/6/5.1.table | 1 - definitions/grib2/tables/6/5.2.table | 1 - definitions/grib2/tables/6/5.3.table | 1 - definitions/grib2/tables/6/5.4.table | 1 - definitions/grib2/tables/6/5.40.table | 1 - definitions/grib2/tables/6/5.5.table | 1 - definitions/grib2/tables/6/5.6.table | 1 - definitions/grib2/tables/7/0.0.table | 3 --- definitions/grib2/tables/7/1.2.table | 2 -- definitions/grib2/tables/7/1.3.table | 2 -- definitions/grib2/tables/7/1.4.table | 2 -- definitions/grib2/tables/7/3.0.table | 2 -- definitions/grib2/tables/7/3.1.table | 16 --------------- definitions/grib2/tables/7/3.10.table | 1 - definitions/grib2/tables/7/3.11.table | 1 - definitions/grib2/tables/7/3.2.table | 2 -- definitions/grib2/tables/7/3.20.table | 2 -- definitions/grib2/tables/7/3.21.table | 3 --- definitions/grib2/tables/7/3.3.table | 2 -- definitions/grib2/tables/7/3.4.table | 1 - definitions/grib2/tables/7/3.8.table | 2 -- definitions/grib2/tables/7/3.9.table | 1 - definitions/grib2/tables/7/4.0.table | 9 --------- definitions/grib2/tables/7/4.1.0.table | 2 -- definitions/grib2/tables/7/4.1.1.table | 2 -- definitions/grib2/tables/7/4.1.10.table | 2 -- definitions/grib2/tables/7/4.1.2.table | 2 -- definitions/grib2/tables/7/4.1.3.table | 2 -- definitions/grib2/tables/7/4.10.table | 2 -- definitions/grib2/tables/7/4.11.table | 2 -- definitions/grib2/tables/7/4.12.table | 2 -- definitions/grib2/tables/7/4.13.table | 1 - definitions/grib2/tables/7/4.14.table | 1 - definitions/grib2/tables/7/4.15.table | 2 -- definitions/grib2/tables/7/4.151.table | 1 - definitions/grib2/tables/7/4.2.0.0.table | 2 -- definitions/grib2/tables/7/4.2.0.1.table | 2 -- definitions/grib2/tables/7/4.2.0.13.table | 2 -- definitions/grib2/tables/7/4.2.0.14.table | 2 -- definitions/grib2/tables/7/4.2.0.15.table | 2 -- definitions/grib2/tables/7/4.2.0.16.table | 2 -- definitions/grib2/tables/7/4.2.0.18.table | 2 -- definitions/grib2/tables/7/4.2.0.19.table | 2 -- definitions/grib2/tables/7/4.2.0.190.table | 2 -- definitions/grib2/tables/7/4.2.0.191.table | 2 -- definitions/grib2/tables/7/4.2.0.2.table | 2 -- definitions/grib2/tables/7/4.2.0.20.table | 4 ---- definitions/grib2/tables/7/4.2.0.3.table | 2 -- definitions/grib2/tables/7/4.2.0.4.table | 3 --- definitions/grib2/tables/7/4.2.0.5.table | 2 -- definitions/grib2/tables/7/4.2.0.6.table | 3 --- definitions/grib2/tables/7/4.2.0.7.table | 2 -- definitions/grib2/tables/7/4.2.1.0.table | 2 -- definitions/grib2/tables/7/4.2.1.1.table | 2 -- definitions/grib2/tables/7/4.2.10.0.table | 2 -- definitions/grib2/tables/7/4.2.10.1.table | 2 -- definitions/grib2/tables/7/4.2.10.191.table | 2 -- definitions/grib2/tables/7/4.2.10.2.table | 2 -- definitions/grib2/tables/7/4.2.10.3.table | 2 -- definitions/grib2/tables/7/4.2.10.4.table | 2 -- definitions/grib2/tables/7/4.2.2.0.table | 2 -- definitions/grib2/tables/7/4.2.2.3.table | 2 -- definitions/grib2/tables/7/4.2.3.0.table | 2 -- definitions/grib2/tables/7/4.2.3.1.table | 2 -- definitions/grib2/tables/7/4.201.table | 2 -- definitions/grib2/tables/7/4.202.table | 1 - definitions/grib2/tables/7/4.203.table | 1 - definitions/grib2/tables/7/4.204.table | 1 - definitions/grib2/tables/7/4.205.table | 1 - definitions/grib2/tables/7/4.206.table | 1 - definitions/grib2/tables/7/4.207.table | 1 - definitions/grib2/tables/7/4.208.table | 1 - definitions/grib2/tables/7/4.209.table | 1 - definitions/grib2/tables/7/4.210.table | 1 - definitions/grib2/tables/7/4.211.table | 1 - definitions/grib2/tables/7/4.212.table | 1 - definitions/grib2/tables/7/4.213.table | 1 - definitions/grib2/tables/7/4.217.table | 1 - definitions/grib2/tables/7/4.220.table | 1 - definitions/grib2/tables/7/4.221.table | 1 - definitions/grib2/tables/7/4.224.table | 4 ---- definitions/grib2/tables/7/4.230.table | 1 - definitions/grib2/tables/7/4.3.table | 2 -- definitions/grib2/tables/7/4.4.table | 2 -- definitions/grib2/tables/7/4.5.table | 6 ------ definitions/grib2/tables/7/4.6.table | 2 -- definitions/grib2/tables/7/4.7.table | 2 -- definitions/grib2/tables/7/4.8.table | 1 - definitions/grib2/tables/7/4.9.table | 1 - definitions/grib2/tables/7/4.91.table | 2 -- definitions/grib2/tables/7/5.0.table | 1 - definitions/grib2/tables/7/5.1.table | 1 - definitions/grib2/tables/7/5.2.table | 1 - definitions/grib2/tables/7/5.3.table | 1 - definitions/grib2/tables/7/5.4.table | 1 - definitions/grib2/tables/7/5.40.table | 1 - definitions/grib2/tables/7/5.5.table | 1 - definitions/grib2/tables/7/5.6.table | 1 - definitions/grib2/tables/8/0.0.table | 3 --- definitions/grib2/tables/8/1.2.table | 2 -- definitions/grib2/tables/8/1.3.table | 2 -- definitions/grib2/tables/8/1.4.table | 2 -- definitions/grib2/tables/8/3.0.table | 2 -- definitions/grib2/tables/8/3.1.table | 15 -------------- definitions/grib2/tables/8/3.10.table | 1 - definitions/grib2/tables/8/3.11.table | 1 - definitions/grib2/tables/8/3.15.table | 5 ----- definitions/grib2/tables/8/3.2.table | 2 -- definitions/grib2/tables/8/3.20.table | 2 -- definitions/grib2/tables/8/3.21.table | 3 --- definitions/grib2/tables/8/3.3.table | 2 -- definitions/grib2/tables/8/3.4.table | 1 - definitions/grib2/tables/8/3.7.table | 1 - definitions/grib2/tables/8/3.8.table | 2 -- definitions/grib2/tables/8/3.9.table | 1 - definitions/grib2/tables/8/4.0.table | 9 --------- definitions/grib2/tables/8/4.1.0.table | 2 -- definitions/grib2/tables/8/4.1.1.table | 2 -- definitions/grib2/tables/8/4.1.10.table | 2 -- definitions/grib2/tables/8/4.1.2.table | 2 -- definitions/grib2/tables/8/4.1.3.table | 2 -- definitions/grib2/tables/8/4.10.table | 2 -- definitions/grib2/tables/8/4.11.table | 2 -- definitions/grib2/tables/8/4.12.table | 2 -- definitions/grib2/tables/8/4.13.table | 2 -- definitions/grib2/tables/8/4.14.table | 2 -- definitions/grib2/tables/8/4.15.table | 2 -- definitions/grib2/tables/8/4.151.table | 1 - definitions/grib2/tables/8/4.2.0.0.table | 2 -- definitions/grib2/tables/8/4.2.0.1.table | 3 --- definitions/grib2/tables/8/4.2.0.13.table | 2 -- definitions/grib2/tables/8/4.2.0.14.table | 2 -- definitions/grib2/tables/8/4.2.0.15.table | 2 -- definitions/grib2/tables/8/4.2.0.16.table | 2 -- definitions/grib2/tables/8/4.2.0.18.table | 2 -- definitions/grib2/tables/8/4.2.0.19.table | 2 -- definitions/grib2/tables/8/4.2.0.190.table | 2 -- definitions/grib2/tables/8/4.2.0.191.table | 2 -- definitions/grib2/tables/8/4.2.0.2.table | 2 -- definitions/grib2/tables/8/4.2.0.20.table | 4 ---- definitions/grib2/tables/8/4.2.0.3.table | 2 -- definitions/grib2/tables/8/4.2.0.4.table | 3 --- definitions/grib2/tables/8/4.2.0.5.table | 2 -- definitions/grib2/tables/8/4.2.0.6.table | 2 -- definitions/grib2/tables/8/4.2.0.7.table | 2 -- definitions/grib2/tables/8/4.2.1.0.table | 2 -- definitions/grib2/tables/8/4.2.1.1.table | 2 -- definitions/grib2/tables/8/4.2.10.0.table | 2 -- definitions/grib2/tables/8/4.2.10.1.table | 2 -- definitions/grib2/tables/8/4.2.10.191.table | 2 -- definitions/grib2/tables/8/4.2.10.2.table | 2 -- definitions/grib2/tables/8/4.2.10.3.table | 2 -- definitions/grib2/tables/8/4.2.10.4.table | 3 --- definitions/grib2/tables/8/4.2.2.0.table | 2 -- definitions/grib2/tables/8/4.2.2.3.table | 2 -- definitions/grib2/tables/8/4.2.3.0.table | 2 -- definitions/grib2/tables/8/4.2.3.1.table | 2 -- definitions/grib2/tables/8/4.201.table | 2 -- definitions/grib2/tables/8/4.202.table | 2 -- definitions/grib2/tables/8/4.203.table | 2 -- definitions/grib2/tables/8/4.204.table | 2 -- definitions/grib2/tables/8/4.205.table | 2 -- definitions/grib2/tables/8/4.206.table | 2 -- definitions/grib2/tables/8/4.207.table | 2 -- definitions/grib2/tables/8/4.208.table | 2 -- definitions/grib2/tables/8/4.209.table | 2 -- definitions/grib2/tables/8/4.210.table | 2 -- definitions/grib2/tables/8/4.211.table | 2 -- definitions/grib2/tables/8/4.212.table | 2 -- definitions/grib2/tables/8/4.213.table | 2 -- definitions/grib2/tables/8/4.215.table | 4 ---- definitions/grib2/tables/8/4.216.table | 1 - definitions/grib2/tables/8/4.217.table | 2 -- definitions/grib2/tables/8/4.218.table | 3 --- definitions/grib2/tables/8/4.219.table | 2 -- definitions/grib2/tables/8/4.220.table | 2 -- definitions/grib2/tables/8/4.221.table | 2 -- definitions/grib2/tables/8/4.222.table | 2 -- definitions/grib2/tables/8/4.224.table | 4 ---- definitions/grib2/tables/8/4.230.table | 8 -------- definitions/grib2/tables/8/4.3.table | 2 -- definitions/grib2/tables/8/4.4.table | 3 --- definitions/grib2/tables/8/4.5.table | 7 ------- definitions/grib2/tables/8/4.6.table | 2 -- definitions/grib2/tables/8/4.7.table | 2 -- definitions/grib2/tables/8/4.8.table | 2 -- definitions/grib2/tables/8/4.9.table | 2 -- definitions/grib2/tables/8/4.91.table | 2 -- definitions/grib2/tables/8/5.0.table | 5 ----- definitions/grib2/tables/8/5.1.table | 2 -- definitions/grib2/tables/8/5.2.table | 3 --- definitions/grib2/tables/8/5.3.table | 2 -- definitions/grib2/tables/8/5.4.table | 2 -- definitions/grib2/tables/8/5.40.table | 1 - definitions/grib2/tables/8/5.5.table | 2 -- definitions/grib2/tables/8/5.6.table | 2 -- definitions/grib2/tables/8/5.7.table | 1 - definitions/grib2/tables/9/0.0.table | 3 --- definitions/grib2/tables/9/1.2.table | 2 -- definitions/grib2/tables/9/1.3.table | 2 -- definitions/grib2/tables/9/1.4.table | 2 -- definitions/grib2/tables/9/3.0.table | 2 -- definitions/grib2/tables/9/3.1.table | 15 -------------- definitions/grib2/tables/9/3.10.table | 1 - definitions/grib2/tables/9/3.11.table | 1 - definitions/grib2/tables/9/3.15.table | 5 ----- definitions/grib2/tables/9/3.2.table | 2 -- definitions/grib2/tables/9/3.20.table | 2 -- definitions/grib2/tables/9/3.21.table | 3 --- definitions/grib2/tables/9/3.3.table | 2 -- definitions/grib2/tables/9/3.4.table | 1 - definitions/grib2/tables/9/3.7.table | 1 - definitions/grib2/tables/9/3.8.table | 2 -- definitions/grib2/tables/9/3.9.table | 1 - definitions/grib2/tables/9/4.0.table | 9 --------- definitions/grib2/tables/9/4.1.0.table | 2 -- definitions/grib2/tables/9/4.1.1.table | 2 -- definitions/grib2/tables/9/4.1.10.table | 2 -- definitions/grib2/tables/9/4.1.2.table | 2 -- definitions/grib2/tables/9/4.1.3.table | 2 -- definitions/grib2/tables/9/4.10.table | 2 -- definitions/grib2/tables/9/4.11.table | 2 -- definitions/grib2/tables/9/4.12.table | 2 -- definitions/grib2/tables/9/4.13.table | 2 -- definitions/grib2/tables/9/4.14.table | 2 -- definitions/grib2/tables/9/4.15.table | 2 -- definitions/grib2/tables/9/4.151.table | 1 - definitions/grib2/tables/9/4.2.0.0.table | 2 -- definitions/grib2/tables/9/4.2.0.1.table | 3 --- definitions/grib2/tables/9/4.2.0.13.table | 2 -- definitions/grib2/tables/9/4.2.0.14.table | 2 -- definitions/grib2/tables/9/4.2.0.15.table | 2 -- definitions/grib2/tables/9/4.2.0.16.table | 2 -- definitions/grib2/tables/9/4.2.0.18.table | 2 -- definitions/grib2/tables/9/4.2.0.19.table | 2 -- definitions/grib2/tables/9/4.2.0.190.table | 2 -- definitions/grib2/tables/9/4.2.0.191.table | 2 -- definitions/grib2/tables/9/4.2.0.2.table | 2 -- definitions/grib2/tables/9/4.2.0.20.table | 4 ---- definitions/grib2/tables/9/4.2.0.3.table | 2 -- definitions/grib2/tables/9/4.2.0.4.table | 3 --- definitions/grib2/tables/9/4.2.0.5.table | 2 -- definitions/grib2/tables/9/4.2.0.6.table | 2 -- definitions/grib2/tables/9/4.2.0.7.table | 2 -- definitions/grib2/tables/9/4.2.1.0.table | 2 -- definitions/grib2/tables/9/4.2.1.1.table | 2 -- definitions/grib2/tables/9/4.2.10.0.table | 2 -- definitions/grib2/tables/9/4.2.10.1.table | 2 -- definitions/grib2/tables/9/4.2.10.191.table | 2 -- definitions/grib2/tables/9/4.2.10.2.table | 2 -- definitions/grib2/tables/9/4.2.10.3.table | 2 -- definitions/grib2/tables/9/4.2.10.4.table | 3 --- definitions/grib2/tables/9/4.2.2.0.table | 2 -- definitions/grib2/tables/9/4.2.2.3.table | 2 -- definitions/grib2/tables/9/4.2.2.4.table | 1 - definitions/grib2/tables/9/4.2.3.0.table | 2 -- definitions/grib2/tables/9/4.2.3.1.table | 2 -- definitions/grib2/tables/9/4.201.table | 2 -- definitions/grib2/tables/9/4.202.table | 2 -- definitions/grib2/tables/9/4.203.table | 2 -- definitions/grib2/tables/9/4.204.table | 2 -- definitions/grib2/tables/9/4.205.table | 2 -- definitions/grib2/tables/9/4.206.table | 2 -- definitions/grib2/tables/9/4.207.table | 2 -- definitions/grib2/tables/9/4.208.table | 2 -- definitions/grib2/tables/9/4.209.table | 2 -- definitions/grib2/tables/9/4.210.table | 2 -- definitions/grib2/tables/9/4.211.table | 2 -- definitions/grib2/tables/9/4.212.table | 2 -- definitions/grib2/tables/9/4.213.table | 2 -- definitions/grib2/tables/9/4.215.table | 4 ---- definitions/grib2/tables/9/4.216.table | 1 - definitions/grib2/tables/9/4.217.table | 2 -- definitions/grib2/tables/9/4.218.table | 3 --- definitions/grib2/tables/9/4.219.table | 2 -- definitions/grib2/tables/9/4.220.table | 2 -- definitions/grib2/tables/9/4.221.table | 2 -- definitions/grib2/tables/9/4.222.table | 2 -- definitions/grib2/tables/9/4.224.table | 4 ---- definitions/grib2/tables/9/4.227.table | 2 -- definitions/grib2/tables/9/4.230.table | 8 -------- definitions/grib2/tables/9/4.3.table | 2 -- definitions/grib2/tables/9/4.4.table | 3 --- definitions/grib2/tables/9/4.5.table | 7 ------- definitions/grib2/tables/9/4.6.table | 2 -- definitions/grib2/tables/9/4.7.table | 2 -- definitions/grib2/tables/9/4.8.table | 2 -- definitions/grib2/tables/9/4.9.table | 2 -- definitions/grib2/tables/9/4.91.table | 2 -- definitions/grib2/tables/9/5.0.table | 5 ----- definitions/grib2/tables/9/5.1.table | 2 -- definitions/grib2/tables/9/5.2.table | 3 --- definitions/grib2/tables/9/5.3.table | 2 -- definitions/grib2/tables/9/5.4.table | 2 -- definitions/grib2/tables/9/5.40.table | 1 - definitions/grib2/tables/9/5.5.table | 2 -- definitions/grib2/tables/9/5.6.table | 2 -- definitions/grib2/tables/9/5.7.table | 1 - .../grib2/tables/local/ecmf/4/1.2.table | 1 - .../grib2/tables/local/kwbc/1/4.5.table | 9 --------- 3331 files changed, 8139 deletions(-) diff --git a/definitions/grib2/tables/0.0.table b/definitions/grib2/tables/0.0.table index 1746f737c..b7c1f613f 100644 --- a/definitions/grib2/tables/0.0.table +++ b/definitions/grib2/tables/0.0.table @@ -4,10 +4,6 @@ 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/definitions/grib2/tables/0/4.12.table b/definitions/grib2/tables/0/4.12.table index 25880d822..b72100f3c 100644 --- a/definitions/grib2/tables/0/4.12.table +++ b/definitions/grib2/tables/0/4.12.table @@ -1,5 +1,4 @@ 0 0 Maintenance Mode 1 1 Clear air 2 2 Precipitation -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.13.table b/definitions/grib2/tables/0/4.13.table index f9d88b8bc..fc291ad18 100644 --- a/definitions/grib2/tables/0/4.13.table +++ b/definitions/grib2/tables/0/4.13.table @@ -1,4 +1,3 @@ 0 0 No quality control applied 1 1 Quality control applied -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.14.table b/definitions/grib2/tables/0/4.14.table index 8b87dc1d0..010634951 100644 --- a/definitions/grib2/tables/0/4.14.table +++ b/definitions/grib2/tables/0/4.14.table @@ -1,4 +1,3 @@ 0 0 No clutter filter used 1 1 Clutter filter used -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.15.table b/definitions/grib2/tables/0/4.15.table index 0d6013275..f11376d23 100644 --- a/definitions/grib2/tables/0/4.15.table +++ b/definitions/grib2/tables/0/4.15.table @@ -1,4 +1,3 @@ 0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.151.table b/definitions/grib2/tables/0/4.151.table index fcd8406c4..6fb8f79aa 100644 --- a/definitions/grib2/tables/0/4.151.table +++ b/definitions/grib2/tables/0/4.151.table @@ -2,5 +2,4 @@ 1 1 suspect 2 2 acceptable 3 3 excellent -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.201.table b/definitions/grib2/tables/0/4.201.table index 4bef8f107..ba7bb6bd4 100644 --- a/definitions/grib2/tables/0/4.201.table +++ b/definitions/grib2/tables/0/4.201.table @@ -3,5 +3,4 @@ 3 3 Freezing rain 4 4 Mixed/ice 5 5 Snow -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.202.table b/definitions/grib2/tables/0/4.202.table index 59e68255c..766abfd16 100644 --- a/definitions/grib2/tables/0/4.202.table +++ b/definitions/grib2/tables/0/4.202.table @@ -1,2 +1 @@ -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.204.table b/definitions/grib2/tables/0/4.204.table index 77a80d665..07e5d3a25 100644 --- a/definitions/grib2/tables/0/4.204.table +++ b/definitions/grib2/tables/0/4.204.table @@ -3,5 +3,4 @@ 2 2 Few (3% - 15%) 3 3 Scattered (16% - 45%) 4 4 Numerous (> 45%) -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.205.table b/definitions/grib2/tables/0/4.205.table index 47098f4a0..3f3dff0c2 100644 --- a/definitions/grib2/tables/0/4.205.table +++ b/definitions/grib2/tables/0/4.205.table @@ -1,4 +1,3 @@ 0 0 Aerosol not present 1 1 Aerosol present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.206.table b/definitions/grib2/tables/0/4.206.table index 3b040fc87..b7893c9f5 100644 --- a/definitions/grib2/tables/0/4.206.table +++ b/definitions/grib2/tables/0/4.206.table @@ -1,4 +1,3 @@ 0 0 Not present 1 1 Present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.207.table b/definitions/grib2/tables/0/4.207.table index d24bc91fe..b95e0981a 100644 --- a/definitions/grib2/tables/0/4.207.table +++ b/definitions/grib2/tables/0/4.207.table @@ -2,5 +2,4 @@ 1 1 Light 2 2 Moderate 3 3 Severe -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.208.table b/definitions/grib2/tables/0/4.208.table index 88d92268f..f40149be5 100644 --- a/definitions/grib2/tables/0/4.208.table +++ b/definitions/grib2/tables/0/4.208.table @@ -3,5 +3,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.209.table b/definitions/grib2/tables/0/4.209.table index 915adba05..492e88651 100644 --- a/definitions/grib2/tables/0/4.209.table +++ b/definitions/grib2/tables/0/4.209.table @@ -2,5 +2,4 @@ 2 2 Mechanically driven turbulence 3 3 Forced convection 4 4 Free convection -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.210.table b/definitions/grib2/tables/0/4.210.table index a96417b74..c95a31360 100644 --- a/definitions/grib2/tables/0/4.210.table +++ b/definitions/grib2/tables/0/4.210.table @@ -1,4 +1,3 @@ 0 0 Contrail not present 1 1 Contrail present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.211.table b/definitions/grib2/tables/0/4.211.table index 753c15f5a..dfce01939 100644 --- a/definitions/grib2/tables/0/4.211.table +++ b/definitions/grib2/tables/0/4.211.table @@ -1,5 +1,4 @@ 0 0 Low bypass 1 1 High bypass 2 2 Non bypass -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.212.table b/definitions/grib2/tables/0/4.212.table index 5fff126e2..57fe82244 100644 --- a/definitions/grib2/tables/0/4.212.table +++ b/definitions/grib2/tables/0/4.212.table @@ -11,5 +11,4 @@ 11 11 Ice 12 12 Tropical forest 13 13 Savannah -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.213.table b/definitions/grib2/tables/0/4.213.table index 3b826a0fa..bc5b301c3 100644 --- a/definitions/grib2/tables/0/4.213.table +++ b/definitions/grib2/tables/0/4.213.table @@ -9,5 +9,4 @@ 9 9 Sandy clay 10 10 Silty clay 11 11 Clay -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.217.table b/definitions/grib2/tables/0/4.217.table index 79fd1815f..9c2c78b5a 100644 --- a/definitions/grib2/tables/0/4.217.table +++ b/definitions/grib2/tables/0/4.217.table @@ -2,5 +2,4 @@ 1 1 Clear over land 2 2 Cloud 3 3 No data -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.220.table b/definitions/grib2/tables/0/4.220.table index db83ed7a3..875f98f87 100644 --- a/definitions/grib2/tables/0/4.220.table +++ b/definitions/grib2/tables/0/4.220.table @@ -1,4 +1,3 @@ 0 0 Latitude 1 1 Longitude -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.221.table b/definitions/grib2/tables/0/4.221.table index 5c4ee7c5c..cbbdfb348 100644 --- a/definitions/grib2/tables/0/4.221.table +++ b/definitions/grib2/tables/0/4.221.table @@ -1,4 +1,3 @@ 0 0 Not included 1 1 Extrapolated -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.7.table b/definitions/grib2/tables/0/4.7.table index 0f480b46d..721cf259f 100644 --- a/definitions/grib2/tables/0/4.7.table +++ b/definitions/grib2/tables/0/4.7.table @@ -5,5 +5,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.8.table b/definitions/grib2/tables/0/4.8.table index 9b5c904d6..32395df19 100644 --- a/definitions/grib2/tables/0/4.8.table +++ b/definitions/grib2/tables/0/4.8.table @@ -1,4 +1,3 @@ 0 0 Anomaly correlation 1 1 Root mean square -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.9.table b/definitions/grib2/tables/0/4.9.table index fe1f72c8f..47af85a3b 100644 --- a/definitions/grib2/tables/0/4.9.table +++ b/definitions/grib2/tables/0/4.9.table @@ -3,5 +3,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/0/4.91.table b/definitions/grib2/tables/0/4.91.table index d0cde6a7b..c0ac7e538 100644 --- a/definitions/grib2/tables/0/4.91.table +++ b/definitions/grib2/tables/0/4.91.table @@ -10,5 +10,4 @@ 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-254 Reserved for local use 255 missing Missing diff --git a/definitions/grib2/tables/0/5.6.table b/definitions/grib2/tables/0/5.6.table index df2e2fe59..504d9baa9 100644 --- a/definitions/grib2/tables/0/5.6.table +++ b/definitions/grib2/tables/0/5.6.table @@ -1,4 +1,3 @@ 1 1 First-order spatial differencing 2 2 Second-order spatial differencing -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.12.table b/definitions/grib2/tables/1/4.12.table index 88e78ade6..c847e27f2 100644 --- a/definitions/grib2/tables/1/4.12.table +++ b/definitions/grib2/tables/1/4.12.table @@ -1,5 +1,4 @@ 0 0 Maintenance Mode 1 1 Clear air 2 2 Precipitation -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.13.table b/definitions/grib2/tables/1/4.13.table index f9d88b8bc..fc291ad18 100644 --- a/definitions/grib2/tables/1/4.13.table +++ b/definitions/grib2/tables/1/4.13.table @@ -1,4 +1,3 @@ 0 0 No quality control applied 1 1 Quality control applied -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.14.table b/definitions/grib2/tables/1/4.14.table index 8b87dc1d0..010634951 100644 --- a/definitions/grib2/tables/1/4.14.table +++ b/definitions/grib2/tables/1/4.14.table @@ -1,4 +1,3 @@ 0 0 No clutter filter used 1 1 Clutter filter used -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.15.table b/definitions/grib2/tables/1/4.15.table index 0d6013275..f11376d23 100644 --- a/definitions/grib2/tables/1/4.15.table +++ b/definitions/grib2/tables/1/4.15.table @@ -1,4 +1,3 @@ 0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.151.table b/definitions/grib2/tables/1/4.151.table index fcd8406c4..6fb8f79aa 100644 --- a/definitions/grib2/tables/1/4.151.table +++ b/definitions/grib2/tables/1/4.151.table @@ -2,5 +2,4 @@ 1 1 suspect 2 2 acceptable 3 3 excellent -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.201.table b/definitions/grib2/tables/1/4.201.table index 3b8ae1e90..7fd0a3e91 100644 --- a/definitions/grib2/tables/1/4.201.table +++ b/definitions/grib2/tables/1/4.201.table @@ -3,5 +3,4 @@ 3 3 Freezing rain 4 4 Mixed/ice 5 5 Snow -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.202.table b/definitions/grib2/tables/1/4.202.table index 59e68255c..766abfd16 100644 --- a/definitions/grib2/tables/1/4.202.table +++ b/definitions/grib2/tables/1/4.202.table @@ -1,2 +1 @@ -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.204.table b/definitions/grib2/tables/1/4.204.table index 77a80d665..07e5d3a25 100644 --- a/definitions/grib2/tables/1/4.204.table +++ b/definitions/grib2/tables/1/4.204.table @@ -3,5 +3,4 @@ 2 2 Few (3% - 15%) 3 3 Scattered (16% - 45%) 4 4 Numerous (> 45%) -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.205.table b/definitions/grib2/tables/1/4.205.table index 47098f4a0..3f3dff0c2 100644 --- a/definitions/grib2/tables/1/4.205.table +++ b/definitions/grib2/tables/1/4.205.table @@ -1,4 +1,3 @@ 0 0 Aerosol not present 1 1 Aerosol present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.206.table b/definitions/grib2/tables/1/4.206.table index 3b040fc87..b7893c9f5 100644 --- a/definitions/grib2/tables/1/4.206.table +++ b/definitions/grib2/tables/1/4.206.table @@ -1,4 +1,3 @@ 0 0 Not present 1 1 Present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.207.table b/definitions/grib2/tables/1/4.207.table index e701c476e..a74654d99 100644 --- a/definitions/grib2/tables/1/4.207.table +++ b/definitions/grib2/tables/1/4.207.table @@ -2,5 +2,4 @@ 1 1 Light 2 2 Moderate 3 3 Severe -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.208.table b/definitions/grib2/tables/1/4.208.table index 88d92268f..f40149be5 100644 --- a/definitions/grib2/tables/1/4.208.table +++ b/definitions/grib2/tables/1/4.208.table @@ -3,5 +3,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.209.table b/definitions/grib2/tables/1/4.209.table index 915adba05..492e88651 100644 --- a/definitions/grib2/tables/1/4.209.table +++ b/definitions/grib2/tables/1/4.209.table @@ -2,5 +2,4 @@ 2 2 Mechanically driven turbulence 3 3 Forced convection 4 4 Free convection -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.210.table b/definitions/grib2/tables/1/4.210.table index a96417b74..c95a31360 100644 --- a/definitions/grib2/tables/1/4.210.table +++ b/definitions/grib2/tables/1/4.210.table @@ -1,4 +1,3 @@ 0 0 Contrail not present 1 1 Contrail present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.211.table b/definitions/grib2/tables/1/4.211.table index 753c15f5a..dfce01939 100644 --- a/definitions/grib2/tables/1/4.211.table +++ b/definitions/grib2/tables/1/4.211.table @@ -1,5 +1,4 @@ 0 0 Low bypass 1 1 High bypass 2 2 Non bypass -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.212.table b/definitions/grib2/tables/1/4.212.table index 5fff126e2..57fe82244 100644 --- a/definitions/grib2/tables/1/4.212.table +++ b/definitions/grib2/tables/1/4.212.table @@ -11,5 +11,4 @@ 11 11 Ice 12 12 Tropical forest 13 13 Savannah -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.213.table b/definitions/grib2/tables/1/4.213.table index 3b826a0fa..bc5b301c3 100644 --- a/definitions/grib2/tables/1/4.213.table +++ b/definitions/grib2/tables/1/4.213.table @@ -9,5 +9,4 @@ 9 9 Sandy clay 10 10 Silty clay 11 11 Clay -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.217.table b/definitions/grib2/tables/1/4.217.table index 79fd1815f..9c2c78b5a 100644 --- a/definitions/grib2/tables/1/4.217.table +++ b/definitions/grib2/tables/1/4.217.table @@ -2,5 +2,4 @@ 1 1 Clear over land 2 2 Cloud 3 3 No data -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.220.table b/definitions/grib2/tables/1/4.220.table index db83ed7a3..875f98f87 100644 --- a/definitions/grib2/tables/1/4.220.table +++ b/definitions/grib2/tables/1/4.220.table @@ -1,4 +1,3 @@ 0 0 Latitude 1 1 Longitude -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.221.table b/definitions/grib2/tables/1/4.221.table index 5c4ee7c5c..cbbdfb348 100644 --- a/definitions/grib2/tables/1/4.221.table +++ b/definitions/grib2/tables/1/4.221.table @@ -1,4 +1,3 @@ 0 0 Not included 1 1 Extrapolated -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.7.table b/definitions/grib2/tables/1/4.7.table index 0f480b46d..721cf259f 100644 --- a/definitions/grib2/tables/1/4.7.table +++ b/definitions/grib2/tables/1/4.7.table @@ -5,5 +5,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.8.table b/definitions/grib2/tables/1/4.8.table index 9b5c904d6..32395df19 100644 --- a/definitions/grib2/tables/1/4.8.table +++ b/definitions/grib2/tables/1/4.8.table @@ -1,4 +1,3 @@ 0 0 Anomaly correlation 1 1 Root mean square -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/4.9.table b/definitions/grib2/tables/1/4.9.table index fe1f72c8f..47af85a3b 100644 --- a/definitions/grib2/tables/1/4.9.table +++ b/definitions/grib2/tables/1/4.9.table @@ -3,5 +3,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/1/5.6.table b/definitions/grib2/tables/1/5.6.table index df2e2fe59..504d9baa9 100644 --- a/definitions/grib2/tables/1/5.6.table +++ b/definitions/grib2/tables/1/5.6.table @@ -1,4 +1,3 @@ 1 1 First-order spatial differencing 2 2 Second-order spatial differencing -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/10/0.0.table b/definitions/grib2/tables/10/0.0.table index 88d8b2cb3..41ff90231 100644 --- a/definitions/grib2/tables/10/0.0.table +++ b/definitions/grib2/tables/10/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/10/1.2.table b/definitions/grib2/tables/10/1.2.table index 606bf8300..05dc8c2ea 100644 --- a/definitions/grib2/tables/10/1.2.table +++ b/definitions/grib2/tables/10/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/10/1.3.table b/definitions/grib2/tables/10/1.3.table index 712bb2ba8..7c0132a8e 100644 --- a/definitions/grib2/tables/10/1.3.table +++ b/definitions/grib2/tables/10/1.3.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/10/1.4.table b/definitions/grib2/tables/10/1.4.table index 7f47afd96..d14ca167a 100644 --- a/definitions/grib2/tables/10/1.4.table +++ b/definitions/grib2/tables/10/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/10/3.0.table b/definitions/grib2/tables/10/3.0.table index 4269b25ad..a803cb068 100644 --- a/definitions/grib2/tables/10/3.0.table +++ b/definitions/grib2/tables/10/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/3.1.table b/definitions/grib2/tables/10/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/10/3.1.table +++ b/definitions/grib2/tables/10/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/10/3.10.table b/definitions/grib2/tables/10/3.10.table index da36dc664..da6ef60f8 100644 --- a/definitions/grib2/tables/10/3.10.table +++ b/definitions/grib2/tables/10/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/10/3.11.table b/definitions/grib2/tables/10/3.11.table index 0a299af98..bad05e213 100644 --- a/definitions/grib2/tables/10/3.11.table +++ b/definitions/grib2/tables/10/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/10/3.15.table b/definitions/grib2/tables/10/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/10/3.15.table +++ b/definitions/grib2/tables/10/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/10/3.2.table b/definitions/grib2/tables/10/3.2.table index 58a2a548b..f96955c77 100644 --- a/definitions/grib2/tables/10/3.2.table +++ b/definitions/grib2/tables/10/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/10/3.20.table b/definitions/grib2/tables/10/3.20.table index 63de6b1a9..49f742062 100644 --- a/definitions/grib2/tables/10/3.20.table +++ b/definitions/grib2/tables/10/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/3.21.table b/definitions/grib2/tables/10/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/10/3.21.table +++ b/definitions/grib2/tables/10/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/10/3.3.table b/definitions/grib2/tables/10/3.3.table index bd47e2509..cf950fbcf 100644 --- a/definitions/grib2/tables/10/3.3.table +++ b/definitions/grib2/tables/10/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/10/3.4.table b/definitions/grib2/tables/10/3.4.table index ea9cbe829..d77b6b89f 100644 --- a/definitions/grib2/tables/10/3.4.table +++ b/definitions/grib2/tables/10/3.4.table @@ -7,4 +7,3 @@ 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/definitions/grib2/tables/10/3.7.table b/definitions/grib2/tables/10/3.7.table index 2d01b8d52..dc17ad734 100644 --- a/definitions/grib2/tables/10/3.7.table +++ b/definitions/grib2/tables/10/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/10/3.8.table b/definitions/grib2/tables/10/3.8.table index 6df554ae9..719e18df9 100644 --- a/definitions/grib2/tables/10/3.8.table +++ b/definitions/grib2/tables/10/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/10/3.9.table b/definitions/grib2/tables/10/3.9.table index 530d1dee0..5e7d3d880 100644 --- a/definitions/grib2/tables/10/3.9.table +++ b/definitions/grib2/tables/10/3.9.table @@ -1,4 +1,3 @@ # 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/definitions/grib2/tables/10/4.0.table b/definitions/grib2/tables/10/4.0.table index 28733d42d..bea2b95f8 100644 --- a/definitions/grib2/tables/10/4.0.table +++ b/definitions/grib2/tables/10/4.0.table @@ -15,13 +15,10 @@ 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 @@ -33,21 +30,15 @@ 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/definitions/grib2/tables/10/4.1.0.table b/definitions/grib2/tables/10/4.1.0.table index 3413dbad5..c5f166b65 100644 --- a/definitions/grib2/tables/10/4.1.0.table +++ b/definitions/grib2/tables/10/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/10/4.1.1.table b/definitions/grib2/tables/10/4.1.1.table index dea5bc49e..51d3e1752 100644 --- a/definitions/grib2/tables/10/4.1.1.table +++ b/definitions/grib2/tables/10/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/10/4.1.10.table b/definitions/grib2/tables/10/4.1.10.table index e6ce6faf7..2541195f0 100644 --- a/definitions/grib2/tables/10/4.1.10.table +++ b/definitions/grib2/tables/10/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/10/4.1.2.table b/definitions/grib2/tables/10/4.1.2.table index 805836998..014bdf18e 100644 --- a/definitions/grib2/tables/10/4.1.2.table +++ b/definitions/grib2/tables/10/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/10/4.1.3.table b/definitions/grib2/tables/10/4.1.3.table index adcbfb051..4ac485be4 100644 --- a/definitions/grib2/tables/10/4.1.3.table +++ b/definitions/grib2/tables/10/4.1.3.table @@ -1,8 +1,6 @@ # 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/definitions/grib2/tables/10/4.10.table b/definitions/grib2/tables/10/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/10/4.10.table +++ b/definitions/grib2/tables/10/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/10/4.11.table b/definitions/grib2/tables/10/4.11.table index af9ff29ad..54d5c84de 100644 --- a/definitions/grib2/tables/10/4.11.table +++ b/definitions/grib2/tables/10/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/10/4.12.table b/definitions/grib2/tables/10/4.12.table index 6cab67bf5..64c3bdbd9 100644 --- a/definitions/grib2/tables/10/4.12.table +++ b/definitions/grib2/tables/10/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/10/4.13.table b/definitions/grib2/tables/10/4.13.table index f090fb9ae..20415bfc5 100644 --- a/definitions/grib2/tables/10/4.13.table +++ b/definitions/grib2/tables/10/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/4.14.table b/definitions/grib2/tables/10/4.14.table index bcb04f328..d8a259329 100644 --- a/definitions/grib2/tables/10/4.14.table +++ b/definitions/grib2/tables/10/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/4.15.table b/definitions/grib2/tables/10/4.15.table index 6e1ef5745..8e1a90426 100644 --- a/definitions/grib2/tables/10/4.15.table +++ b/definitions/grib2/tables/10/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/10/4.151.table b/definitions/grib2/tables/10/4.151.table index 30487afb4..90a8c6ca0 100644 --- a/definitions/grib2/tables/10/4.151.table +++ b/definitions/grib2/tables/10/4.151.table @@ -3,5 +3,4 @@ 1 1 suspect 2 2 acceptable 3 3 excellent -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/10/4.2.0.0.table b/definitions/grib2/tables/10/4.2.0.0.table index 8656f8974..79dd8518e 100644 --- a/definitions/grib2/tables/10/4.2.0.0.table +++ b/definitions/grib2/tables/10/4.2.0.0.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/10/4.2.0.1.table b/definitions/grib2/tables/10/4.2.0.1.table index 3d68fbe86..06c78260d 100644 --- a/definitions/grib2/tables/10/4.2.0.1.table +++ b/definitions/grib2/tables/10/4.2.0.1.table @@ -86,10 +86,7 @@ 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/definitions/grib2/tables/10/4.2.0.13.table b/definitions/grib2/tables/10/4.2.0.13.table index 90ab7d1b9..3aead6cbd 100644 --- a/definitions/grib2/tables/10/4.2.0.13.table +++ b/definitions/grib2/tables/10/4.2.0.13.table @@ -1,5 +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) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/10/4.2.0.14.table b/definitions/grib2/tables/10/4.2.0.14.table index fca42ccc7..62943028c 100644 --- a/definitions/grib2/tables/10/4.2.0.14.table +++ b/definitions/grib2/tables/10/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/10/4.2.0.15.table b/definitions/grib2/tables/10/4.2.0.15.table index 66ccff19d..734440838 100644 --- a/definitions/grib2/tables/10/4.2.0.15.table +++ b/definitions/grib2/tables/10/4.2.0.15.table @@ -14,6 +14,4 @@ 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/definitions/grib2/tables/10/4.2.0.16.table b/definitions/grib2/tables/10/4.2.0.16.table index 18dedb7c0..98630ec0e 100644 --- a/definitions/grib2/tables/10/4.2.0.16.table +++ b/definitions/grib2/tables/10/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/10/4.2.0.18.table b/definitions/grib2/tables/10/4.2.0.18.table index 165aa6008..6de688a0b 100644 --- a/definitions/grib2/tables/10/4.2.0.18.table +++ b/definitions/grib2/tables/10/4.2.0.18.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/10/4.2.0.19.table b/definitions/grib2/tables/10/4.2.0.19.table index 90003262e..1c38a0477 100644 --- a/definitions/grib2/tables/10/4.2.0.19.table +++ b/definitions/grib2/tables/10/4.2.0.19.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/10/4.2.0.190.table b/definitions/grib2/tables/10/4.2.0.190.table index 3d9d5ff85..f401ef529 100644 --- a/definitions/grib2/tables/10/4.2.0.190.table +++ b/definitions/grib2/tables/10/4.2.0.190.table @@ -1,5 +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 (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/10/4.2.0.191.table b/definitions/grib2/tables/10/4.2.0.191.table index 4ff12e532..c44d4c807 100644 --- a/definitions/grib2/tables/10/4.2.0.191.table +++ b/definitions/grib2/tables/10/4.2.0.191.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/10/4.2.0.2.table b/definitions/grib2/tables/10/4.2.0.2.table index 6fcd262b0..e680d1570 100644 --- a/definitions/grib2/tables/10/4.2.0.2.table +++ b/definitions/grib2/tables/10/4.2.0.2.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/10/4.2.0.20.table b/definitions/grib2/tables/10/4.2.0.20.table index 898a774eb..59518592d 100644 --- a/definitions/grib2/tables/10/4.2.0.20.table +++ b/definitions/grib2/tables/10/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -25,7 +24,6 @@ 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) @@ -37,6 +35,4 @@ 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/definitions/grib2/tables/10/4.2.0.3.table b/definitions/grib2/tables/10/4.2.0.3.table index 08c1c7bc3..03f4c15ff 100644 --- a/definitions/grib2/tables/10/4.2.0.3.table +++ b/definitions/grib2/tables/10/4.2.0.3.table @@ -26,6 +26,4 @@ 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/definitions/grib2/tables/10/4.2.0.4.table b/definitions/grib2/tables/10/4.2.0.4.table index 336fdb421..6c69548e3 100644 --- a/definitions/grib2/tables/10/4.2.0.4.table +++ b/definitions/grib2/tables/10/4.2.0.4.table @@ -12,9 +12,6 @@ 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/definitions/grib2/tables/10/4.2.0.5.table b/definitions/grib2/tables/10/4.2.0.5.table index 86a199ace..0e3775b06 100644 --- a/definitions/grib2/tables/10/4.2.0.5.table +++ b/definitions/grib2/tables/10/4.2.0.5.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/10/4.2.0.6.table b/definitions/grib2/tables/10/4.2.0.6.table index fb935344e..6f3724ceb 100644 --- a/definitions/grib2/tables/10/4.2.0.6.table +++ b/definitions/grib2/tables/10/4.2.0.6.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/10/4.2.0.7.table b/definitions/grib2/tables/10/4.2.0.7.table index 6c1794c73..4d22c0129 100644 --- a/definitions/grib2/tables/10/4.2.0.7.table +++ b/definitions/grib2/tables/10/4.2.0.7.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/10/4.2.1.0.table b/definitions/grib2/tables/10/4.2.1.0.table index 9c4d129da..4d79bd24f 100644 --- a/definitions/grib2/tables/10/4.2.1.0.table +++ b/definitions/grib2/tables/10/4.2.1.0.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/10/4.2.1.1.table b/definitions/grib2/tables/10/4.2.1.1.table index aa560e479..24efd5d1a 100644 --- a/definitions/grib2/tables/10/4.2.1.1.table +++ b/definitions/grib2/tables/10/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/10/4.2.10.0.table b/definitions/grib2/tables/10/4.2.10.0.table index 78d3bdef4..972eb7132 100644 --- a/definitions/grib2/tables/10/4.2.10.0.table +++ b/definitions/grib2/tables/10/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/10/4.2.10.1.table b/definitions/grib2/tables/10/4.2.10.1.table index de6b562b8..ef6f9dc67 100644 --- a/definitions/grib2/tables/10/4.2.10.1.table +++ b/definitions/grib2/tables/10/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/10/4.2.10.191.table b/definitions/grib2/tables/10/4.2.10.191.table index 6cafbd3d4..9b1fb12bb 100644 --- a/definitions/grib2/tables/10/4.2.10.191.table +++ b/definitions/grib2/tables/10/4.2.10.191.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/4.2.10.2.table b/definitions/grib2/tables/10/4.2.10.2.table index 258aeef18..5c14f114c 100644 --- a/definitions/grib2/tables/10/4.2.10.2.table +++ b/definitions/grib2/tables/10/4.2.10.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/10/4.2.10.3.table b/definitions/grib2/tables/10/4.2.10.3.table index 3b9a2df46..7e8a250e4 100644 --- a/definitions/grib2/tables/10/4.2.10.3.table +++ b/definitions/grib2/tables/10/4.2.10.3.table @@ -1,6 +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) -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/10/4.2.10.4.table b/definitions/grib2/tables/10/4.2.10.4.table index 91ffb2b29..21aae1504 100644 --- a/definitions/grib2/tables/10/4.2.10.4.table +++ b/definitions/grib2/tables/10/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/10/4.2.2.0.table b/definitions/grib2/tables/10/4.2.2.0.table index 0632ff414..95456e01d 100644 --- a/definitions/grib2/tables/10/4.2.2.0.table +++ b/definitions/grib2/tables/10/4.2.2.0.table @@ -32,6 +32,4 @@ 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/definitions/grib2/tables/10/4.2.2.3.table b/definitions/grib2/tables/10/4.2.2.3.table index d7db59d5e..e24fb0798 100644 --- a/definitions/grib2/tables/10/4.2.2.3.table +++ b/definitions/grib2/tables/10/4.2.2.3.table @@ -22,6 +22,4 @@ 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/definitions/grib2/tables/10/4.2.2.4.table b/definitions/grib2/tables/10/4.2.2.4.table index 0992f59db..89ad52214 100644 --- a/definitions/grib2/tables/10/4.2.2.4.table +++ b/definitions/grib2/tables/10/4.2.2.4.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/10/4.2.3.0.table b/definitions/grib2/tables/10/4.2.3.0.table index 8c19d43b2..e06377ac2 100644 --- a/definitions/grib2/tables/10/4.2.3.0.table +++ b/definitions/grib2/tables/10/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/10/4.2.3.1.table b/definitions/grib2/tables/10/4.2.3.1.table index af1896b14..2e35a816a 100644 --- a/definitions/grib2/tables/10/4.2.3.1.table +++ b/definitions/grib2/tables/10/4.2.3.1.table @@ -23,6 +23,4 @@ 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/definitions/grib2/tables/10/4.201.table b/definitions/grib2/tables/10/4.201.table index e16d5d808..83a129c62 100644 --- a/definitions/grib2/tables/10/4.201.table +++ b/definitions/grib2/tables/10/4.201.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/10/4.202.table b/definitions/grib2/tables/10/4.202.table index aa93458f1..31ea5e959 100644 --- a/definitions/grib2/tables/10/4.202.table +++ b/definitions/grib2/tables/10/4.202.table @@ -1,4 +1,2 @@ # 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/definitions/grib2/tables/10/4.203.table b/definitions/grib2/tables/10/4.203.table index b8c37f87f..54a58ba6a 100644 --- a/definitions/grib2/tables/10/4.203.table +++ b/definitions/grib2/tables/10/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/10/4.204.table b/definitions/grib2/tables/10/4.204.table index 8d8bca9b2..9bc7d0300 100644 --- a/definitions/grib2/tables/10/4.204.table +++ b/definitions/grib2/tables/10/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/10/4.205.table b/definitions/grib2/tables/10/4.205.table index 3fadf7d80..0cc467381 100644 --- a/definitions/grib2/tables/10/4.205.table +++ b/definitions/grib2/tables/10/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/4.206.table b/definitions/grib2/tables/10/4.206.table index 43b0ba137..dd078ebf5 100644 --- a/definitions/grib2/tables/10/4.206.table +++ b/definitions/grib2/tables/10/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/4.207.table b/definitions/grib2/tables/10/4.207.table index 815a5777e..7b30c9f9f 100644 --- a/definitions/grib2/tables/10/4.207.table +++ b/definitions/grib2/tables/10/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/10/4.208.table b/definitions/grib2/tables/10/4.208.table index 23ea97317..62c937cfa 100644 --- a/definitions/grib2/tables/10/4.208.table +++ b/definitions/grib2/tables/10/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/10/4.209.table b/definitions/grib2/tables/10/4.209.table index 53c6c5eba..92983f0b7 100644 --- a/definitions/grib2/tables/10/4.209.table +++ b/definitions/grib2/tables/10/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/10/4.210.table b/definitions/grib2/tables/10/4.210.table index 149b2ba06..c54c5581f 100644 --- a/definitions/grib2/tables/10/4.210.table +++ b/definitions/grib2/tables/10/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/4.211.table b/definitions/grib2/tables/10/4.211.table index b5753f19f..a1b6c828c 100644 --- a/definitions/grib2/tables/10/4.211.table +++ b/definitions/grib2/tables/10/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/10/4.212.table b/definitions/grib2/tables/10/4.212.table index 738c45d2c..f7cf87a3e 100644 --- a/definitions/grib2/tables/10/4.212.table +++ b/definitions/grib2/tables/10/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/10/4.213.table b/definitions/grib2/tables/10/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/10/4.213.table +++ b/definitions/grib2/tables/10/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/10/4.215.table b/definitions/grib2/tables/10/4.215.table index 5ed37c034..582bc6f69 100644 --- a/definitions/grib2/tables/10/4.215.table +++ b/definitions/grib2/tables/10/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/10/4.216.table b/definitions/grib2/tables/10/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/10/4.216.table +++ b/definitions/grib2/tables/10/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/10/4.217.table b/definitions/grib2/tables/10/4.217.table index 6a014c9c3..34089434a 100644 --- a/definitions/grib2/tables/10/4.217.table +++ b/definitions/grib2/tables/10/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/10/4.218.table b/definitions/grib2/tables/10/4.218.table index b6087448f..54af038dc 100644 --- a/definitions/grib2/tables/10/4.218.table +++ b/definitions/grib2/tables/10/4.218.table @@ -18,7 +18,6 @@ 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 @@ -33,6 +32,4 @@ 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/definitions/grib2/tables/10/4.219.table b/definitions/grib2/tables/10/4.219.table index a02452fc4..ead9d6b7b 100644 --- a/definitions/grib2/tables/10/4.219.table +++ b/definitions/grib2/tables/10/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/10/4.220.table b/definitions/grib2/tables/10/4.220.table index 7a18fa1fd..8d6d6c124 100644 --- a/definitions/grib2/tables/10/4.220.table +++ b/definitions/grib2/tables/10/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/4.221.table b/definitions/grib2/tables/10/4.221.table index eb0b64502..dc0d2201b 100644 --- a/definitions/grib2/tables/10/4.221.table +++ b/definitions/grib2/tables/10/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/4.222.table b/definitions/grib2/tables/10/4.222.table index f554a7f3d..a4790257b 100644 --- a/definitions/grib2/tables/10/4.222.table +++ b/definitions/grib2/tables/10/4.222.table @@ -1,6 +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 -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/10/4.224.table b/definitions/grib2/tables/10/4.224.table index cf67496b8..ae077e6f0 100644 --- a/definitions/grib2/tables/10/4.224.table +++ b/definitions/grib2/tables/10/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/10/4.227.table b/definitions/grib2/tables/10/4.227.table index 7676664e4..3e123f07c 100644 --- a/definitions/grib2/tables/10/4.227.table +++ b/definitions/grib2/tables/10/4.227.table @@ -4,6 +4,4 @@ 2 2 Convective 3 3 Stratiform 4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/10/4.3.table b/definitions/grib2/tables/10/4.3.table index 8a4e919c9..18a944e21 100644 --- a/definitions/grib2/tables/10/4.3.table +++ b/definitions/grib2/tables/10/4.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/10/4.4.table b/definitions/grib2/tables/10/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/10/4.4.table +++ b/definitions/grib2/tables/10/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/10/4.5.table b/definitions/grib2/tables/10/4.5.table index c3b8aec5d..276349f57 100644 --- a/definitions/grib2/tables/10/4.5.table +++ b/definitions/grib2/tables/10/4.5.table @@ -12,9 +12,7 @@ 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) @@ -30,13 +28,10 @@ 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 sfc Lake or river bottom @@ -44,6 +39,4 @@ 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave 166 sfc Mixing layer -# 167-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/10/4.6.table b/definitions/grib2/tables/10/4.6.table index eaa5c4362..30146761b 100644 --- a/definitions/grib2/tables/10/4.6.table +++ b/definitions/grib2/tables/10/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/10/4.7.table b/definitions/grib2/tables/10/4.7.table index e6d887bdb..48fdee35d 100644 --- a/definitions/grib2/tables/10/4.7.table +++ b/definitions/grib2/tables/10/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/10/4.8.table b/definitions/grib2/tables/10/4.8.table index d06153079..60e79328c 100644 --- a/definitions/grib2/tables/10/4.8.table +++ b/definitions/grib2/tables/10/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/4.9.table b/definitions/grib2/tables/10/4.9.table index 5243e58dd..0e32bf392 100644 --- a/definitions/grib2/tables/10/4.9.table +++ b/definitions/grib2/tables/10/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/10/4.91.table b/definitions/grib2/tables/10/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/10/4.91.table +++ b/definitions/grib2/tables/10/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/10/5.0.table b/definitions/grib2/tables/10/5.0.table index f27acb859..7d9a25c37 100644 --- a/definitions/grib2/tables/10/5.0.table +++ b/definitions/grib2/tables/10/5.0.table @@ -6,15 +6,10 @@ 4 4 Grid point data - IEEE floating point data 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 diff --git a/definitions/grib2/tables/10/5.1.table b/definitions/grib2/tables/10/5.1.table index 158a35850..445d053a3 100644 --- a/definitions/grib2/tables/10/5.1.table +++ b/definitions/grib2/tables/10/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/5.2.table b/definitions/grib2/tables/10/5.2.table index d12b46fbd..23764170f 100644 --- a/definitions/grib2/tables/10/5.2.table +++ b/definitions/grib2/tables/10/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/10/5.3.table b/definitions/grib2/tables/10/5.3.table index 6f228aeec..e140f88e8 100644 --- a/definitions/grib2/tables/10/5.3.table +++ b/definitions/grib2/tables/10/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/10/5.4.table b/definitions/grib2/tables/10/5.4.table index f844f557e..7e69a3535 100644 --- a/definitions/grib2/tables/10/5.4.table +++ b/definitions/grib2/tables/10/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/10/5.40.table b/definitions/grib2/tables/10/5.40.table index 2431eb547..e9241d100 100644 --- a/definitions/grib2/tables/10/5.40.table +++ b/definitions/grib2/tables/10/5.40.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/10/5.5.table b/definitions/grib2/tables/10/5.5.table index f2216e273..aa71c5fa1 100644 --- a/definitions/grib2/tables/10/5.5.table +++ b/definitions/grib2/tables/10/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/10/5.6.table b/definitions/grib2/tables/10/5.6.table index 3b0892d37..d91c3592f 100644 --- a/definitions/grib2/tables/10/5.6.table +++ b/definitions/grib2/tables/10/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/10/5.7.table b/definitions/grib2/tables/10/5.7.table index f056d3059..493d0826a 100644 --- a/definitions/grib2/tables/10/5.7.table +++ b/definitions/grib2/tables/10/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/11/0.0.table b/definitions/grib2/tables/11/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/11/0.0.table +++ b/definitions/grib2/tables/11/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/11/1.2.table b/definitions/grib2/tables/11/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/11/1.2.table +++ b/definitions/grib2/tables/11/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/11/1.3.table b/definitions/grib2/tables/11/1.3.table index 34ace7fda..e49d8fe78 100644 --- a/definitions/grib2/tables/11/1.3.table +++ b/definitions/grib2/tables/11/1.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/11/1.4.table b/definitions/grib2/tables/11/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/11/1.4.table +++ b/definitions/grib2/tables/11/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/11/3.0.table b/definitions/grib2/tables/11/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/11/3.0.table +++ b/definitions/grib2/tables/11/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/3.1.table b/definitions/grib2/tables/11/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/11/3.1.table +++ b/definitions/grib2/tables/11/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/11/3.10.table b/definitions/grib2/tables/11/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/11/3.10.table +++ b/definitions/grib2/tables/11/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/11/3.11.table b/definitions/grib2/tables/11/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/11/3.11.table +++ b/definitions/grib2/tables/11/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/11/3.15.table b/definitions/grib2/tables/11/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/11/3.15.table +++ b/definitions/grib2/tables/11/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/11/3.2.table b/definitions/grib2/tables/11/3.2.table index b9574a424..ed8eb276c 100644 --- a/definitions/grib2/tables/11/3.2.table +++ b/definitions/grib2/tables/11/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/11/3.20.table b/definitions/grib2/tables/11/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/11/3.20.table +++ b/definitions/grib2/tables/11/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/3.21.table b/definitions/grib2/tables/11/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/11/3.21.table +++ b/definitions/grib2/tables/11/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/11/3.3.table b/definitions/grib2/tables/11/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/11/3.3.table +++ b/definitions/grib2/tables/11/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/11/3.4.table b/definitions/grib2/tables/11/3.4.table index ea9cbe829..d77b6b89f 100644 --- a/definitions/grib2/tables/11/3.4.table +++ b/definitions/grib2/tables/11/3.4.table @@ -7,4 +7,3 @@ 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/definitions/grib2/tables/11/3.7.table b/definitions/grib2/tables/11/3.7.table index 2d01b8d52..dc17ad734 100644 --- a/definitions/grib2/tables/11/3.7.table +++ b/definitions/grib2/tables/11/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/11/3.8.table b/definitions/grib2/tables/11/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/11/3.8.table +++ b/definitions/grib2/tables/11/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/11/3.9.table b/definitions/grib2/tables/11/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/11/3.9.table +++ b/definitions/grib2/tables/11/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/11/4.0.table b/definitions/grib2/tables/11/4.0.table index 51b3ccfa7..870878928 100644 --- a/definitions/grib2/tables/11/4.0.table +++ b/definitions/grib2/tables/11/4.0.table @@ -15,15 +15,12 @@ 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 @@ -39,21 +36,15 @@ 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/definitions/grib2/tables/11/4.1.0.table b/definitions/grib2/tables/11/4.1.0.table index 3413dbad5..c5f166b65 100644 --- a/definitions/grib2/tables/11/4.1.0.table +++ b/definitions/grib2/tables/11/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/11/4.1.1.table b/definitions/grib2/tables/11/4.1.1.table index dea5bc49e..51d3e1752 100644 --- a/definitions/grib2/tables/11/4.1.1.table +++ b/definitions/grib2/tables/11/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/11/4.1.10.table b/definitions/grib2/tables/11/4.1.10.table index e6ce6faf7..2541195f0 100644 --- a/definitions/grib2/tables/11/4.1.10.table +++ b/definitions/grib2/tables/11/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/11/4.1.2.table b/definitions/grib2/tables/11/4.1.2.table index 805836998..014bdf18e 100644 --- a/definitions/grib2/tables/11/4.1.2.table +++ b/definitions/grib2/tables/11/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/11/4.1.3.table b/definitions/grib2/tables/11/4.1.3.table index adcbfb051..4ac485be4 100644 --- a/definitions/grib2/tables/11/4.1.3.table +++ b/definitions/grib2/tables/11/4.1.3.table @@ -1,8 +1,6 @@ # 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/definitions/grib2/tables/11/4.10.table b/definitions/grib2/tables/11/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/11/4.10.table +++ b/definitions/grib2/tables/11/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/11/4.11.table b/definitions/grib2/tables/11/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/11/4.11.table +++ b/definitions/grib2/tables/11/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/11/4.12.table b/definitions/grib2/tables/11/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/11/4.12.table +++ b/definitions/grib2/tables/11/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/11/4.13.table b/definitions/grib2/tables/11/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/11/4.13.table +++ b/definitions/grib2/tables/11/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/4.14.table b/definitions/grib2/tables/11/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/11/4.14.table +++ b/definitions/grib2/tables/11/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/4.15.table b/definitions/grib2/tables/11/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/11/4.15.table +++ b/definitions/grib2/tables/11/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/11/4.2.0.0.table b/definitions/grib2/tables/11/4.2.0.0.table index e69e087c9..fa15f1fb1 100644 --- a/definitions/grib2/tables/11/4.2.0.0.table +++ b/definitions/grib2/tables/11/4.2.0.0.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/11/4.2.0.1.table b/definitions/grib2/tables/11/4.2.0.1.table index 256732de0..7172dc3f4 100644 --- a/definitions/grib2/tables/11/4.2.0.1.table +++ b/definitions/grib2/tables/11/4.2.0.1.table @@ -86,10 +86,7 @@ 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/definitions/grib2/tables/11/4.2.0.13.table b/definitions/grib2/tables/11/4.2.0.13.table index 90ab7d1b9..3aead6cbd 100644 --- a/definitions/grib2/tables/11/4.2.0.13.table +++ b/definitions/grib2/tables/11/4.2.0.13.table @@ -1,5 +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) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/11/4.2.0.14.table b/definitions/grib2/tables/11/4.2.0.14.table index fca42ccc7..62943028c 100644 --- a/definitions/grib2/tables/11/4.2.0.14.table +++ b/definitions/grib2/tables/11/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/11/4.2.0.15.table b/definitions/grib2/tables/11/4.2.0.15.table index 5a599a98e..634f8ff16 100644 --- a/definitions/grib2/tables/11/4.2.0.15.table +++ b/definitions/grib2/tables/11/4.2.0.15.table @@ -14,6 +14,4 @@ 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/definitions/grib2/tables/11/4.2.0.16.table b/definitions/grib2/tables/11/4.2.0.16.table index 18dedb7c0..98630ec0e 100644 --- a/definitions/grib2/tables/11/4.2.0.16.table +++ b/definitions/grib2/tables/11/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/11/4.2.0.18.table b/definitions/grib2/tables/11/4.2.0.18.table index fe06e9ea6..9909fb04a 100644 --- a/definitions/grib2/tables/11/4.2.0.18.table +++ b/definitions/grib2/tables/11/4.2.0.18.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/11/4.2.0.19.table b/definitions/grib2/tables/11/4.2.0.19.table index 90003262e..1c38a0477 100644 --- a/definitions/grib2/tables/11/4.2.0.19.table +++ b/definitions/grib2/tables/11/4.2.0.19.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/11/4.2.0.190.table b/definitions/grib2/tables/11/4.2.0.190.table index 3d9d5ff85..f401ef529 100644 --- a/definitions/grib2/tables/11/4.2.0.190.table +++ b/definitions/grib2/tables/11/4.2.0.190.table @@ -1,5 +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 (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/11/4.2.0.191.table b/definitions/grib2/tables/11/4.2.0.191.table index 4ff12e532..c44d4c807 100644 --- a/definitions/grib2/tables/11/4.2.0.191.table +++ b/definitions/grib2/tables/11/4.2.0.191.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/11/4.2.0.2.table b/definitions/grib2/tables/11/4.2.0.2.table index f0570417b..fb2756464 100644 --- a/definitions/grib2/tables/11/4.2.0.2.table +++ b/definitions/grib2/tables/11/4.2.0.2.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/11/4.2.0.20.table b/definitions/grib2/tables/11/4.2.0.20.table index ca90179fe..fbdd1132b 100644 --- a/definitions/grib2/tables/11/4.2.0.20.table +++ b/definitions/grib2/tables/11/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -25,7 +24,6 @@ 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) @@ -37,6 +35,4 @@ 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/definitions/grib2/tables/11/4.2.0.3.table b/definitions/grib2/tables/11/4.2.0.3.table index 08c1c7bc3..03f4c15ff 100644 --- a/definitions/grib2/tables/11/4.2.0.3.table +++ b/definitions/grib2/tables/11/4.2.0.3.table @@ -26,6 +26,4 @@ 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/definitions/grib2/tables/11/4.2.0.4.table b/definitions/grib2/tables/11/4.2.0.4.table index 336fdb421..6c69548e3 100644 --- a/definitions/grib2/tables/11/4.2.0.4.table +++ b/definitions/grib2/tables/11/4.2.0.4.table @@ -12,9 +12,6 @@ 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/definitions/grib2/tables/11/4.2.0.5.table b/definitions/grib2/tables/11/4.2.0.5.table index 86a199ace..0e3775b06 100644 --- a/definitions/grib2/tables/11/4.2.0.5.table +++ b/definitions/grib2/tables/11/4.2.0.5.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/11/4.2.0.6.table b/definitions/grib2/tables/11/4.2.0.6.table index 2d088e5fc..1a2f31db6 100644 --- a/definitions/grib2/tables/11/4.2.0.6.table +++ b/definitions/grib2/tables/11/4.2.0.6.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/11/4.2.0.7.table b/definitions/grib2/tables/11/4.2.0.7.table index 6c1794c73..4d22c0129 100644 --- a/definitions/grib2/tables/11/4.2.0.7.table +++ b/definitions/grib2/tables/11/4.2.0.7.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/11/4.2.1.0.table b/definitions/grib2/tables/11/4.2.1.0.table index 9c4d129da..4d79bd24f 100644 --- a/definitions/grib2/tables/11/4.2.1.0.table +++ b/definitions/grib2/tables/11/4.2.1.0.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/11/4.2.1.1.table b/definitions/grib2/tables/11/4.2.1.1.table index aa560e479..24efd5d1a 100644 --- a/definitions/grib2/tables/11/4.2.1.1.table +++ b/definitions/grib2/tables/11/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/11/4.2.10.0.table b/definitions/grib2/tables/11/4.2.10.0.table index 43643d405..bf117b60d 100644 --- a/definitions/grib2/tables/11/4.2.10.0.table +++ b/definitions/grib2/tables/11/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/11/4.2.10.1.table b/definitions/grib2/tables/11/4.2.10.1.table index de6b562b8..ef6f9dc67 100644 --- a/definitions/grib2/tables/11/4.2.10.1.table +++ b/definitions/grib2/tables/11/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/11/4.2.10.191.table b/definitions/grib2/tables/11/4.2.10.191.table index 6cafbd3d4..9b1fb12bb 100644 --- a/definitions/grib2/tables/11/4.2.10.191.table +++ b/definitions/grib2/tables/11/4.2.10.191.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/4.2.10.2.table b/definitions/grib2/tables/11/4.2.10.2.table index 258aeef18..5c14f114c 100644 --- a/definitions/grib2/tables/11/4.2.10.2.table +++ b/definitions/grib2/tables/11/4.2.10.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/11/4.2.10.3.table b/definitions/grib2/tables/11/4.2.10.3.table index 3b9a2df46..7e8a250e4 100644 --- a/definitions/grib2/tables/11/4.2.10.3.table +++ b/definitions/grib2/tables/11/4.2.10.3.table @@ -1,6 +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) -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/11/4.2.10.4.table b/definitions/grib2/tables/11/4.2.10.4.table index 91ffb2b29..21aae1504 100644 --- a/definitions/grib2/tables/11/4.2.10.4.table +++ b/definitions/grib2/tables/11/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/11/4.2.2.0.table b/definitions/grib2/tables/11/4.2.2.0.table index 0632ff414..95456e01d 100644 --- a/definitions/grib2/tables/11/4.2.2.0.table +++ b/definitions/grib2/tables/11/4.2.2.0.table @@ -32,6 +32,4 @@ 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/definitions/grib2/tables/11/4.2.2.3.table b/definitions/grib2/tables/11/4.2.2.3.table index d7db59d5e..e24fb0798 100644 --- a/definitions/grib2/tables/11/4.2.2.3.table +++ b/definitions/grib2/tables/11/4.2.2.3.table @@ -22,6 +22,4 @@ 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/definitions/grib2/tables/11/4.2.2.4.table b/definitions/grib2/tables/11/4.2.2.4.table index 0992f59db..89ad52214 100644 --- a/definitions/grib2/tables/11/4.2.2.4.table +++ b/definitions/grib2/tables/11/4.2.2.4.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/11/4.2.3.0.table b/definitions/grib2/tables/11/4.2.3.0.table index 8c19d43b2..e06377ac2 100644 --- a/definitions/grib2/tables/11/4.2.3.0.table +++ b/definitions/grib2/tables/11/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/11/4.2.3.1.table b/definitions/grib2/tables/11/4.2.3.1.table index af1896b14..2e35a816a 100644 --- a/definitions/grib2/tables/11/4.2.3.1.table +++ b/definitions/grib2/tables/11/4.2.3.1.table @@ -23,6 +23,4 @@ 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/definitions/grib2/tables/11/4.201.table b/definitions/grib2/tables/11/4.201.table index b9711f69c..de7218f5c 100644 --- a/definitions/grib2/tables/11/4.201.table +++ b/definitions/grib2/tables/11/4.201.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/11/4.202.table b/definitions/grib2/tables/11/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/11/4.202.table +++ b/definitions/grib2/tables/11/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/11/4.203.table b/definitions/grib2/tables/11/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/11/4.203.table +++ b/definitions/grib2/tables/11/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/11/4.204.table b/definitions/grib2/tables/11/4.204.table index ffbd89502..2084e77dc 100644 --- a/definitions/grib2/tables/11/4.204.table +++ b/definitions/grib2/tables/11/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/11/4.205.table b/definitions/grib2/tables/11/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/11/4.205.table +++ b/definitions/grib2/tables/11/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/4.206.table b/definitions/grib2/tables/11/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/11/4.206.table +++ b/definitions/grib2/tables/11/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/4.207.table b/definitions/grib2/tables/11/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/11/4.207.table +++ b/definitions/grib2/tables/11/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/11/4.208.table b/definitions/grib2/tables/11/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/11/4.208.table +++ b/definitions/grib2/tables/11/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/11/4.209.table b/definitions/grib2/tables/11/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/11/4.209.table +++ b/definitions/grib2/tables/11/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/11/4.210.table b/definitions/grib2/tables/11/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/11/4.210.table +++ b/definitions/grib2/tables/11/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/4.211.table b/definitions/grib2/tables/11/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/11/4.211.table +++ b/definitions/grib2/tables/11/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/11/4.212.table b/definitions/grib2/tables/11/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/11/4.212.table +++ b/definitions/grib2/tables/11/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/11/4.213.table b/definitions/grib2/tables/11/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/11/4.213.table +++ b/definitions/grib2/tables/11/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/11/4.215.table b/definitions/grib2/tables/11/4.215.table index c264c6722..da458b072 100644 --- a/definitions/grib2/tables/11/4.215.table +++ b/definitions/grib2/tables/11/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/11/4.216.table b/definitions/grib2/tables/11/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/11/4.216.table +++ b/definitions/grib2/tables/11/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/11/4.217.table b/definitions/grib2/tables/11/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/11/4.217.table +++ b/definitions/grib2/tables/11/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/11/4.218.table b/definitions/grib2/tables/11/4.218.table index acf069c32..d023ece2b 100644 --- a/definitions/grib2/tables/11/4.218.table +++ b/definitions/grib2/tables/11/4.218.table @@ -18,7 +18,6 @@ 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 @@ -33,6 +32,4 @@ 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/definitions/grib2/tables/11/4.219.table b/definitions/grib2/tables/11/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/11/4.219.table +++ b/definitions/grib2/tables/11/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/11/4.220.table b/definitions/grib2/tables/11/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/11/4.220.table +++ b/definitions/grib2/tables/11/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/4.221.table b/definitions/grib2/tables/11/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/11/4.221.table +++ b/definitions/grib2/tables/11/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/4.222.table b/definitions/grib2/tables/11/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/11/4.222.table +++ b/definitions/grib2/tables/11/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/4.224.table b/definitions/grib2/tables/11/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/11/4.224.table +++ b/definitions/grib2/tables/11/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/11/4.227.table b/definitions/grib2/tables/11/4.227.table index 7676664e4..3e123f07c 100644 --- a/definitions/grib2/tables/11/4.227.table +++ b/definitions/grib2/tables/11/4.227.table @@ -4,6 +4,4 @@ 2 2 Convective 3 3 Stratiform 4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/11/4.3.table b/definitions/grib2/tables/11/4.3.table index 1681cfc93..e370ba795 100644 --- a/definitions/grib2/tables/11/4.3.table +++ b/definitions/grib2/tables/11/4.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/11/4.4.table b/definitions/grib2/tables/11/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/11/4.4.table +++ b/definitions/grib2/tables/11/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/11/4.5.table b/definitions/grib2/tables/11/4.5.table index c3b8aec5d..276349f57 100644 --- a/definitions/grib2/tables/11/4.5.table +++ b/definitions/grib2/tables/11/4.5.table @@ -12,9 +12,7 @@ 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) @@ -30,13 +28,10 @@ 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 sfc Lake or river bottom @@ -44,6 +39,4 @@ 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave 166 sfc Mixing layer -# 167-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/11/4.6.table b/definitions/grib2/tables/11/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/11/4.6.table +++ b/definitions/grib2/tables/11/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/11/4.7.table b/definitions/grib2/tables/11/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/11/4.7.table +++ b/definitions/grib2/tables/11/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/11/4.8.table b/definitions/grib2/tables/11/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/11/4.8.table +++ b/definitions/grib2/tables/11/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/4.9.table b/definitions/grib2/tables/11/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/11/4.9.table +++ b/definitions/grib2/tables/11/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/11/4.91.table b/definitions/grib2/tables/11/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/11/4.91.table +++ b/definitions/grib2/tables/11/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/11/5.0.table b/definitions/grib2/tables/11/5.0.table index f27acb859..7d9a25c37 100644 --- a/definitions/grib2/tables/11/5.0.table +++ b/definitions/grib2/tables/11/5.0.table @@ -6,15 +6,10 @@ 4 4 Grid point data - IEEE floating point data 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 diff --git a/definitions/grib2/tables/11/5.1.table b/definitions/grib2/tables/11/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/11/5.1.table +++ b/definitions/grib2/tables/11/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/5.2.table b/definitions/grib2/tables/11/5.2.table index d12b46fbd..23764170f 100644 --- a/definitions/grib2/tables/11/5.2.table +++ b/definitions/grib2/tables/11/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/11/5.3.table b/definitions/grib2/tables/11/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/11/5.3.table +++ b/definitions/grib2/tables/11/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/11/5.4.table b/definitions/grib2/tables/11/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/11/5.4.table +++ b/definitions/grib2/tables/11/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/11/5.40.table b/definitions/grib2/tables/11/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/11/5.40.table +++ b/definitions/grib2/tables/11/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/11/5.5.table b/definitions/grib2/tables/11/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/11/5.5.table +++ b/definitions/grib2/tables/11/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/11/5.6.table b/definitions/grib2/tables/11/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/11/5.6.table +++ b/definitions/grib2/tables/11/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/11/5.7.table b/definitions/grib2/tables/11/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/11/5.7.table +++ b/definitions/grib2/tables/11/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/12/0.0.table b/definitions/grib2/tables/12/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/12/0.0.table +++ b/definitions/grib2/tables/12/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/12/1.2.table b/definitions/grib2/tables/12/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/12/1.2.table +++ b/definitions/grib2/tables/12/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/12/1.3.table b/definitions/grib2/tables/12/1.3.table index 34ace7fda..e49d8fe78 100644 --- a/definitions/grib2/tables/12/1.3.table +++ b/definitions/grib2/tables/12/1.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/12/1.4.table b/definitions/grib2/tables/12/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/12/1.4.table +++ b/definitions/grib2/tables/12/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/12/1.5.table b/definitions/grib2/tables/12/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/12/1.5.table +++ b/definitions/grib2/tables/12/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/1.6.table b/definitions/grib2/tables/12/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/12/1.6.table +++ b/definitions/grib2/tables/12/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/12/3.0.table b/definitions/grib2/tables/12/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/12/3.0.table +++ b/definitions/grib2/tables/12/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/3.1.table b/definitions/grib2/tables/12/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/12/3.1.table +++ b/definitions/grib2/tables/12/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/12/3.10.table b/definitions/grib2/tables/12/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/12/3.10.table +++ b/definitions/grib2/tables/12/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/12/3.11.table b/definitions/grib2/tables/12/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/12/3.11.table +++ b/definitions/grib2/tables/12/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/12/3.15.table b/definitions/grib2/tables/12/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/12/3.15.table +++ b/definitions/grib2/tables/12/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/12/3.2.table b/definitions/grib2/tables/12/3.2.table index b9574a424..ed8eb276c 100644 --- a/definitions/grib2/tables/12/3.2.table +++ b/definitions/grib2/tables/12/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/12/3.20.table b/definitions/grib2/tables/12/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/12/3.20.table +++ b/definitions/grib2/tables/12/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/3.21.table b/definitions/grib2/tables/12/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/12/3.21.table +++ b/definitions/grib2/tables/12/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/12/3.3.table b/definitions/grib2/tables/12/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/12/3.3.table +++ b/definitions/grib2/tables/12/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/12/3.4.table b/definitions/grib2/tables/12/3.4.table index ea9cbe829..d77b6b89f 100644 --- a/definitions/grib2/tables/12/3.4.table +++ b/definitions/grib2/tables/12/3.4.table @@ -7,4 +7,3 @@ 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/definitions/grib2/tables/12/3.7.table b/definitions/grib2/tables/12/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/12/3.7.table +++ b/definitions/grib2/tables/12/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/12/3.8.table b/definitions/grib2/tables/12/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/12/3.8.table +++ b/definitions/grib2/tables/12/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/3.9.table b/definitions/grib2/tables/12/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/12/3.9.table +++ b/definitions/grib2/tables/12/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/12/4.0.table b/definitions/grib2/tables/12/4.0.table index 8608d20f9..72b5acf3e 100644 --- a/definitions/grib2/tables/12/4.0.table +++ b/definitions/grib2/tables/12/4.0.table @@ -15,15 +15,12 @@ 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 @@ -34,28 +31,21 @@ 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/definitions/grib2/tables/12/4.1.0.table b/definitions/grib2/tables/12/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/12/4.1.0.table +++ b/definitions/grib2/tables/12/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/12/4.1.1.table b/definitions/grib2/tables/12/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/12/4.1.1.table +++ b/definitions/grib2/tables/12/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/4.1.10.table b/definitions/grib2/tables/12/4.1.10.table index e9663f391..ac6a221f9 100644 --- a/definitions/grib2/tables/12/4.1.10.table +++ b/definitions/grib2/tables/12/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/12/4.1.2.table b/definitions/grib2/tables/12/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/12/4.1.2.table +++ b/definitions/grib2/tables/12/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/12/4.1.3.table b/definitions/grib2/tables/12/4.1.3.table index c1a1e267a..5102b92b2 100644 --- a/definitions/grib2/tables/12/4.1.3.table +++ b/definitions/grib2/tables/12/4.1.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.10.table b/definitions/grib2/tables/12/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/12/4.10.table +++ b/definitions/grib2/tables/12/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/12/4.11.table b/definitions/grib2/tables/12/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/12/4.11.table +++ b/definitions/grib2/tables/12/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/12/4.12.table b/definitions/grib2/tables/12/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/12/4.12.table +++ b/definitions/grib2/tables/12/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/4.13.table b/definitions/grib2/tables/12/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/12/4.13.table +++ b/definitions/grib2/tables/12/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.14.table b/definitions/grib2/tables/12/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/12/4.14.table +++ b/definitions/grib2/tables/12/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.15.table b/definitions/grib2/tables/12/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/12/4.15.table +++ b/definitions/grib2/tables/12/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/12/4.2.0.0.table b/definitions/grib2/tables/12/4.2.0.0.table index f5841e889..bcc7bc876 100644 --- a/definitions/grib2/tables/12/4.2.0.0.table +++ b/definitions/grib2/tables/12/4.2.0.0.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/12/4.2.0.1.table b/definitions/grib2/tables/12/4.2.0.1.table index fb7c3d776..738d9f37c 100644 --- a/definitions/grib2/tables/12/4.2.0.1.table +++ b/definitions/grib2/tables/12/4.2.0.1.table @@ -86,10 +86,7 @@ 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/definitions/grib2/tables/12/4.2.0.13.table b/definitions/grib2/tables/12/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/12/4.2.0.13.table +++ b/definitions/grib2/tables/12/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/12/4.2.0.14.table b/definitions/grib2/tables/12/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/12/4.2.0.14.table +++ b/definitions/grib2/tables/12/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/4.2.0.15.table b/definitions/grib2/tables/12/4.2.0.15.table index bb0b9ab46..fdb54bf4f 100644 --- a/definitions/grib2/tables/12/4.2.0.15.table +++ b/definitions/grib2/tables/12/4.2.0.15.table @@ -14,6 +14,4 @@ 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/definitions/grib2/tables/12/4.2.0.16.table b/definitions/grib2/tables/12/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/12/4.2.0.16.table +++ b/definitions/grib2/tables/12/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/12/4.2.0.18.table b/definitions/grib2/tables/12/4.2.0.18.table index 7e0a736eb..8a8bbc46a 100644 --- a/definitions/grib2/tables/12/4.2.0.18.table +++ b/definitions/grib2/tables/12/4.2.0.18.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/12/4.2.0.19.table b/definitions/grib2/tables/12/4.2.0.19.table index d2beef083..49e1b1a7e 100644 --- a/definitions/grib2/tables/12/4.2.0.19.table +++ b/definitions/grib2/tables/12/4.2.0.19.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/12/4.2.0.190.table b/definitions/grib2/tables/12/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/12/4.2.0.190.table +++ b/definitions/grib2/tables/12/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/12/4.2.0.191.table b/definitions/grib2/tables/12/4.2.0.191.table index 2e82e01da..251ecc861 100644 --- a/definitions/grib2/tables/12/4.2.0.191.table +++ b/definitions/grib2/tables/12/4.2.0.191.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/4.2.0.2.table b/definitions/grib2/tables/12/4.2.0.2.table index ad1d84f52..e3041d9c6 100644 --- a/definitions/grib2/tables/12/4.2.0.2.table +++ b/definitions/grib2/tables/12/4.2.0.2.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/12/4.2.0.20.table b/definitions/grib2/tables/12/4.2.0.20.table index a0eb7724a..6a2105ecf 100644 --- a/definitions/grib2/tables/12/4.2.0.20.table +++ b/definitions/grib2/tables/12/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -25,7 +24,6 @@ 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) @@ -37,6 +35,4 @@ 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/definitions/grib2/tables/12/4.2.0.3.table b/definitions/grib2/tables/12/4.2.0.3.table index e1a68bfc5..5aed1a408 100644 --- a/definitions/grib2/tables/12/4.2.0.3.table +++ b/definitions/grib2/tables/12/4.2.0.3.table @@ -26,6 +26,4 @@ 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/definitions/grib2/tables/12/4.2.0.4.table b/definitions/grib2/tables/12/4.2.0.4.table index 03b5cea38..4b0159cd4 100644 --- a/definitions/grib2/tables/12/4.2.0.4.table +++ b/definitions/grib2/tables/12/4.2.0.4.table @@ -12,9 +12,6 @@ 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/definitions/grib2/tables/12/4.2.0.5.table b/definitions/grib2/tables/12/4.2.0.5.table index 1bdd6ebee..d5e41d237 100644 --- a/definitions/grib2/tables/12/4.2.0.5.table +++ b/definitions/grib2/tables/12/4.2.0.5.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/12/4.2.0.6.table b/definitions/grib2/tables/12/4.2.0.6.table index 89da06eec..e9c732d98 100644 --- a/definitions/grib2/tables/12/4.2.0.6.table +++ b/definitions/grib2/tables/12/4.2.0.6.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/12/4.2.0.7.table b/definitions/grib2/tables/12/4.2.0.7.table index 8a2b85fb9..094a07a7c 100644 --- a/definitions/grib2/tables/12/4.2.0.7.table +++ b/definitions/grib2/tables/12/4.2.0.7.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/12/4.2.1.0.table b/definitions/grib2/tables/12/4.2.1.0.table index b6c648f00..20c862e3e 100644 --- a/definitions/grib2/tables/12/4.2.1.0.table +++ b/definitions/grib2/tables/12/4.2.1.0.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/12/4.2.1.1.table b/definitions/grib2/tables/12/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/12/4.2.1.1.table +++ b/definitions/grib2/tables/12/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/4.2.10.0.table b/definitions/grib2/tables/12/4.2.10.0.table index 76b3da22c..0c8af37cd 100644 --- a/definitions/grib2/tables/12/4.2.10.0.table +++ b/definitions/grib2/tables/12/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/12/4.2.10.1.table b/definitions/grib2/tables/12/4.2.10.1.table index f0a073c00..c172554a9 100644 --- a/definitions/grib2/tables/12/4.2.10.1.table +++ b/definitions/grib2/tables/12/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/12/4.2.10.191.table b/definitions/grib2/tables/12/4.2.10.191.table index 6b9eee36e..ec1c05f53 100644 --- a/definitions/grib2/tables/12/4.2.10.191.table +++ b/definitions/grib2/tables/12/4.2.10.191.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.2.10.2.table b/definitions/grib2/tables/12/4.2.10.2.table index 24458b91f..5047c1287 100644 --- a/definitions/grib2/tables/12/4.2.10.2.table +++ b/definitions/grib2/tables/12/4.2.10.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/12/4.2.10.3.table b/definitions/grib2/tables/12/4.2.10.3.table index 937720c93..71f0770e8 100644 --- a/definitions/grib2/tables/12/4.2.10.3.table +++ b/definitions/grib2/tables/12/4.2.10.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.2.10.4.table b/definitions/grib2/tables/12/4.2.10.4.table index e20a49470..13b95e5a7 100644 --- a/definitions/grib2/tables/12/4.2.10.4.table +++ b/definitions/grib2/tables/12/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/12/4.2.2.0.table b/definitions/grib2/tables/12/4.2.2.0.table index 98eae911a..8bd14ac8b 100644 --- a/definitions/grib2/tables/12/4.2.2.0.table +++ b/definitions/grib2/tables/12/4.2.2.0.table @@ -32,6 +32,4 @@ 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/definitions/grib2/tables/12/4.2.2.3.table b/definitions/grib2/tables/12/4.2.2.3.table index 3d3298c8a..31b88d06d 100644 --- a/definitions/grib2/tables/12/4.2.2.3.table +++ b/definitions/grib2/tables/12/4.2.2.3.table @@ -22,6 +22,4 @@ 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/definitions/grib2/tables/12/4.2.2.4.table b/definitions/grib2/tables/12/4.2.2.4.table index 30865c1b8..3e301368a 100644 --- a/definitions/grib2/tables/12/4.2.2.4.table +++ b/definitions/grib2/tables/12/4.2.2.4.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/12/4.2.3.0.table b/definitions/grib2/tables/12/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/12/4.2.3.0.table +++ b/definitions/grib2/tables/12/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/12/4.2.3.1.table b/definitions/grib2/tables/12/4.2.3.1.table index bc16d8855..3856da223 100644 --- a/definitions/grib2/tables/12/4.2.3.1.table +++ b/definitions/grib2/tables/12/4.2.3.1.table @@ -23,6 +23,4 @@ 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/definitions/grib2/tables/12/4.201.table b/definitions/grib2/tables/12/4.201.table index fa173c4e0..7787ce735 100644 --- a/definitions/grib2/tables/12/4.201.table +++ b/definitions/grib2/tables/12/4.201.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/12/4.202.table b/definitions/grib2/tables/12/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/12/4.202.table +++ b/definitions/grib2/tables/12/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/12/4.203.table b/definitions/grib2/tables/12/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/12/4.203.table +++ b/definitions/grib2/tables/12/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/12/4.204.table b/definitions/grib2/tables/12/4.204.table index ffbd89502..2084e77dc 100644 --- a/definitions/grib2/tables/12/4.204.table +++ b/definitions/grib2/tables/12/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/12/4.205.table b/definitions/grib2/tables/12/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/12/4.205.table +++ b/definitions/grib2/tables/12/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.206.table b/definitions/grib2/tables/12/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/12/4.206.table +++ b/definitions/grib2/tables/12/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.207.table b/definitions/grib2/tables/12/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/12/4.207.table +++ b/definitions/grib2/tables/12/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/12/4.208.table b/definitions/grib2/tables/12/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/12/4.208.table +++ b/definitions/grib2/tables/12/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/12/4.209.table b/definitions/grib2/tables/12/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/12/4.209.table +++ b/definitions/grib2/tables/12/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/12/4.210.table b/definitions/grib2/tables/12/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/12/4.210.table +++ b/definitions/grib2/tables/12/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.211.table b/definitions/grib2/tables/12/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/12/4.211.table +++ b/definitions/grib2/tables/12/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/4.212.table b/definitions/grib2/tables/12/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/12/4.212.table +++ b/definitions/grib2/tables/12/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/12/4.213.table b/definitions/grib2/tables/12/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/12/4.213.table +++ b/definitions/grib2/tables/12/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/12/4.215.table b/definitions/grib2/tables/12/4.215.table index c264c6722..da458b072 100644 --- a/definitions/grib2/tables/12/4.215.table +++ b/definitions/grib2/tables/12/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/12/4.216.table b/definitions/grib2/tables/12/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/12/4.216.table +++ b/definitions/grib2/tables/12/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/12/4.217.table b/definitions/grib2/tables/12/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/12/4.217.table +++ b/definitions/grib2/tables/12/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/12/4.218.table b/definitions/grib2/tables/12/4.218.table index acf069c32..d023ece2b 100644 --- a/definitions/grib2/tables/12/4.218.table +++ b/definitions/grib2/tables/12/4.218.table @@ -18,7 +18,6 @@ 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 @@ -33,6 +32,4 @@ 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/definitions/grib2/tables/12/4.219.table b/definitions/grib2/tables/12/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/12/4.219.table +++ b/definitions/grib2/tables/12/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/12/4.220.table b/definitions/grib2/tables/12/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/12/4.220.table +++ b/definitions/grib2/tables/12/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.221.table b/definitions/grib2/tables/12/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/12/4.221.table +++ b/definitions/grib2/tables/12/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.222.table b/definitions/grib2/tables/12/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/12/4.222.table +++ b/definitions/grib2/tables/12/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.224.table b/definitions/grib2/tables/12/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/12/4.224.table +++ b/definitions/grib2/tables/12/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/12/4.227.table b/definitions/grib2/tables/12/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/12/4.227.table +++ b/definitions/grib2/tables/12/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/12/4.3.table b/definitions/grib2/tables/12/4.3.table index 1681cfc93..e370ba795 100644 --- a/definitions/grib2/tables/12/4.3.table +++ b/definitions/grib2/tables/12/4.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/12/4.4.table b/definitions/grib2/tables/12/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/12/4.4.table +++ b/definitions/grib2/tables/12/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/12/4.5.table b/definitions/grib2/tables/12/4.5.table index c3b8aec5d..276349f57 100644 --- a/definitions/grib2/tables/12/4.5.table +++ b/definitions/grib2/tables/12/4.5.table @@ -12,9 +12,7 @@ 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) @@ -30,13 +28,10 @@ 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 sfc Lake or river bottom @@ -44,6 +39,4 @@ 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave 166 sfc Mixing layer -# 167-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/12/4.6.table b/definitions/grib2/tables/12/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/12/4.6.table +++ b/definitions/grib2/tables/12/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/12/4.7.table b/definitions/grib2/tables/12/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/12/4.7.table +++ b/definitions/grib2/tables/12/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/12/4.8.table b/definitions/grib2/tables/12/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/12/4.8.table +++ b/definitions/grib2/tables/12/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/4.9.table b/definitions/grib2/tables/12/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/12/4.9.table +++ b/definitions/grib2/tables/12/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/12/4.91.table b/definitions/grib2/tables/12/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/12/4.91.table +++ b/definitions/grib2/tables/12/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/12/5.0.table b/definitions/grib2/tables/12/5.0.table index 2795336df..7d9a25c37 100644 --- a/definitions/grib2/tables/12/5.0.table +++ b/definitions/grib2/tables/12/5.0.table @@ -6,15 +6,10 @@ 4 4 Grid point data - IEEE floating point data 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 diff --git a/definitions/grib2/tables/12/5.1.table b/definitions/grib2/tables/12/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/12/5.1.table +++ b/definitions/grib2/tables/12/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/5.2.table b/definitions/grib2/tables/12/5.2.table index d12b46fbd..23764170f 100644 --- a/definitions/grib2/tables/12/5.2.table +++ b/definitions/grib2/tables/12/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/12/5.3.table b/definitions/grib2/tables/12/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/12/5.3.table +++ b/definitions/grib2/tables/12/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/5.4.table b/definitions/grib2/tables/12/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/12/5.4.table +++ b/definitions/grib2/tables/12/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/12/5.40.table b/definitions/grib2/tables/12/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/12/5.40.table +++ b/definitions/grib2/tables/12/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/12/5.5.table b/definitions/grib2/tables/12/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/12/5.5.table +++ b/definitions/grib2/tables/12/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/5.6.table b/definitions/grib2/tables/12/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/12/5.6.table +++ b/definitions/grib2/tables/12/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/12/5.7.table b/definitions/grib2/tables/12/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/12/5.7.table +++ b/definitions/grib2/tables/12/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/13/0.0.table b/definitions/grib2/tables/13/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/13/0.0.table +++ b/definitions/grib2/tables/13/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/13/1.2.table b/definitions/grib2/tables/13/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/13/1.2.table +++ b/definitions/grib2/tables/13/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/13/1.3.table b/definitions/grib2/tables/13/1.3.table index c3b924d9d..eaa109f99 100644 --- a/definitions/grib2/tables/13/1.3.table +++ b/definitions/grib2/tables/13/1.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/13/1.4.table b/definitions/grib2/tables/13/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/13/1.4.table +++ b/definitions/grib2/tables/13/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/13/1.5.table b/definitions/grib2/tables/13/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/13/1.5.table +++ b/definitions/grib2/tables/13/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/13/1.6.table b/definitions/grib2/tables/13/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/13/1.6.table +++ b/definitions/grib2/tables/13/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/13/3.0.table b/definitions/grib2/tables/13/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/13/3.0.table +++ b/definitions/grib2/tables/13/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/3.1.table b/definitions/grib2/tables/13/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/13/3.1.table +++ b/definitions/grib2/tables/13/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/13/3.10.table b/definitions/grib2/tables/13/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/13/3.10.table +++ b/definitions/grib2/tables/13/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/13/3.11.table b/definitions/grib2/tables/13/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/13/3.11.table +++ b/definitions/grib2/tables/13/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/13/3.15.table b/definitions/grib2/tables/13/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/13/3.15.table +++ b/definitions/grib2/tables/13/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/13/3.2.table b/definitions/grib2/tables/13/3.2.table index b9574a424..ed8eb276c 100644 --- a/definitions/grib2/tables/13/3.2.table +++ b/definitions/grib2/tables/13/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/13/3.20.table b/definitions/grib2/tables/13/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/13/3.20.table +++ b/definitions/grib2/tables/13/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/3.21.table b/definitions/grib2/tables/13/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/13/3.21.table +++ b/definitions/grib2/tables/13/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/13/3.3.table b/definitions/grib2/tables/13/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/13/3.3.table +++ b/definitions/grib2/tables/13/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/13/3.4.table b/definitions/grib2/tables/13/3.4.table index ea9cbe829..d77b6b89f 100644 --- a/definitions/grib2/tables/13/3.4.table +++ b/definitions/grib2/tables/13/3.4.table @@ -7,4 +7,3 @@ 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/definitions/grib2/tables/13/3.7.table b/definitions/grib2/tables/13/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/13/3.7.table +++ b/definitions/grib2/tables/13/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/13/3.8.table b/definitions/grib2/tables/13/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/13/3.8.table +++ b/definitions/grib2/tables/13/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/13/3.9.table b/definitions/grib2/tables/13/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/13/3.9.table +++ b/definitions/grib2/tables/13/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/13/4.0.table b/definitions/grib2/tables/13/4.0.table index 7627a2a3d..4e0a86fbd 100644 --- a/definitions/grib2/tables/13/4.0.table +++ b/definitions/grib2/tables/13/4.0.table @@ -15,15 +15,12 @@ 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 @@ -34,29 +31,21 @@ 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/definitions/grib2/tables/13/4.1.0.table b/definitions/grib2/tables/13/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/13/4.1.0.table +++ b/definitions/grib2/tables/13/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/13/4.1.1.table b/definitions/grib2/tables/13/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/13/4.1.1.table +++ b/definitions/grib2/tables/13/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/13/4.1.10.table b/definitions/grib2/tables/13/4.1.10.table index e9663f391..ac6a221f9 100644 --- a/definitions/grib2/tables/13/4.1.10.table +++ b/definitions/grib2/tables/13/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/13/4.1.2.table b/definitions/grib2/tables/13/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/13/4.1.2.table +++ b/definitions/grib2/tables/13/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/13/4.1.3.table b/definitions/grib2/tables/13/4.1.3.table index c1a1e267a..5102b92b2 100644 --- a/definitions/grib2/tables/13/4.1.3.table +++ b/definitions/grib2/tables/13/4.1.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.10.table b/definitions/grib2/tables/13/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/13/4.10.table +++ b/definitions/grib2/tables/13/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/13/4.11.table b/definitions/grib2/tables/13/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/13/4.11.table +++ b/definitions/grib2/tables/13/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/13/4.12.table b/definitions/grib2/tables/13/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/13/4.12.table +++ b/definitions/grib2/tables/13/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/13/4.13.table b/definitions/grib2/tables/13/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/13/4.13.table +++ b/definitions/grib2/tables/13/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.14.table b/definitions/grib2/tables/13/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/13/4.14.table +++ b/definitions/grib2/tables/13/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.15.table b/definitions/grib2/tables/13/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/13/4.15.table +++ b/definitions/grib2/tables/13/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/13/4.2.0.0.table b/definitions/grib2/tables/13/4.2.0.0.table index 24d21959d..1e5d530e6 100644 --- a/definitions/grib2/tables/13/4.2.0.0.table +++ b/definitions/grib2/tables/13/4.2.0.0.table @@ -21,6 +21,4 @@ 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/definitions/grib2/tables/13/4.2.0.1.table b/definitions/grib2/tables/13/4.2.0.1.table index fb7c3d776..738d9f37c 100644 --- a/definitions/grib2/tables/13/4.2.0.1.table +++ b/definitions/grib2/tables/13/4.2.0.1.table @@ -86,10 +86,7 @@ 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/definitions/grib2/tables/13/4.2.0.13.table b/definitions/grib2/tables/13/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/13/4.2.0.13.table +++ b/definitions/grib2/tables/13/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/13/4.2.0.14.table b/definitions/grib2/tables/13/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/13/4.2.0.14.table +++ b/definitions/grib2/tables/13/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/13/4.2.0.15.table b/definitions/grib2/tables/13/4.2.0.15.table index bb0b9ab46..fdb54bf4f 100644 --- a/definitions/grib2/tables/13/4.2.0.15.table +++ b/definitions/grib2/tables/13/4.2.0.15.table @@ -14,6 +14,4 @@ 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/definitions/grib2/tables/13/4.2.0.16.table b/definitions/grib2/tables/13/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/13/4.2.0.16.table +++ b/definitions/grib2/tables/13/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/13/4.2.0.18.table b/definitions/grib2/tables/13/4.2.0.18.table index 7e0a736eb..8a8bbc46a 100644 --- a/definitions/grib2/tables/13/4.2.0.18.table +++ b/definitions/grib2/tables/13/4.2.0.18.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/13/4.2.0.19.table b/definitions/grib2/tables/13/4.2.0.19.table index d2beef083..49e1b1a7e 100644 --- a/definitions/grib2/tables/13/4.2.0.19.table +++ b/definitions/grib2/tables/13/4.2.0.19.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/13/4.2.0.190.table b/definitions/grib2/tables/13/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/13/4.2.0.190.table +++ b/definitions/grib2/tables/13/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/13/4.2.0.191.table b/definitions/grib2/tables/13/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/13/4.2.0.191.table +++ b/definitions/grib2/tables/13/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/13/4.2.0.2.table b/definitions/grib2/tables/13/4.2.0.2.table index 7bd1509f5..57f55079c 100644 --- a/definitions/grib2/tables/13/4.2.0.2.table +++ b/definitions/grib2/tables/13/4.2.0.2.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/13/4.2.0.20.table b/definitions/grib2/tables/13/4.2.0.20.table index df9ccc184..697e8e2d3 100644 --- a/definitions/grib2/tables/13/4.2.0.20.table +++ b/definitions/grib2/tables/13/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -25,7 +24,6 @@ 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) @@ -37,6 +35,4 @@ 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/definitions/grib2/tables/13/4.2.0.3.table b/definitions/grib2/tables/13/4.2.0.3.table index e1a68bfc5..5aed1a408 100644 --- a/definitions/grib2/tables/13/4.2.0.3.table +++ b/definitions/grib2/tables/13/4.2.0.3.table @@ -26,6 +26,4 @@ 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/definitions/grib2/tables/13/4.2.0.4.table b/definitions/grib2/tables/13/4.2.0.4.table index 03b5cea38..4b0159cd4 100644 --- a/definitions/grib2/tables/13/4.2.0.4.table +++ b/definitions/grib2/tables/13/4.2.0.4.table @@ -12,9 +12,6 @@ 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/definitions/grib2/tables/13/4.2.0.5.table b/definitions/grib2/tables/13/4.2.0.5.table index 1bdd6ebee..d5e41d237 100644 --- a/definitions/grib2/tables/13/4.2.0.5.table +++ b/definitions/grib2/tables/13/4.2.0.5.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/13/4.2.0.6.table b/definitions/grib2/tables/13/4.2.0.6.table index 89da06eec..e9c732d98 100644 --- a/definitions/grib2/tables/13/4.2.0.6.table +++ b/definitions/grib2/tables/13/4.2.0.6.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/13/4.2.0.7.table b/definitions/grib2/tables/13/4.2.0.7.table index 8a2b85fb9..094a07a7c 100644 --- a/definitions/grib2/tables/13/4.2.0.7.table +++ b/definitions/grib2/tables/13/4.2.0.7.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/13/4.2.1.0.table b/definitions/grib2/tables/13/4.2.1.0.table index f455c3365..13e09c639 100644 --- a/definitions/grib2/tables/13/4.2.1.0.table +++ b/definitions/grib2/tables/13/4.2.1.0.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/13/4.2.1.1.table b/definitions/grib2/tables/13/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/13/4.2.1.1.table +++ b/definitions/grib2/tables/13/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/13/4.2.10.0.table b/definitions/grib2/tables/13/4.2.10.0.table index 3611abd9a..5014980aa 100644 --- a/definitions/grib2/tables/13/4.2.10.0.table +++ b/definitions/grib2/tables/13/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/13/4.2.10.1.table b/definitions/grib2/tables/13/4.2.10.1.table index f0a073c00..c172554a9 100644 --- a/definitions/grib2/tables/13/4.2.10.1.table +++ b/definitions/grib2/tables/13/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/13/4.2.10.191.table b/definitions/grib2/tables/13/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/13/4.2.10.191.table +++ b/definitions/grib2/tables/13/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/13/4.2.10.2.table b/definitions/grib2/tables/13/4.2.10.2.table index 0caeacba7..127a3a013 100644 --- a/definitions/grib2/tables/13/4.2.10.2.table +++ b/definitions/grib2/tables/13/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/13/4.2.10.3.table b/definitions/grib2/tables/13/4.2.10.3.table index 937720c93..71f0770e8 100644 --- a/definitions/grib2/tables/13/4.2.10.3.table +++ b/definitions/grib2/tables/13/4.2.10.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.2.10.4.table b/definitions/grib2/tables/13/4.2.10.4.table index d5615ae26..15cc8b4b3 100644 --- a/definitions/grib2/tables/13/4.2.10.4.table +++ b/definitions/grib2/tables/13/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/13/4.2.2.0.table b/definitions/grib2/tables/13/4.2.2.0.table index 00342a32b..3a61bf0a6 100644 --- a/definitions/grib2/tables/13/4.2.2.0.table +++ b/definitions/grib2/tables/13/4.2.2.0.table @@ -34,6 +34,4 @@ 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/definitions/grib2/tables/13/4.2.2.3.table b/definitions/grib2/tables/13/4.2.2.3.table index 3d3298c8a..31b88d06d 100644 --- a/definitions/grib2/tables/13/4.2.2.3.table +++ b/definitions/grib2/tables/13/4.2.2.3.table @@ -22,6 +22,4 @@ 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/definitions/grib2/tables/13/4.2.2.4.table b/definitions/grib2/tables/13/4.2.2.4.table index c8b877df6..8562742b1 100644 --- a/definitions/grib2/tables/13/4.2.2.4.table +++ b/definitions/grib2/tables/13/4.2.2.4.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/13/4.2.3.0.table b/definitions/grib2/tables/13/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/13/4.2.3.0.table +++ b/definitions/grib2/tables/13/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/13/4.2.3.1.table b/definitions/grib2/tables/13/4.2.3.1.table index bc16d8855..3856da223 100644 --- a/definitions/grib2/tables/13/4.2.3.1.table +++ b/definitions/grib2/tables/13/4.2.3.1.table @@ -23,6 +23,4 @@ 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/definitions/grib2/tables/13/4.201.table b/definitions/grib2/tables/13/4.201.table index fa173c4e0..7787ce735 100644 --- a/definitions/grib2/tables/13/4.201.table +++ b/definitions/grib2/tables/13/4.201.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/13/4.202.table b/definitions/grib2/tables/13/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/13/4.202.table +++ b/definitions/grib2/tables/13/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/13/4.203.table b/definitions/grib2/tables/13/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/13/4.203.table +++ b/definitions/grib2/tables/13/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/13/4.204.table b/definitions/grib2/tables/13/4.204.table index ffbd89502..2084e77dc 100644 --- a/definitions/grib2/tables/13/4.204.table +++ b/definitions/grib2/tables/13/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/13/4.205.table b/definitions/grib2/tables/13/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/13/4.205.table +++ b/definitions/grib2/tables/13/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.206.table b/definitions/grib2/tables/13/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/13/4.206.table +++ b/definitions/grib2/tables/13/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.207.table b/definitions/grib2/tables/13/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/13/4.207.table +++ b/definitions/grib2/tables/13/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/13/4.208.table b/definitions/grib2/tables/13/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/13/4.208.table +++ b/definitions/grib2/tables/13/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/13/4.209.table b/definitions/grib2/tables/13/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/13/4.209.table +++ b/definitions/grib2/tables/13/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/13/4.210.table b/definitions/grib2/tables/13/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/13/4.210.table +++ b/definitions/grib2/tables/13/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.211.table b/definitions/grib2/tables/13/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/13/4.211.table +++ b/definitions/grib2/tables/13/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/13/4.212.table b/definitions/grib2/tables/13/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/13/4.212.table +++ b/definitions/grib2/tables/13/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/13/4.213.table b/definitions/grib2/tables/13/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/13/4.213.table +++ b/definitions/grib2/tables/13/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/13/4.215.table b/definitions/grib2/tables/13/4.215.table index c264c6722..da458b072 100644 --- a/definitions/grib2/tables/13/4.215.table +++ b/definitions/grib2/tables/13/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/13/4.216.table b/definitions/grib2/tables/13/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/13/4.216.table +++ b/definitions/grib2/tables/13/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/13/4.217.table b/definitions/grib2/tables/13/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/13/4.217.table +++ b/definitions/grib2/tables/13/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/13/4.218.table b/definitions/grib2/tables/13/4.218.table index acf069c32..d023ece2b 100644 --- a/definitions/grib2/tables/13/4.218.table +++ b/definitions/grib2/tables/13/4.218.table @@ -18,7 +18,6 @@ 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 @@ -33,6 +32,4 @@ 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/definitions/grib2/tables/13/4.219.table b/definitions/grib2/tables/13/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/13/4.219.table +++ b/definitions/grib2/tables/13/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/13/4.220.table b/definitions/grib2/tables/13/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/13/4.220.table +++ b/definitions/grib2/tables/13/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.221.table b/definitions/grib2/tables/13/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/13/4.221.table +++ b/definitions/grib2/tables/13/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.222.table b/definitions/grib2/tables/13/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/13/4.222.table +++ b/definitions/grib2/tables/13/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.224.table b/definitions/grib2/tables/13/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/13/4.224.table +++ b/definitions/grib2/tables/13/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/13/4.227.table b/definitions/grib2/tables/13/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/13/4.227.table +++ b/definitions/grib2/tables/13/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/13/4.3.table b/definitions/grib2/tables/13/4.3.table index 2b775c807..c19e8613e 100644 --- a/definitions/grib2/tables/13/4.3.table +++ b/definitions/grib2/tables/13/4.3.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/13/4.4.table b/definitions/grib2/tables/13/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/13/4.4.table +++ b/definitions/grib2/tables/13/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/13/4.5.table b/definitions/grib2/tables/13/4.5.table index d61b61c9f..b033e3105 100644 --- a/definitions/grib2/tables/13/4.5.table +++ b/definitions/grib2/tables/13/4.5.table @@ -12,9 +12,7 @@ 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) @@ -30,13 +28,10 @@ 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 sfc Lake or river bottom @@ -45,6 +40,4 @@ 165 165 Bottom of sediment layer penetrated by thermal wave 166 sfc Mixing layer 167 167 Bottom of root zone -# 168-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/13/4.6.table b/definitions/grib2/tables/13/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/13/4.6.table +++ b/definitions/grib2/tables/13/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/13/4.7.table b/definitions/grib2/tables/13/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/13/4.7.table +++ b/definitions/grib2/tables/13/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/13/4.8.table b/definitions/grib2/tables/13/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/13/4.8.table +++ b/definitions/grib2/tables/13/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/4.9.table b/definitions/grib2/tables/13/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/13/4.9.table +++ b/definitions/grib2/tables/13/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/13/4.91.table b/definitions/grib2/tables/13/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/13/4.91.table +++ b/definitions/grib2/tables/13/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/13/5.0.table b/definitions/grib2/tables/13/5.0.table index 2795336df..7d9a25c37 100644 --- a/definitions/grib2/tables/13/5.0.table +++ b/definitions/grib2/tables/13/5.0.table @@ -6,15 +6,10 @@ 4 4 Grid point data - IEEE floating point data 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 diff --git a/definitions/grib2/tables/13/5.1.table b/definitions/grib2/tables/13/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/13/5.1.table +++ b/definitions/grib2/tables/13/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/5.2.table b/definitions/grib2/tables/13/5.2.table index d12b46fbd..23764170f 100644 --- a/definitions/grib2/tables/13/5.2.table +++ b/definitions/grib2/tables/13/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/13/5.3.table b/definitions/grib2/tables/13/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/13/5.3.table +++ b/definitions/grib2/tables/13/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/13/5.4.table b/definitions/grib2/tables/13/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/13/5.4.table +++ b/definitions/grib2/tables/13/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/13/5.40.table b/definitions/grib2/tables/13/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/13/5.40.table +++ b/definitions/grib2/tables/13/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/13/5.5.table b/definitions/grib2/tables/13/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/13/5.5.table +++ b/definitions/grib2/tables/13/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/13/5.6.table b/definitions/grib2/tables/13/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/13/5.6.table +++ b/definitions/grib2/tables/13/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/13/5.7.table b/definitions/grib2/tables/13/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/13/5.7.table +++ b/definitions/grib2/tables/13/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/14/0.0.table b/definitions/grib2/tables/14/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/14/0.0.table +++ b/definitions/grib2/tables/14/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/14/1.2.table b/definitions/grib2/tables/14/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/14/1.2.table +++ b/definitions/grib2/tables/14/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/14/1.3.table b/definitions/grib2/tables/14/1.3.table index eb3a79f9b..faa81e029 100644 --- a/definitions/grib2/tables/14/1.3.table +++ b/definitions/grib2/tables/14/1.3.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/14/1.4.table b/definitions/grib2/tables/14/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/14/1.4.table +++ b/definitions/grib2/tables/14/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/14/1.5.table b/definitions/grib2/tables/14/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/14/1.5.table +++ b/definitions/grib2/tables/14/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/1.6.table b/definitions/grib2/tables/14/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/14/1.6.table +++ b/definitions/grib2/tables/14/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/14/3.0.table b/definitions/grib2/tables/14/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/14/3.0.table +++ b/definitions/grib2/tables/14/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/3.1.table b/definitions/grib2/tables/14/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/14/3.1.table +++ b/definitions/grib2/tables/14/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/14/3.10.table b/definitions/grib2/tables/14/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/14/3.10.table +++ b/definitions/grib2/tables/14/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/14/3.11.table b/definitions/grib2/tables/14/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/14/3.11.table +++ b/definitions/grib2/tables/14/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/14/3.15.table b/definitions/grib2/tables/14/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/14/3.15.table +++ b/definitions/grib2/tables/14/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/14/3.2.table b/definitions/grib2/tables/14/3.2.table index b9574a424..ed8eb276c 100644 --- a/definitions/grib2/tables/14/3.2.table +++ b/definitions/grib2/tables/14/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/14/3.20.table b/definitions/grib2/tables/14/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/14/3.20.table +++ b/definitions/grib2/tables/14/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/3.21.table b/definitions/grib2/tables/14/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/14/3.21.table +++ b/definitions/grib2/tables/14/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/14/3.3.table b/definitions/grib2/tables/14/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/14/3.3.table +++ b/definitions/grib2/tables/14/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/14/3.7.table b/definitions/grib2/tables/14/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/14/3.7.table +++ b/definitions/grib2/tables/14/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/14/3.8.table b/definitions/grib2/tables/14/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/14/3.8.table +++ b/definitions/grib2/tables/14/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/3.9.table b/definitions/grib2/tables/14/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/14/3.9.table +++ b/definitions/grib2/tables/14/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/14/4.0.table b/definitions/grib2/tables/14/4.0.table index 7627a2a3d..4e0a86fbd 100644 --- a/definitions/grib2/tables/14/4.0.table +++ b/definitions/grib2/tables/14/4.0.table @@ -15,15 +15,12 @@ 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 @@ -34,29 +31,21 @@ 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/definitions/grib2/tables/14/4.1.0.table b/definitions/grib2/tables/14/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/14/4.1.0.table +++ b/definitions/grib2/tables/14/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/14/4.1.1.table b/definitions/grib2/tables/14/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/14/4.1.1.table +++ b/definitions/grib2/tables/14/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/4.1.10.table b/definitions/grib2/tables/14/4.1.10.table index e9663f391..ac6a221f9 100644 --- a/definitions/grib2/tables/14/4.1.10.table +++ b/definitions/grib2/tables/14/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/14/4.1.2.table b/definitions/grib2/tables/14/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/14/4.1.2.table +++ b/definitions/grib2/tables/14/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/14/4.1.3.table b/definitions/grib2/tables/14/4.1.3.table index c1a1e267a..5102b92b2 100644 --- a/definitions/grib2/tables/14/4.1.3.table +++ b/definitions/grib2/tables/14/4.1.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.10.table b/definitions/grib2/tables/14/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/14/4.10.table +++ b/definitions/grib2/tables/14/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/14/4.11.table b/definitions/grib2/tables/14/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/14/4.11.table +++ b/definitions/grib2/tables/14/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/14/4.12.table b/definitions/grib2/tables/14/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/14/4.12.table +++ b/definitions/grib2/tables/14/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/4.13.table b/definitions/grib2/tables/14/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/14/4.13.table +++ b/definitions/grib2/tables/14/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.14.table b/definitions/grib2/tables/14/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/14/4.14.table +++ b/definitions/grib2/tables/14/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.15.table b/definitions/grib2/tables/14/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/14/4.15.table +++ b/definitions/grib2/tables/14/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/14/4.2.0.0.table b/definitions/grib2/tables/14/4.2.0.0.table index 24d21959d..1e5d530e6 100644 --- a/definitions/grib2/tables/14/4.2.0.0.table +++ b/definitions/grib2/tables/14/4.2.0.0.table @@ -21,6 +21,4 @@ 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/definitions/grib2/tables/14/4.2.0.1.table b/definitions/grib2/tables/14/4.2.0.1.table index bd0214c77..754633f11 100644 --- a/definitions/grib2/tables/14/4.2.0.1.table +++ b/definitions/grib2/tables/14/4.2.0.1.table @@ -86,12 +86,9 @@ 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/definitions/grib2/tables/14/4.2.0.13.table b/definitions/grib2/tables/14/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/14/4.2.0.13.table +++ b/definitions/grib2/tables/14/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/14/4.2.0.14.table b/definitions/grib2/tables/14/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/14/4.2.0.14.table +++ b/definitions/grib2/tables/14/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/4.2.0.15.table b/definitions/grib2/tables/14/4.2.0.15.table index bb0b9ab46..fdb54bf4f 100644 --- a/definitions/grib2/tables/14/4.2.0.15.table +++ b/definitions/grib2/tables/14/4.2.0.15.table @@ -14,6 +14,4 @@ 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/definitions/grib2/tables/14/4.2.0.16.table b/definitions/grib2/tables/14/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/14/4.2.0.16.table +++ b/definitions/grib2/tables/14/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/14/4.2.0.18.table b/definitions/grib2/tables/14/4.2.0.18.table index 7e0a736eb..8a8bbc46a 100644 --- a/definitions/grib2/tables/14/4.2.0.18.table +++ b/definitions/grib2/tables/14/4.2.0.18.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/14/4.2.0.19.table b/definitions/grib2/tables/14/4.2.0.19.table index d2beef083..49e1b1a7e 100644 --- a/definitions/grib2/tables/14/4.2.0.19.table +++ b/definitions/grib2/tables/14/4.2.0.19.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/14/4.2.0.190.table b/definitions/grib2/tables/14/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/14/4.2.0.190.table +++ b/definitions/grib2/tables/14/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/14/4.2.0.191.table b/definitions/grib2/tables/14/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/14/4.2.0.191.table +++ b/definitions/grib2/tables/14/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/14/4.2.0.2.table b/definitions/grib2/tables/14/4.2.0.2.table index 7bd1509f5..57f55079c 100644 --- a/definitions/grib2/tables/14/4.2.0.2.table +++ b/definitions/grib2/tables/14/4.2.0.2.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/14/4.2.0.20.table b/definitions/grib2/tables/14/4.2.0.20.table index df9ccc184..697e8e2d3 100644 --- a/definitions/grib2/tables/14/4.2.0.20.table +++ b/definitions/grib2/tables/14/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -25,7 +24,6 @@ 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) @@ -37,6 +35,4 @@ 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/definitions/grib2/tables/14/4.2.0.3.table b/definitions/grib2/tables/14/4.2.0.3.table index e1a68bfc5..5aed1a408 100644 --- a/definitions/grib2/tables/14/4.2.0.3.table +++ b/definitions/grib2/tables/14/4.2.0.3.table @@ -26,6 +26,4 @@ 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/definitions/grib2/tables/14/4.2.0.4.table b/definitions/grib2/tables/14/4.2.0.4.table index 03b5cea38..4b0159cd4 100644 --- a/definitions/grib2/tables/14/4.2.0.4.table +++ b/definitions/grib2/tables/14/4.2.0.4.table @@ -12,9 +12,6 @@ 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/definitions/grib2/tables/14/4.2.0.5.table b/definitions/grib2/tables/14/4.2.0.5.table index 1bdd6ebee..d5e41d237 100644 --- a/definitions/grib2/tables/14/4.2.0.5.table +++ b/definitions/grib2/tables/14/4.2.0.5.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/14/4.2.0.6.table b/definitions/grib2/tables/14/4.2.0.6.table index 427240b70..5b895176b 100644 --- a/definitions/grib2/tables/14/4.2.0.6.table +++ b/definitions/grib2/tables/14/4.2.0.6.table @@ -37,6 +37,4 @@ 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/definitions/grib2/tables/14/4.2.0.7.table b/definitions/grib2/tables/14/4.2.0.7.table index 8a2b85fb9..094a07a7c 100644 --- a/definitions/grib2/tables/14/4.2.0.7.table +++ b/definitions/grib2/tables/14/4.2.0.7.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/14/4.2.1.0.table b/definitions/grib2/tables/14/4.2.1.0.table index f455c3365..13e09c639 100644 --- a/definitions/grib2/tables/14/4.2.1.0.table +++ b/definitions/grib2/tables/14/4.2.1.0.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/14/4.2.1.1.table b/definitions/grib2/tables/14/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/14/4.2.1.1.table +++ b/definitions/grib2/tables/14/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/4.2.10.0.table b/definitions/grib2/tables/14/4.2.10.0.table index 3611abd9a..5014980aa 100644 --- a/definitions/grib2/tables/14/4.2.10.0.table +++ b/definitions/grib2/tables/14/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/14/4.2.10.1.table b/definitions/grib2/tables/14/4.2.10.1.table index f0a073c00..c172554a9 100644 --- a/definitions/grib2/tables/14/4.2.10.1.table +++ b/definitions/grib2/tables/14/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/14/4.2.10.191.table b/definitions/grib2/tables/14/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/14/4.2.10.191.table +++ b/definitions/grib2/tables/14/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/14/4.2.10.2.table b/definitions/grib2/tables/14/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/14/4.2.10.2.table +++ b/definitions/grib2/tables/14/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/14/4.2.10.3.table b/definitions/grib2/tables/14/4.2.10.3.table index 937720c93..71f0770e8 100644 --- a/definitions/grib2/tables/14/4.2.10.3.table +++ b/definitions/grib2/tables/14/4.2.10.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.2.10.4.table b/definitions/grib2/tables/14/4.2.10.4.table index d5615ae26..15cc8b4b3 100644 --- a/definitions/grib2/tables/14/4.2.10.4.table +++ b/definitions/grib2/tables/14/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/14/4.2.2.0.table b/definitions/grib2/tables/14/4.2.2.0.table index d61dd05fc..33b46e003 100644 --- a/definitions/grib2/tables/14/4.2.2.0.table +++ b/definitions/grib2/tables/14/4.2.2.0.table @@ -37,6 +37,4 @@ 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/definitions/grib2/tables/14/4.2.2.3.table b/definitions/grib2/tables/14/4.2.2.3.table index 3d3298c8a..31b88d06d 100644 --- a/definitions/grib2/tables/14/4.2.2.3.table +++ b/definitions/grib2/tables/14/4.2.2.3.table @@ -22,6 +22,4 @@ 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/definitions/grib2/tables/14/4.2.2.4.table b/definitions/grib2/tables/14/4.2.2.4.table index c8b877df6..8562742b1 100644 --- a/definitions/grib2/tables/14/4.2.2.4.table +++ b/definitions/grib2/tables/14/4.2.2.4.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/14/4.2.3.0.table b/definitions/grib2/tables/14/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/14/4.2.3.0.table +++ b/definitions/grib2/tables/14/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/14/4.2.3.1.table b/definitions/grib2/tables/14/4.2.3.1.table index bc16d8855..3856da223 100644 --- a/definitions/grib2/tables/14/4.2.3.1.table +++ b/definitions/grib2/tables/14/4.2.3.1.table @@ -23,6 +23,4 @@ 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/definitions/grib2/tables/14/4.201.table b/definitions/grib2/tables/14/4.201.table index fa173c4e0..7787ce735 100644 --- a/definitions/grib2/tables/14/4.201.table +++ b/definitions/grib2/tables/14/4.201.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/14/4.202.table b/definitions/grib2/tables/14/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/14/4.202.table +++ b/definitions/grib2/tables/14/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/14/4.203.table b/definitions/grib2/tables/14/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/14/4.203.table +++ b/definitions/grib2/tables/14/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/14/4.204.table b/definitions/grib2/tables/14/4.204.table index ffbd89502..2084e77dc 100644 --- a/definitions/grib2/tables/14/4.204.table +++ b/definitions/grib2/tables/14/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/14/4.205.table b/definitions/grib2/tables/14/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/14/4.205.table +++ b/definitions/grib2/tables/14/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.206.table b/definitions/grib2/tables/14/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/14/4.206.table +++ b/definitions/grib2/tables/14/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.207.table b/definitions/grib2/tables/14/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/14/4.207.table +++ b/definitions/grib2/tables/14/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/14/4.208.table b/definitions/grib2/tables/14/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/14/4.208.table +++ b/definitions/grib2/tables/14/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/14/4.209.table b/definitions/grib2/tables/14/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/14/4.209.table +++ b/definitions/grib2/tables/14/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/14/4.210.table b/definitions/grib2/tables/14/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/14/4.210.table +++ b/definitions/grib2/tables/14/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.211.table b/definitions/grib2/tables/14/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/14/4.211.table +++ b/definitions/grib2/tables/14/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/4.212.table b/definitions/grib2/tables/14/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/14/4.212.table +++ b/definitions/grib2/tables/14/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/14/4.213.table b/definitions/grib2/tables/14/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/14/4.213.table +++ b/definitions/grib2/tables/14/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/14/4.215.table b/definitions/grib2/tables/14/4.215.table index c264c6722..da458b072 100644 --- a/definitions/grib2/tables/14/4.215.table +++ b/definitions/grib2/tables/14/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/14/4.216.table b/definitions/grib2/tables/14/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/14/4.216.table +++ b/definitions/grib2/tables/14/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/14/4.217.table b/definitions/grib2/tables/14/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/14/4.217.table +++ b/definitions/grib2/tables/14/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/14/4.218.table b/definitions/grib2/tables/14/4.218.table index acf069c32..d023ece2b 100644 --- a/definitions/grib2/tables/14/4.218.table +++ b/definitions/grib2/tables/14/4.218.table @@ -18,7 +18,6 @@ 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 @@ -33,6 +32,4 @@ 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/definitions/grib2/tables/14/4.219.table b/definitions/grib2/tables/14/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/14/4.219.table +++ b/definitions/grib2/tables/14/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/14/4.220.table b/definitions/grib2/tables/14/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/14/4.220.table +++ b/definitions/grib2/tables/14/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.221.table b/definitions/grib2/tables/14/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/14/4.221.table +++ b/definitions/grib2/tables/14/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.222.table b/definitions/grib2/tables/14/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/14/4.222.table +++ b/definitions/grib2/tables/14/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.224.table b/definitions/grib2/tables/14/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/14/4.224.table +++ b/definitions/grib2/tables/14/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/14/4.227.table b/definitions/grib2/tables/14/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/14/4.227.table +++ b/definitions/grib2/tables/14/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/14/4.241.table b/definitions/grib2/tables/14/4.241.table index ce6a15f3c..3d7098dbf 100644 --- a/definitions/grib2/tables/14/4.241.table +++ b/definitions/grib2/tables/14/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/14/4.242.table b/definitions/grib2/tables/14/4.242.table index ca852339d..7d5d908c5 100644 --- a/definitions/grib2/tables/14/4.242.table +++ b/definitions/grib2/tables/14/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/4.243.table b/definitions/grib2/tables/14/4.243.table index 8677e6819..720ec0dbe 100644 --- a/definitions/grib2/tables/14/4.243.table +++ b/definitions/grib2/tables/14/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/14/4.3.table b/definitions/grib2/tables/14/4.3.table index 46e498c5f..c71b29cd1 100644 --- a/definitions/grib2/tables/14/4.3.table +++ b/definitions/grib2/tables/14/4.3.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/14/4.4.table b/definitions/grib2/tables/14/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/14/4.4.table +++ b/definitions/grib2/tables/14/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/14/4.5.table b/definitions/grib2/tables/14/4.5.table index d61b61c9f..b033e3105 100644 --- a/definitions/grib2/tables/14/4.5.table +++ b/definitions/grib2/tables/14/4.5.table @@ -12,9 +12,7 @@ 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) @@ -30,13 +28,10 @@ 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 sfc Lake or river bottom @@ -45,6 +40,4 @@ 165 165 Bottom of sediment layer penetrated by thermal wave 166 sfc Mixing layer 167 167 Bottom of root zone -# 168-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/14/4.6.table b/definitions/grib2/tables/14/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/14/4.6.table +++ b/definitions/grib2/tables/14/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/14/4.7.table b/definitions/grib2/tables/14/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/14/4.7.table +++ b/definitions/grib2/tables/14/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/14/4.8.table b/definitions/grib2/tables/14/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/14/4.8.table +++ b/definitions/grib2/tables/14/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/4.9.table b/definitions/grib2/tables/14/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/14/4.9.table +++ b/definitions/grib2/tables/14/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/14/4.91.table b/definitions/grib2/tables/14/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/14/4.91.table +++ b/definitions/grib2/tables/14/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/14/5.0.table b/definitions/grib2/tables/14/5.0.table index 2795336df..7d9a25c37 100644 --- a/definitions/grib2/tables/14/5.0.table +++ b/definitions/grib2/tables/14/5.0.table @@ -6,15 +6,10 @@ 4 4 Grid point data - IEEE floating point data 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 diff --git a/definitions/grib2/tables/14/5.1.table b/definitions/grib2/tables/14/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/14/5.1.table +++ b/definitions/grib2/tables/14/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/5.2.table b/definitions/grib2/tables/14/5.2.table index d12b46fbd..23764170f 100644 --- a/definitions/grib2/tables/14/5.2.table +++ b/definitions/grib2/tables/14/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/14/5.3.table b/definitions/grib2/tables/14/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/14/5.3.table +++ b/definitions/grib2/tables/14/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/5.4.table b/definitions/grib2/tables/14/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/14/5.4.table +++ b/definitions/grib2/tables/14/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/14/5.40.table b/definitions/grib2/tables/14/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/14/5.40.table +++ b/definitions/grib2/tables/14/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/14/5.5.table b/definitions/grib2/tables/14/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/14/5.5.table +++ b/definitions/grib2/tables/14/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/5.6.table b/definitions/grib2/tables/14/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/14/5.6.table +++ b/definitions/grib2/tables/14/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/14/5.7.table b/definitions/grib2/tables/14/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/14/5.7.table +++ b/definitions/grib2/tables/14/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/15/0.0.table b/definitions/grib2/tables/15/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/15/0.0.table +++ b/definitions/grib2/tables/15/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/15/1.2.table b/definitions/grib2/tables/15/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/15/1.2.table +++ b/definitions/grib2/tables/15/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/15/1.3.table b/definitions/grib2/tables/15/1.3.table index e7197fcb2..bbb081f20 100644 --- a/definitions/grib2/tables/15/1.3.table +++ b/definitions/grib2/tables/15/1.3.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/15/1.4.table b/definitions/grib2/tables/15/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/15/1.4.table +++ b/definitions/grib2/tables/15/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/15/1.5.table b/definitions/grib2/tables/15/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/15/1.5.table +++ b/definitions/grib2/tables/15/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/1.6.table b/definitions/grib2/tables/15/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/15/1.6.table +++ b/definitions/grib2/tables/15/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/15/3.0.table b/definitions/grib2/tables/15/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/15/3.0.table +++ b/definitions/grib2/tables/15/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/3.1.table b/definitions/grib2/tables/15/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/15/3.1.table +++ b/definitions/grib2/tables/15/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/15/3.10.table b/definitions/grib2/tables/15/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/15/3.10.table +++ b/definitions/grib2/tables/15/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/15/3.11.table b/definitions/grib2/tables/15/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/15/3.11.table +++ b/definitions/grib2/tables/15/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/15/3.15.table b/definitions/grib2/tables/15/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/15/3.15.table +++ b/definitions/grib2/tables/15/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/15/3.2.table b/definitions/grib2/tables/15/3.2.table index b9574a424..ed8eb276c 100644 --- a/definitions/grib2/tables/15/3.2.table +++ b/definitions/grib2/tables/15/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/15/3.20.table b/definitions/grib2/tables/15/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/15/3.20.table +++ b/definitions/grib2/tables/15/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/3.21.table b/definitions/grib2/tables/15/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/15/3.21.table +++ b/definitions/grib2/tables/15/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/15/3.3.table b/definitions/grib2/tables/15/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/15/3.3.table +++ b/definitions/grib2/tables/15/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/15/3.7.table b/definitions/grib2/tables/15/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/15/3.7.table +++ b/definitions/grib2/tables/15/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/15/3.8.table b/definitions/grib2/tables/15/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/15/3.8.table +++ b/definitions/grib2/tables/15/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/3.9.table b/definitions/grib2/tables/15/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/15/3.9.table +++ b/definitions/grib2/tables/15/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/15/4.0.table b/definitions/grib2/tables/15/4.0.table index b05d7ef13..f64f3990f 100644 --- a/definitions/grib2/tables/15/4.0.table +++ b/definitions/grib2/tables/15/4.0.table @@ -15,15 +15,12 @@ 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 @@ -34,31 +31,22 @@ 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/definitions/grib2/tables/15/4.1.0.table b/definitions/grib2/tables/15/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/15/4.1.0.table +++ b/definitions/grib2/tables/15/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/15/4.1.1.table b/definitions/grib2/tables/15/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/15/4.1.1.table +++ b/definitions/grib2/tables/15/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/4.1.10.table b/definitions/grib2/tables/15/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/15/4.1.10.table +++ b/definitions/grib2/tables/15/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/15/4.1.2.table b/definitions/grib2/tables/15/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/15/4.1.2.table +++ b/definitions/grib2/tables/15/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/15/4.1.3.table b/definitions/grib2/tables/15/4.1.3.table index c1a1e267a..5102b92b2 100644 --- a/definitions/grib2/tables/15/4.1.3.table +++ b/definitions/grib2/tables/15/4.1.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.10.table b/definitions/grib2/tables/15/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/15/4.10.table +++ b/definitions/grib2/tables/15/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/15/4.11.table b/definitions/grib2/tables/15/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/15/4.11.table +++ b/definitions/grib2/tables/15/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/15/4.12.table b/definitions/grib2/tables/15/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/15/4.12.table +++ b/definitions/grib2/tables/15/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/4.13.table b/definitions/grib2/tables/15/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/15/4.13.table +++ b/definitions/grib2/tables/15/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.14.table b/definitions/grib2/tables/15/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/15/4.14.table +++ b/definitions/grib2/tables/15/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.15.table b/definitions/grib2/tables/15/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/15/4.15.table +++ b/definitions/grib2/tables/15/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/15/4.2.0.0.table b/definitions/grib2/tables/15/4.2.0.0.table index 24d21959d..1e5d530e6 100644 --- a/definitions/grib2/tables/15/4.2.0.0.table +++ b/definitions/grib2/tables/15/4.2.0.0.table @@ -21,6 +21,4 @@ 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/definitions/grib2/tables/15/4.2.0.1.table b/definitions/grib2/tables/15/4.2.0.1.table index 69386bbe2..7e5a85875 100644 --- a/definitions/grib2/tables/15/4.2.0.1.table +++ b/definitions/grib2/tables/15/4.2.0.1.table @@ -86,7 +86,6 @@ 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) @@ -105,6 +104,4 @@ 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/definitions/grib2/tables/15/4.2.0.13.table b/definitions/grib2/tables/15/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/15/4.2.0.13.table +++ b/definitions/grib2/tables/15/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/15/4.2.0.14.table b/definitions/grib2/tables/15/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/15/4.2.0.14.table +++ b/definitions/grib2/tables/15/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/4.2.0.15.table b/definitions/grib2/tables/15/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/15/4.2.0.15.table +++ b/definitions/grib2/tables/15/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/15/4.2.0.16.table b/definitions/grib2/tables/15/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/15/4.2.0.16.table +++ b/definitions/grib2/tables/15/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/15/4.2.0.18.table b/definitions/grib2/tables/15/4.2.0.18.table index 7e0a736eb..8a8bbc46a 100644 --- a/definitions/grib2/tables/15/4.2.0.18.table +++ b/definitions/grib2/tables/15/4.2.0.18.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/15/4.2.0.19.table b/definitions/grib2/tables/15/4.2.0.19.table index d2beef083..49e1b1a7e 100644 --- a/definitions/grib2/tables/15/4.2.0.19.table +++ b/definitions/grib2/tables/15/4.2.0.19.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/15/4.2.0.190.table b/definitions/grib2/tables/15/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/15/4.2.0.190.table +++ b/definitions/grib2/tables/15/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/15/4.2.0.191.table b/definitions/grib2/tables/15/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/15/4.2.0.191.table +++ b/definitions/grib2/tables/15/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/15/4.2.0.2.table b/definitions/grib2/tables/15/4.2.0.2.table index 7bd1509f5..57f55079c 100644 --- a/definitions/grib2/tables/15/4.2.0.2.table +++ b/definitions/grib2/tables/15/4.2.0.2.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/15/4.2.0.20.table b/definitions/grib2/tables/15/4.2.0.20.table index df9ccc184..697e8e2d3 100644 --- a/definitions/grib2/tables/15/4.2.0.20.table +++ b/definitions/grib2/tables/15/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -25,7 +24,6 @@ 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) @@ -37,6 +35,4 @@ 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/definitions/grib2/tables/15/4.2.0.3.table b/definitions/grib2/tables/15/4.2.0.3.table index e1a68bfc5..5aed1a408 100644 --- a/definitions/grib2/tables/15/4.2.0.3.table +++ b/definitions/grib2/tables/15/4.2.0.3.table @@ -26,6 +26,4 @@ 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/definitions/grib2/tables/15/4.2.0.4.table b/definitions/grib2/tables/15/4.2.0.4.table index 03b5cea38..4b0159cd4 100644 --- a/definitions/grib2/tables/15/4.2.0.4.table +++ b/definitions/grib2/tables/15/4.2.0.4.table @@ -12,9 +12,6 @@ 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/definitions/grib2/tables/15/4.2.0.5.table b/definitions/grib2/tables/15/4.2.0.5.table index b9084509a..1cb655f94 100644 --- a/definitions/grib2/tables/15/4.2.0.5.table +++ b/definitions/grib2/tables/15/4.2.0.5.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/15/4.2.0.6.table b/definitions/grib2/tables/15/4.2.0.6.table index 8f1574d46..0c172f89c 100644 --- a/definitions/grib2/tables/15/4.2.0.6.table +++ b/definitions/grib2/tables/15/4.2.0.6.table @@ -39,6 +39,4 @@ 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/definitions/grib2/tables/15/4.2.0.7.table b/definitions/grib2/tables/15/4.2.0.7.table index 8a2b85fb9..094a07a7c 100644 --- a/definitions/grib2/tables/15/4.2.0.7.table +++ b/definitions/grib2/tables/15/4.2.0.7.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/15/4.2.1.0.table b/definitions/grib2/tables/15/4.2.1.0.table index f455c3365..13e09c639 100644 --- a/definitions/grib2/tables/15/4.2.1.0.table +++ b/definitions/grib2/tables/15/4.2.1.0.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/15/4.2.1.1.table b/definitions/grib2/tables/15/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/15/4.2.1.1.table +++ b/definitions/grib2/tables/15/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/4.2.10.0.table b/definitions/grib2/tables/15/4.2.10.0.table index 3611abd9a..5014980aa 100644 --- a/definitions/grib2/tables/15/4.2.10.0.table +++ b/definitions/grib2/tables/15/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/15/4.2.10.1.table b/definitions/grib2/tables/15/4.2.10.1.table index f0a073c00..c172554a9 100644 --- a/definitions/grib2/tables/15/4.2.10.1.table +++ b/definitions/grib2/tables/15/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/15/4.2.10.191.table b/definitions/grib2/tables/15/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/15/4.2.10.191.table +++ b/definitions/grib2/tables/15/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/15/4.2.10.2.table b/definitions/grib2/tables/15/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/15/4.2.10.2.table +++ b/definitions/grib2/tables/15/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/15/4.2.10.3.table b/definitions/grib2/tables/15/4.2.10.3.table index 937720c93..71f0770e8 100644 --- a/definitions/grib2/tables/15/4.2.10.3.table +++ b/definitions/grib2/tables/15/4.2.10.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.2.10.4.table b/definitions/grib2/tables/15/4.2.10.4.table index d5615ae26..15cc8b4b3 100644 --- a/definitions/grib2/tables/15/4.2.10.4.table +++ b/definitions/grib2/tables/15/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/15/4.2.2.0.table b/definitions/grib2/tables/15/4.2.2.0.table index b253cac22..090bbb64a 100644 --- a/definitions/grib2/tables/15/4.2.2.0.table +++ b/definitions/grib2/tables/15/4.2.2.0.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/15/4.2.2.3.table b/definitions/grib2/tables/15/4.2.2.3.table index 2b1d0ac38..53e991677 100644 --- a/definitions/grib2/tables/15/4.2.2.3.table +++ b/definitions/grib2/tables/15/4.2.2.3.table @@ -23,6 +23,4 @@ 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/definitions/grib2/tables/15/4.2.2.4.table b/definitions/grib2/tables/15/4.2.2.4.table index c8b877df6..8562742b1 100644 --- a/definitions/grib2/tables/15/4.2.2.4.table +++ b/definitions/grib2/tables/15/4.2.2.4.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/15/4.2.3.0.table b/definitions/grib2/tables/15/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/15/4.2.3.0.table +++ b/definitions/grib2/tables/15/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/15/4.2.3.1.table b/definitions/grib2/tables/15/4.2.3.1.table index bc9eaab0d..0c57e41ff 100644 --- a/definitions/grib2/tables/15/4.2.3.1.table +++ b/definitions/grib2/tables/15/4.2.3.1.table @@ -23,6 +23,4 @@ 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/definitions/grib2/tables/15/4.201.table b/definitions/grib2/tables/15/4.201.table index fa173c4e0..7787ce735 100644 --- a/definitions/grib2/tables/15/4.201.table +++ b/definitions/grib2/tables/15/4.201.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/15/4.202.table b/definitions/grib2/tables/15/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/15/4.202.table +++ b/definitions/grib2/tables/15/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/15/4.203.table b/definitions/grib2/tables/15/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/15/4.203.table +++ b/definitions/grib2/tables/15/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/15/4.204.table b/definitions/grib2/tables/15/4.204.table index ffbd89502..2084e77dc 100644 --- a/definitions/grib2/tables/15/4.204.table +++ b/definitions/grib2/tables/15/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/15/4.205.table b/definitions/grib2/tables/15/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/15/4.205.table +++ b/definitions/grib2/tables/15/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.206.table b/definitions/grib2/tables/15/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/15/4.206.table +++ b/definitions/grib2/tables/15/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.207.table b/definitions/grib2/tables/15/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/15/4.207.table +++ b/definitions/grib2/tables/15/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/15/4.208.table b/definitions/grib2/tables/15/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/15/4.208.table +++ b/definitions/grib2/tables/15/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/15/4.209.table b/definitions/grib2/tables/15/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/15/4.209.table +++ b/definitions/grib2/tables/15/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/15/4.210.table b/definitions/grib2/tables/15/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/15/4.210.table +++ b/definitions/grib2/tables/15/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.211.table b/definitions/grib2/tables/15/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/15/4.211.table +++ b/definitions/grib2/tables/15/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/4.212.table b/definitions/grib2/tables/15/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/15/4.212.table +++ b/definitions/grib2/tables/15/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/15/4.213.table b/definitions/grib2/tables/15/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/15/4.213.table +++ b/definitions/grib2/tables/15/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/15/4.215.table b/definitions/grib2/tables/15/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/15/4.215.table +++ b/definitions/grib2/tables/15/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/15/4.216.table b/definitions/grib2/tables/15/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/15/4.216.table +++ b/definitions/grib2/tables/15/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/15/4.217.table b/definitions/grib2/tables/15/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/15/4.217.table +++ b/definitions/grib2/tables/15/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/15/4.218.table b/definitions/grib2/tables/15/4.218.table index fdaa3ea31..e05d8c010 100644 --- a/definitions/grib2/tables/15/4.218.table +++ b/definitions/grib2/tables/15/4.218.table @@ -18,7 +18,6 @@ 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 @@ -33,6 +32,4 @@ 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/definitions/grib2/tables/15/4.219.table b/definitions/grib2/tables/15/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/15/4.219.table +++ b/definitions/grib2/tables/15/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/15/4.220.table b/definitions/grib2/tables/15/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/15/4.220.table +++ b/definitions/grib2/tables/15/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.221.table b/definitions/grib2/tables/15/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/15/4.221.table +++ b/definitions/grib2/tables/15/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.222.table b/definitions/grib2/tables/15/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/15/4.222.table +++ b/definitions/grib2/tables/15/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.224.table b/definitions/grib2/tables/15/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/15/4.224.table +++ b/definitions/grib2/tables/15/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/15/4.227.table b/definitions/grib2/tables/15/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/15/4.227.table +++ b/definitions/grib2/tables/15/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/15/4.240.table b/definitions/grib2/tables/15/4.240.table index f8bcdf7b8..283856931 100644 --- a/definitions/grib2/tables/15/4.240.table +++ b/definitions/grib2/tables/15/4.240.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/15/4.241.table b/definitions/grib2/tables/15/4.241.table index 6ce0a5ea7..50b78fa8d 100644 --- a/definitions/grib2/tables/15/4.241.table +++ b/definitions/grib2/tables/15/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/15/4.242.table b/definitions/grib2/tables/15/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/15/4.242.table +++ b/definitions/grib2/tables/15/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/4.243.table b/definitions/grib2/tables/15/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/15/4.243.table +++ b/definitions/grib2/tables/15/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/15/4.3.table b/definitions/grib2/tables/15/4.3.table index 46e498c5f..c71b29cd1 100644 --- a/definitions/grib2/tables/15/4.3.table +++ b/definitions/grib2/tables/15/4.3.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/15/4.4.table b/definitions/grib2/tables/15/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/15/4.4.table +++ b/definitions/grib2/tables/15/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/15/4.5.table b/definitions/grib2/tables/15/4.5.table index d1a76825a..900ec1d9d 100644 --- a/definitions/grib2/tables/15/4.5.table +++ b/definitions/grib2/tables/15/4.5.table @@ -12,9 +12,7 @@ 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) @@ -30,13 +28,10 @@ 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 sfc Lake or river bottom @@ -45,8 +40,6 @@ 165 165 Bottom of sediment layer penetrated by thermal wave 166 sfc Mixing layer 167 167 Bottom of root zone -# 168-173 Reserved -# 168-169 Reserved 174 sfc 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 @@ -58,6 +51,4 @@ 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/definitions/grib2/tables/15/4.6.table b/definitions/grib2/tables/15/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/15/4.6.table +++ b/definitions/grib2/tables/15/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/15/4.7.table b/definitions/grib2/tables/15/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/15/4.7.table +++ b/definitions/grib2/tables/15/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/15/4.8.table b/definitions/grib2/tables/15/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/15/4.8.table +++ b/definitions/grib2/tables/15/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/4.9.table b/definitions/grib2/tables/15/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/15/4.9.table +++ b/definitions/grib2/tables/15/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/15/4.91.table b/definitions/grib2/tables/15/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/15/4.91.table +++ b/definitions/grib2/tables/15/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/15/5.0.table b/definitions/grib2/tables/15/5.0.table index 2795336df..7d9a25c37 100644 --- a/definitions/grib2/tables/15/5.0.table +++ b/definitions/grib2/tables/15/5.0.table @@ -6,15 +6,10 @@ 4 4 Grid point data - IEEE floating point data 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 diff --git a/definitions/grib2/tables/15/5.1.table b/definitions/grib2/tables/15/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/15/5.1.table +++ b/definitions/grib2/tables/15/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/5.2.table b/definitions/grib2/tables/15/5.2.table index d12b46fbd..23764170f 100644 --- a/definitions/grib2/tables/15/5.2.table +++ b/definitions/grib2/tables/15/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/15/5.3.table b/definitions/grib2/tables/15/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/15/5.3.table +++ b/definitions/grib2/tables/15/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/5.4.table b/definitions/grib2/tables/15/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/15/5.4.table +++ b/definitions/grib2/tables/15/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/15/5.40.table b/definitions/grib2/tables/15/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/15/5.40.table +++ b/definitions/grib2/tables/15/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/15/5.5.table b/definitions/grib2/tables/15/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/15/5.5.table +++ b/definitions/grib2/tables/15/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/5.6.table b/definitions/grib2/tables/15/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/15/5.6.table +++ b/definitions/grib2/tables/15/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/15/5.7.table b/definitions/grib2/tables/15/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/15/5.7.table +++ b/definitions/grib2/tables/15/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/16/0.0.table b/definitions/grib2/tables/16/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/16/0.0.table +++ b/definitions/grib2/tables/16/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/16/1.2.table b/definitions/grib2/tables/16/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/16/1.2.table +++ b/definitions/grib2/tables/16/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/16/1.3.table b/definitions/grib2/tables/16/1.3.table index e7197fcb2..bbb081f20 100644 --- a/definitions/grib2/tables/16/1.3.table +++ b/definitions/grib2/tables/16/1.3.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/16/1.4.table b/definitions/grib2/tables/16/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/16/1.4.table +++ b/definitions/grib2/tables/16/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/16/1.5.table b/definitions/grib2/tables/16/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/16/1.5.table +++ b/definitions/grib2/tables/16/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/1.6.table b/definitions/grib2/tables/16/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/16/1.6.table +++ b/definitions/grib2/tables/16/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/16/3.0.table b/definitions/grib2/tables/16/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/16/3.0.table +++ b/definitions/grib2/tables/16/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/3.1.table b/definitions/grib2/tables/16/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/16/3.1.table +++ b/definitions/grib2/tables/16/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/16/3.10.table b/definitions/grib2/tables/16/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/16/3.10.table +++ b/definitions/grib2/tables/16/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/16/3.11.table b/definitions/grib2/tables/16/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/16/3.11.table +++ b/definitions/grib2/tables/16/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/16/3.15.table b/definitions/grib2/tables/16/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/16/3.15.table +++ b/definitions/grib2/tables/16/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/16/3.2.table b/definitions/grib2/tables/16/3.2.table index b9574a424..ed8eb276c 100644 --- a/definitions/grib2/tables/16/3.2.table +++ b/definitions/grib2/tables/16/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/16/3.20.table b/definitions/grib2/tables/16/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/16/3.20.table +++ b/definitions/grib2/tables/16/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/3.21.table b/definitions/grib2/tables/16/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/16/3.21.table +++ b/definitions/grib2/tables/16/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/16/3.3.table b/definitions/grib2/tables/16/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/16/3.3.table +++ b/definitions/grib2/tables/16/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/16/3.7.table b/definitions/grib2/tables/16/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/16/3.7.table +++ b/definitions/grib2/tables/16/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/16/3.8.table b/definitions/grib2/tables/16/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/16/3.8.table +++ b/definitions/grib2/tables/16/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/3.9.table b/definitions/grib2/tables/16/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/16/3.9.table +++ b/definitions/grib2/tables/16/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/16/4.0.table b/definitions/grib2/tables/16/4.0.table index eef83c7c3..1dbf0c57e 100644 --- a/definitions/grib2/tables/16/4.0.table +++ b/definitions/grib2/tables/16/4.0.table @@ -15,15 +15,12 @@ 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 @@ -34,7 +31,6 @@ 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 @@ -42,24 +38,17 @@ 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/definitions/grib2/tables/16/4.1.0.table b/definitions/grib2/tables/16/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/16/4.1.0.table +++ b/definitions/grib2/tables/16/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/16/4.1.1.table b/definitions/grib2/tables/16/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/16/4.1.1.table +++ b/definitions/grib2/tables/16/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/4.1.10.table b/definitions/grib2/tables/16/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/16/4.1.10.table +++ b/definitions/grib2/tables/16/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/16/4.1.2.table b/definitions/grib2/tables/16/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/16/4.1.2.table +++ b/definitions/grib2/tables/16/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/16/4.1.3.table b/definitions/grib2/tables/16/4.1.3.table index 210b39fd5..9760aa388 100644 --- a/definitions/grib2/tables/16/4.1.3.table +++ b/definitions/grib2/tables/16/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/16/4.10.table b/definitions/grib2/tables/16/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/16/4.10.table +++ b/definitions/grib2/tables/16/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/16/4.11.table b/definitions/grib2/tables/16/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/16/4.11.table +++ b/definitions/grib2/tables/16/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/16/4.12.table b/definitions/grib2/tables/16/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/16/4.12.table +++ b/definitions/grib2/tables/16/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/4.13.table b/definitions/grib2/tables/16/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/16/4.13.table +++ b/definitions/grib2/tables/16/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/4.14.table b/definitions/grib2/tables/16/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/16/4.14.table +++ b/definitions/grib2/tables/16/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/4.15.table b/definitions/grib2/tables/16/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/16/4.15.table +++ b/definitions/grib2/tables/16/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/16/4.2.0.0.table b/definitions/grib2/tables/16/4.2.0.0.table index 3a285255f..2cafe98fa 100644 --- a/definitions/grib2/tables/16/4.2.0.0.table +++ b/definitions/grib2/tables/16/4.2.0.0.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/16/4.2.0.1.table b/definitions/grib2/tables/16/4.2.0.1.table index 1ecbf240a..a4bc9adbf 100644 --- a/definitions/grib2/tables/16/4.2.0.1.table +++ b/definitions/grib2/tables/16/4.2.0.1.table @@ -86,7 +86,6 @@ 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) @@ -106,6 +105,4 @@ 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/definitions/grib2/tables/16/4.2.0.13.table b/definitions/grib2/tables/16/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/16/4.2.0.13.table +++ b/definitions/grib2/tables/16/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/16/4.2.0.14.table b/definitions/grib2/tables/16/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/16/4.2.0.14.table +++ b/definitions/grib2/tables/16/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/4.2.0.15.table b/definitions/grib2/tables/16/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/16/4.2.0.15.table +++ b/definitions/grib2/tables/16/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/16/4.2.0.16.table b/definitions/grib2/tables/16/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/16/4.2.0.16.table +++ b/definitions/grib2/tables/16/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/16/4.2.0.18.table b/definitions/grib2/tables/16/4.2.0.18.table index 7e0a736eb..8a8bbc46a 100644 --- a/definitions/grib2/tables/16/4.2.0.18.table +++ b/definitions/grib2/tables/16/4.2.0.18.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/16/4.2.0.19.table b/definitions/grib2/tables/16/4.2.0.19.table index e51b670a0..9b085a4ca 100644 --- a/definitions/grib2/tables/16/4.2.0.19.table +++ b/definitions/grib2/tables/16/4.2.0.19.table @@ -28,6 +28,4 @@ 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/definitions/grib2/tables/16/4.2.0.190.table b/definitions/grib2/tables/16/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/16/4.2.0.190.table +++ b/definitions/grib2/tables/16/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/16/4.2.0.191.table b/definitions/grib2/tables/16/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/16/4.2.0.191.table +++ b/definitions/grib2/tables/16/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/16/4.2.0.2.table b/definitions/grib2/tables/16/4.2.0.2.table index 906cf6205..be445b68d 100644 --- a/definitions/grib2/tables/16/4.2.0.2.table +++ b/definitions/grib2/tables/16/4.2.0.2.table @@ -44,6 +44,4 @@ 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/definitions/grib2/tables/16/4.2.0.20.table b/definitions/grib2/tables/16/4.2.0.20.table index df9ccc184..697e8e2d3 100644 --- a/definitions/grib2/tables/16/4.2.0.20.table +++ b/definitions/grib2/tables/16/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -25,7 +24,6 @@ 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) @@ -37,6 +35,4 @@ 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/definitions/grib2/tables/16/4.2.0.3.table b/definitions/grib2/tables/16/4.2.0.3.table index 17e7f204f..6d397ebdb 100644 --- a/definitions/grib2/tables/16/4.2.0.3.table +++ b/definitions/grib2/tables/16/4.2.0.3.table @@ -30,6 +30,4 @@ 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/definitions/grib2/tables/16/4.2.0.4.table b/definitions/grib2/tables/16/4.2.0.4.table index da327a450..7612473a1 100644 --- a/definitions/grib2/tables/16/4.2.0.4.table +++ b/definitions/grib2/tables/16/4.2.0.4.table @@ -14,9 +14,6 @@ 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/definitions/grib2/tables/16/4.2.0.5.table b/definitions/grib2/tables/16/4.2.0.5.table index b9084509a..1cb655f94 100644 --- a/definitions/grib2/tables/16/4.2.0.5.table +++ b/definitions/grib2/tables/16/4.2.0.5.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/16/4.2.0.6.table b/definitions/grib2/tables/16/4.2.0.6.table index 0450ec194..4e5d7ee4c 100644 --- a/definitions/grib2/tables/16/4.2.0.6.table +++ b/definitions/grib2/tables/16/4.2.0.6.table @@ -40,10 +40,7 @@ 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/definitions/grib2/tables/16/4.2.0.7.table b/definitions/grib2/tables/16/4.2.0.7.table index 2bf21255d..91d09569f 100644 --- a/definitions/grib2/tables/16/4.2.0.7.table +++ b/definitions/grib2/tables/16/4.2.0.7.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/16/4.2.1.0.table b/definitions/grib2/tables/16/4.2.1.0.table index e6f23655a..e731779b9 100644 --- a/definitions/grib2/tables/16/4.2.1.0.table +++ b/definitions/grib2/tables/16/4.2.1.0.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/16/4.2.1.1.table b/definitions/grib2/tables/16/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/16/4.2.1.1.table +++ b/definitions/grib2/tables/16/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/4.2.10.0.table b/definitions/grib2/tables/16/4.2.10.0.table index 3611abd9a..5014980aa 100644 --- a/definitions/grib2/tables/16/4.2.10.0.table +++ b/definitions/grib2/tables/16/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/16/4.2.10.1.table b/definitions/grib2/tables/16/4.2.10.1.table index f0a073c00..c172554a9 100644 --- a/definitions/grib2/tables/16/4.2.10.1.table +++ b/definitions/grib2/tables/16/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/16/4.2.10.191.table b/definitions/grib2/tables/16/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/16/4.2.10.191.table +++ b/definitions/grib2/tables/16/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/16/4.2.10.2.table b/definitions/grib2/tables/16/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/16/4.2.10.2.table +++ b/definitions/grib2/tables/16/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/16/4.2.10.3.table b/definitions/grib2/tables/16/4.2.10.3.table index 937720c93..71f0770e8 100644 --- a/definitions/grib2/tables/16/4.2.10.3.table +++ b/definitions/grib2/tables/16/4.2.10.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/4.2.10.4.table b/definitions/grib2/tables/16/4.2.10.4.table index d5615ae26..15cc8b4b3 100644 --- a/definitions/grib2/tables/16/4.2.10.4.table +++ b/definitions/grib2/tables/16/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/16/4.2.2.0.table b/definitions/grib2/tables/16/4.2.2.0.table index b253cac22..090bbb64a 100644 --- a/definitions/grib2/tables/16/4.2.2.0.table +++ b/definitions/grib2/tables/16/4.2.2.0.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/16/4.2.2.3.table b/definitions/grib2/tables/16/4.2.2.3.table index 6cb8eb7af..9ae874aac 100644 --- a/definitions/grib2/tables/16/4.2.2.3.table +++ b/definitions/grib2/tables/16/4.2.2.3.table @@ -25,6 +25,4 @@ 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/definitions/grib2/tables/16/4.2.2.4.table b/definitions/grib2/tables/16/4.2.2.4.table index cb3db6f78..285b056b9 100644 --- a/definitions/grib2/tables/16/4.2.2.4.table +++ b/definitions/grib2/tables/16/4.2.2.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/16/4.2.3.0.table b/definitions/grib2/tables/16/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/16/4.2.3.0.table +++ b/definitions/grib2/tables/16/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/16/4.2.3.1.table b/definitions/grib2/tables/16/4.2.3.1.table index 04cdde1f1..9ce359f2e 100644 --- a/definitions/grib2/tables/16/4.2.3.1.table +++ b/definitions/grib2/tables/16/4.2.3.1.table @@ -23,10 +23,7 @@ 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/definitions/grib2/tables/16/4.201.table b/definitions/grib2/tables/16/4.201.table index fa173c4e0..7787ce735 100644 --- a/definitions/grib2/tables/16/4.201.table +++ b/definitions/grib2/tables/16/4.201.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/16/4.202.table b/definitions/grib2/tables/16/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/16/4.202.table +++ b/definitions/grib2/tables/16/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/16/4.203.table b/definitions/grib2/tables/16/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/16/4.203.table +++ b/definitions/grib2/tables/16/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/16/4.204.table b/definitions/grib2/tables/16/4.204.table index ffbd89502..2084e77dc 100644 --- a/definitions/grib2/tables/16/4.204.table +++ b/definitions/grib2/tables/16/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/16/4.205.table b/definitions/grib2/tables/16/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/16/4.205.table +++ b/definitions/grib2/tables/16/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/4.206.table b/definitions/grib2/tables/16/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/16/4.206.table +++ b/definitions/grib2/tables/16/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/4.207.table b/definitions/grib2/tables/16/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/16/4.207.table +++ b/definitions/grib2/tables/16/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/16/4.208.table b/definitions/grib2/tables/16/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/16/4.208.table +++ b/definitions/grib2/tables/16/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/16/4.209.table b/definitions/grib2/tables/16/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/16/4.209.table +++ b/definitions/grib2/tables/16/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/16/4.210.table b/definitions/grib2/tables/16/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/16/4.210.table +++ b/definitions/grib2/tables/16/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/4.211.table b/definitions/grib2/tables/16/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/16/4.211.table +++ b/definitions/grib2/tables/16/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/4.212.table b/definitions/grib2/tables/16/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/16/4.212.table +++ b/definitions/grib2/tables/16/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/16/4.213.table b/definitions/grib2/tables/16/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/16/4.213.table +++ b/definitions/grib2/tables/16/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/16/4.215.table b/definitions/grib2/tables/16/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/16/4.215.table +++ b/definitions/grib2/tables/16/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/16/4.216.table b/definitions/grib2/tables/16/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/16/4.216.table +++ b/definitions/grib2/tables/16/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/16/4.217.table b/definitions/grib2/tables/16/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/16/4.217.table +++ b/definitions/grib2/tables/16/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/16/4.218.table b/definitions/grib2/tables/16/4.218.table index 0ad5f49ee..3765ee64d 100644 --- a/definitions/grib2/tables/16/4.218.table +++ b/definitions/grib2/tables/16/4.218.table @@ -24,7 +24,6 @@ 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 @@ -39,6 +38,4 @@ 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/definitions/grib2/tables/16/4.219.table b/definitions/grib2/tables/16/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/16/4.219.table +++ b/definitions/grib2/tables/16/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/16/4.220.table b/definitions/grib2/tables/16/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/16/4.220.table +++ b/definitions/grib2/tables/16/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/4.221.table b/definitions/grib2/tables/16/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/16/4.221.table +++ b/definitions/grib2/tables/16/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/4.222.table b/definitions/grib2/tables/16/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/16/4.222.table +++ b/definitions/grib2/tables/16/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/4.224.table b/definitions/grib2/tables/16/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/16/4.224.table +++ b/definitions/grib2/tables/16/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/16/4.227.table b/definitions/grib2/tables/16/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/16/4.227.table +++ b/definitions/grib2/tables/16/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/16/4.240.table b/definitions/grib2/tables/16/4.240.table index 1838acfc0..11711251d 100644 --- a/definitions/grib2/tables/16/4.240.table +++ b/definitions/grib2/tables/16/4.240.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/16/4.241.table b/definitions/grib2/tables/16/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/16/4.241.table +++ b/definitions/grib2/tables/16/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/16/4.242.table b/definitions/grib2/tables/16/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/16/4.242.table +++ b/definitions/grib2/tables/16/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/4.243.table b/definitions/grib2/tables/16/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/16/4.243.table +++ b/definitions/grib2/tables/16/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/16/4.3.table b/definitions/grib2/tables/16/4.3.table index bcf8102a1..4c439e5e7 100644 --- a/definitions/grib2/tables/16/4.3.table +++ b/definitions/grib2/tables/16/4.3.table @@ -17,6 +17,4 @@ 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/definitions/grib2/tables/16/4.4.table b/definitions/grib2/tables/16/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/16/4.4.table +++ b/definitions/grib2/tables/16/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/16/4.5.table b/definitions/grib2/tables/16/4.5.table index 8d4ae8d1a..7479325f4 100644 --- a/definitions/grib2/tables/16/4.5.table +++ b/definitions/grib2/tables/16/4.5.table @@ -12,9 +12,7 @@ 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) @@ -30,13 +28,10 @@ 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 sfc Lake or river bottom (-) @@ -45,7 +40,6 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -# 168-173 Reserved 174 sfc 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 @@ -57,6 +51,4 @@ 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/definitions/grib2/tables/16/4.6.table b/definitions/grib2/tables/16/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/16/4.6.table +++ b/definitions/grib2/tables/16/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/16/4.7.table b/definitions/grib2/tables/16/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/16/4.7.table +++ b/definitions/grib2/tables/16/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/16/4.8.table b/definitions/grib2/tables/16/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/16/4.8.table +++ b/definitions/grib2/tables/16/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/4.9.table b/definitions/grib2/tables/16/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/16/4.9.table +++ b/definitions/grib2/tables/16/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/16/4.91.table b/definitions/grib2/tables/16/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/16/4.91.table +++ b/definitions/grib2/tables/16/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/16/5.0.table b/definitions/grib2/tables/16/5.0.table index 2795336df..7d9a25c37 100644 --- a/definitions/grib2/tables/16/5.0.table +++ b/definitions/grib2/tables/16/5.0.table @@ -6,15 +6,10 @@ 4 4 Grid point data - IEEE floating point data 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 diff --git a/definitions/grib2/tables/16/5.1.table b/definitions/grib2/tables/16/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/16/5.1.table +++ b/definitions/grib2/tables/16/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/5.2.table b/definitions/grib2/tables/16/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/16/5.2.table +++ b/definitions/grib2/tables/16/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/16/5.3.table b/definitions/grib2/tables/16/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/16/5.3.table +++ b/definitions/grib2/tables/16/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/5.4.table b/definitions/grib2/tables/16/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/16/5.4.table +++ b/definitions/grib2/tables/16/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/16/5.40.table b/definitions/grib2/tables/16/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/16/5.40.table +++ b/definitions/grib2/tables/16/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/16/5.5.table b/definitions/grib2/tables/16/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/16/5.5.table +++ b/definitions/grib2/tables/16/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/5.6.table b/definitions/grib2/tables/16/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/16/5.6.table +++ b/definitions/grib2/tables/16/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/16/5.7.table b/definitions/grib2/tables/16/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/16/5.7.table +++ b/definitions/grib2/tables/16/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/17/0.0.table b/definitions/grib2/tables/17/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/17/0.0.table +++ b/definitions/grib2/tables/17/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/17/1.2.table b/definitions/grib2/tables/17/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/17/1.2.table +++ b/definitions/grib2/tables/17/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/17/1.3.table b/definitions/grib2/tables/17/1.3.table index c1a9a7b9d..7b5690caa 100644 --- a/definitions/grib2/tables/17/1.3.table +++ b/definitions/grib2/tables/17/1.3.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/17/1.4.table b/definitions/grib2/tables/17/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/17/1.4.table +++ b/definitions/grib2/tables/17/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/17/1.5.table b/definitions/grib2/tables/17/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/17/1.5.table +++ b/definitions/grib2/tables/17/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/1.6.table b/definitions/grib2/tables/17/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/17/1.6.table +++ b/definitions/grib2/tables/17/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/17/3.0.table b/definitions/grib2/tables/17/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/17/3.0.table +++ b/definitions/grib2/tables/17/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/3.1.table b/definitions/grib2/tables/17/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/17/3.1.table +++ b/definitions/grib2/tables/17/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/17/3.10.table b/definitions/grib2/tables/17/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/17/3.10.table +++ b/definitions/grib2/tables/17/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/17/3.11.table b/definitions/grib2/tables/17/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/17/3.11.table +++ b/definitions/grib2/tables/17/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/17/3.15.table b/definitions/grib2/tables/17/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/17/3.15.table +++ b/definitions/grib2/tables/17/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/17/3.2.table b/definitions/grib2/tables/17/3.2.table index b9574a424..ed8eb276c 100644 --- a/definitions/grib2/tables/17/3.2.table +++ b/definitions/grib2/tables/17/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/17/3.20.table b/definitions/grib2/tables/17/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/17/3.20.table +++ b/definitions/grib2/tables/17/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/3.21.table b/definitions/grib2/tables/17/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/17/3.21.table +++ b/definitions/grib2/tables/17/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/17/3.3.table b/definitions/grib2/tables/17/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/17/3.3.table +++ b/definitions/grib2/tables/17/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/17/3.7.table b/definitions/grib2/tables/17/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/17/3.7.table +++ b/definitions/grib2/tables/17/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/17/3.8.table b/definitions/grib2/tables/17/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/17/3.8.table +++ b/definitions/grib2/tables/17/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/3.9.table b/definitions/grib2/tables/17/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/17/3.9.table +++ b/definitions/grib2/tables/17/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/17/4.0.table b/definitions/grib2/tables/17/4.0.table index ff8a54b04..73504e55a 100644 --- a/definitions/grib2/tables/17/4.0.table +++ b/definitions/grib2/tables/17/4.0.table @@ -15,15 +15,12 @@ 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 @@ -34,7 +31,6 @@ 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 @@ -42,24 +38,17 @@ 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/definitions/grib2/tables/17/4.1.0.table b/definitions/grib2/tables/17/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/17/4.1.0.table +++ b/definitions/grib2/tables/17/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/17/4.1.1.table b/definitions/grib2/tables/17/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/17/4.1.1.table +++ b/definitions/grib2/tables/17/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/4.1.10.table b/definitions/grib2/tables/17/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/17/4.1.10.table +++ b/definitions/grib2/tables/17/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/17/4.1.2.table b/definitions/grib2/tables/17/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/17/4.1.2.table +++ b/definitions/grib2/tables/17/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/17/4.1.3.table b/definitions/grib2/tables/17/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/17/4.1.3.table +++ b/definitions/grib2/tables/17/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/17/4.10.table b/definitions/grib2/tables/17/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/17/4.10.table +++ b/definitions/grib2/tables/17/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/17/4.11.table b/definitions/grib2/tables/17/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/17/4.11.table +++ b/definitions/grib2/tables/17/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/17/4.12.table b/definitions/grib2/tables/17/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/17/4.12.table +++ b/definitions/grib2/tables/17/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/4.13.table b/definitions/grib2/tables/17/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/17/4.13.table +++ b/definitions/grib2/tables/17/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/4.14.table b/definitions/grib2/tables/17/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/17/4.14.table +++ b/definitions/grib2/tables/17/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/4.15.table b/definitions/grib2/tables/17/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/17/4.15.table +++ b/definitions/grib2/tables/17/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/17/4.2.0.0.table b/definitions/grib2/tables/17/4.2.0.0.table index 4e2cf578e..f683ddfea 100644 --- a/definitions/grib2/tables/17/4.2.0.0.table +++ b/definitions/grib2/tables/17/4.2.0.0.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/17/4.2.0.1.table b/definitions/grib2/tables/17/4.2.0.1.table index 004d11d25..5c85d4647 100644 --- a/definitions/grib2/tables/17/4.2.0.1.table +++ b/definitions/grib2/tables/17/4.2.0.1.table @@ -86,7 +86,6 @@ 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) @@ -115,6 +114,4 @@ 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/definitions/grib2/tables/17/4.2.0.13.table b/definitions/grib2/tables/17/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/17/4.2.0.13.table +++ b/definitions/grib2/tables/17/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/17/4.2.0.14.table b/definitions/grib2/tables/17/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/17/4.2.0.14.table +++ b/definitions/grib2/tables/17/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/4.2.0.15.table b/definitions/grib2/tables/17/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/17/4.2.0.15.table +++ b/definitions/grib2/tables/17/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/17/4.2.0.16.table b/definitions/grib2/tables/17/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/17/4.2.0.16.table +++ b/definitions/grib2/tables/17/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/17/4.2.0.18.table b/definitions/grib2/tables/17/4.2.0.18.table index 16cfa489d..c2489183c 100644 --- a/definitions/grib2/tables/17/4.2.0.18.table +++ b/definitions/grib2/tables/17/4.2.0.18.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/17/4.2.0.19.table b/definitions/grib2/tables/17/4.2.0.19.table index e4db36249..12b5de271 100644 --- a/definitions/grib2/tables/17/4.2.0.19.table +++ b/definitions/grib2/tables/17/4.2.0.19.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/17/4.2.0.190.table b/definitions/grib2/tables/17/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/17/4.2.0.190.table +++ b/definitions/grib2/tables/17/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/17/4.2.0.191.table b/definitions/grib2/tables/17/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/17/4.2.0.191.table +++ b/definitions/grib2/tables/17/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/17/4.2.0.2.table b/definitions/grib2/tables/17/4.2.0.2.table index 7967bf7bf..0b7d78a5f 100644 --- a/definitions/grib2/tables/17/4.2.0.2.table +++ b/definitions/grib2/tables/17/4.2.0.2.table @@ -44,6 +44,4 @@ 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/definitions/grib2/tables/17/4.2.0.20.table b/definitions/grib2/tables/17/4.2.0.20.table index 38479b834..43dfac9a8 100644 --- a/definitions/grib2/tables/17/4.2.0.20.table +++ b/definitions/grib2/tables/17/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -28,7 +27,6 @@ 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) @@ -41,6 +39,4 @@ 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/definitions/grib2/tables/17/4.2.0.3.table b/definitions/grib2/tables/17/4.2.0.3.table index 17e7f204f..6d397ebdb 100644 --- a/definitions/grib2/tables/17/4.2.0.3.table +++ b/definitions/grib2/tables/17/4.2.0.3.table @@ -30,6 +30,4 @@ 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/definitions/grib2/tables/17/4.2.0.4.table b/definitions/grib2/tables/17/4.2.0.4.table index f97270456..d5024628b 100644 --- a/definitions/grib2/tables/17/4.2.0.4.table +++ b/definitions/grib2/tables/17/4.2.0.4.table @@ -14,11 +14,8 @@ 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/definitions/grib2/tables/17/4.2.0.5.table b/definitions/grib2/tables/17/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/17/4.2.0.5.table +++ b/definitions/grib2/tables/17/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/17/4.2.0.6.table b/definitions/grib2/tables/17/4.2.0.6.table index 0450ec194..4e5d7ee4c 100644 --- a/definitions/grib2/tables/17/4.2.0.6.table +++ b/definitions/grib2/tables/17/4.2.0.6.table @@ -40,10 +40,7 @@ 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/definitions/grib2/tables/17/4.2.0.7.table b/definitions/grib2/tables/17/4.2.0.7.table index 3e653431f..971410000 100644 --- a/definitions/grib2/tables/17/4.2.0.7.table +++ b/definitions/grib2/tables/17/4.2.0.7.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/17/4.2.1.0.table b/definitions/grib2/tables/17/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/17/4.2.1.0.table +++ b/definitions/grib2/tables/17/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/17/4.2.1.1.table b/definitions/grib2/tables/17/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/17/4.2.1.1.table +++ b/definitions/grib2/tables/17/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/4.2.10.0.table b/definitions/grib2/tables/17/4.2.10.0.table index 3611abd9a..5014980aa 100644 --- a/definitions/grib2/tables/17/4.2.10.0.table +++ b/definitions/grib2/tables/17/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/17/4.2.10.1.table b/definitions/grib2/tables/17/4.2.10.1.table index f0a073c00..c172554a9 100644 --- a/definitions/grib2/tables/17/4.2.10.1.table +++ b/definitions/grib2/tables/17/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/17/4.2.10.191.table b/definitions/grib2/tables/17/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/17/4.2.10.191.table +++ b/definitions/grib2/tables/17/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/17/4.2.10.2.table b/definitions/grib2/tables/17/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/17/4.2.10.2.table +++ b/definitions/grib2/tables/17/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/17/4.2.10.3.table b/definitions/grib2/tables/17/4.2.10.3.table index 937720c93..71f0770e8 100644 --- a/definitions/grib2/tables/17/4.2.10.3.table +++ b/definitions/grib2/tables/17/4.2.10.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/4.2.10.4.table b/definitions/grib2/tables/17/4.2.10.4.table index d5615ae26..15cc8b4b3 100644 --- a/definitions/grib2/tables/17/4.2.10.4.table +++ b/definitions/grib2/tables/17/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/17/4.2.2.0.table b/definitions/grib2/tables/17/4.2.2.0.table index b253cac22..090bbb64a 100644 --- a/definitions/grib2/tables/17/4.2.2.0.table +++ b/definitions/grib2/tables/17/4.2.2.0.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/17/4.2.2.3.table b/definitions/grib2/tables/17/4.2.2.3.table index 2674e9f42..9699073e8 100644 --- a/definitions/grib2/tables/17/4.2.2.3.table +++ b/definitions/grib2/tables/17/4.2.2.3.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/17/4.2.2.4.table b/definitions/grib2/tables/17/4.2.2.4.table index ceb761557..3ee2176f6 100644 --- a/definitions/grib2/tables/17/4.2.2.4.table +++ b/definitions/grib2/tables/17/4.2.2.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/17/4.2.3.0.table b/definitions/grib2/tables/17/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/17/4.2.3.0.table +++ b/definitions/grib2/tables/17/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/17/4.2.3.1.table b/definitions/grib2/tables/17/4.2.3.1.table index 04cdde1f1..9ce359f2e 100644 --- a/definitions/grib2/tables/17/4.2.3.1.table +++ b/definitions/grib2/tables/17/4.2.3.1.table @@ -23,10 +23,7 @@ 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/definitions/grib2/tables/17/4.201.table b/definitions/grib2/tables/17/4.201.table index fa173c4e0..7787ce735 100644 --- a/definitions/grib2/tables/17/4.201.table +++ b/definitions/grib2/tables/17/4.201.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/17/4.202.table b/definitions/grib2/tables/17/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/17/4.202.table +++ b/definitions/grib2/tables/17/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/17/4.203.table b/definitions/grib2/tables/17/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/17/4.203.table +++ b/definitions/grib2/tables/17/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/17/4.204.table b/definitions/grib2/tables/17/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/17/4.204.table +++ b/definitions/grib2/tables/17/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/17/4.205.table b/definitions/grib2/tables/17/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/17/4.205.table +++ b/definitions/grib2/tables/17/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/4.206.table b/definitions/grib2/tables/17/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/17/4.206.table +++ b/definitions/grib2/tables/17/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/4.207.table b/definitions/grib2/tables/17/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/17/4.207.table +++ b/definitions/grib2/tables/17/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/17/4.208.table b/definitions/grib2/tables/17/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/17/4.208.table +++ b/definitions/grib2/tables/17/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/17/4.209.table b/definitions/grib2/tables/17/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/17/4.209.table +++ b/definitions/grib2/tables/17/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/17/4.210.table b/definitions/grib2/tables/17/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/17/4.210.table +++ b/definitions/grib2/tables/17/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/4.211.table b/definitions/grib2/tables/17/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/17/4.211.table +++ b/definitions/grib2/tables/17/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/4.212.table b/definitions/grib2/tables/17/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/17/4.212.table +++ b/definitions/grib2/tables/17/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/17/4.213.table b/definitions/grib2/tables/17/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/17/4.213.table +++ b/definitions/grib2/tables/17/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/17/4.215.table b/definitions/grib2/tables/17/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/17/4.215.table +++ b/definitions/grib2/tables/17/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/17/4.216.table b/definitions/grib2/tables/17/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/17/4.216.table +++ b/definitions/grib2/tables/17/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/17/4.217.table b/definitions/grib2/tables/17/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/17/4.217.table +++ b/definitions/grib2/tables/17/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/17/4.218.table b/definitions/grib2/tables/17/4.218.table index b5b15150b..d899242fd 100644 --- a/definitions/grib2/tables/17/4.218.table +++ b/definitions/grib2/tables/17/4.218.table @@ -24,7 +24,6 @@ 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 @@ -39,6 +38,4 @@ 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/definitions/grib2/tables/17/4.219.table b/definitions/grib2/tables/17/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/17/4.219.table +++ b/definitions/grib2/tables/17/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/17/4.220.table b/definitions/grib2/tables/17/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/17/4.220.table +++ b/definitions/grib2/tables/17/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/4.221.table b/definitions/grib2/tables/17/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/17/4.221.table +++ b/definitions/grib2/tables/17/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/4.222.table b/definitions/grib2/tables/17/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/17/4.222.table +++ b/definitions/grib2/tables/17/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/4.224.table b/definitions/grib2/tables/17/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/17/4.224.table +++ b/definitions/grib2/tables/17/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/17/4.227.table b/definitions/grib2/tables/17/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/17/4.227.table +++ b/definitions/grib2/tables/17/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/17/4.240.table b/definitions/grib2/tables/17/4.240.table index 986557483..88b7d8cdb 100644 --- a/definitions/grib2/tables/17/4.240.table +++ b/definitions/grib2/tables/17/4.240.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/17/4.241.table b/definitions/grib2/tables/17/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/17/4.241.table +++ b/definitions/grib2/tables/17/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/17/4.242.table b/definitions/grib2/tables/17/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/17/4.242.table +++ b/definitions/grib2/tables/17/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/4.243.table b/definitions/grib2/tables/17/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/17/4.243.table +++ b/definitions/grib2/tables/17/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/17/4.3.table b/definitions/grib2/tables/17/4.3.table index bcf8102a1..4c439e5e7 100644 --- a/definitions/grib2/tables/17/4.3.table +++ b/definitions/grib2/tables/17/4.3.table @@ -17,6 +17,4 @@ 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/definitions/grib2/tables/17/4.4.table b/definitions/grib2/tables/17/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/17/4.4.table +++ b/definitions/grib2/tables/17/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/17/4.5.table b/definitions/grib2/tables/17/4.5.table index c2771c9c6..4454f848f 100644 --- a/definitions/grib2/tables/17/4.5.table +++ b/definitions/grib2/tables/17/4.5.table @@ -16,9 +16,7 @@ 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) @@ -34,14 +32,11 @@ 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 sfc Lake or river bottom (-) @@ -50,18 +45,14 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -# 168-173 Reserved 174 sfc 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/definitions/grib2/tables/17/4.6.table b/definitions/grib2/tables/17/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/17/4.6.table +++ b/definitions/grib2/tables/17/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/17/4.7.table b/definitions/grib2/tables/17/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/17/4.7.table +++ b/definitions/grib2/tables/17/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/17/4.8.table b/definitions/grib2/tables/17/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/17/4.8.table +++ b/definitions/grib2/tables/17/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/4.9.table b/definitions/grib2/tables/17/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/17/4.9.table +++ b/definitions/grib2/tables/17/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/17/4.91.table b/definitions/grib2/tables/17/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/17/4.91.table +++ b/definitions/grib2/tables/17/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/17/5.0.table b/definitions/grib2/tables/17/5.0.table index 2795336df..7d9a25c37 100644 --- a/definitions/grib2/tables/17/5.0.table +++ b/definitions/grib2/tables/17/5.0.table @@ -6,15 +6,10 @@ 4 4 Grid point data - IEEE floating point data 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 diff --git a/definitions/grib2/tables/17/5.1.table b/definitions/grib2/tables/17/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/17/5.1.table +++ b/definitions/grib2/tables/17/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/5.2.table b/definitions/grib2/tables/17/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/17/5.2.table +++ b/definitions/grib2/tables/17/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/17/5.3.table b/definitions/grib2/tables/17/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/17/5.3.table +++ b/definitions/grib2/tables/17/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/5.4.table b/definitions/grib2/tables/17/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/17/5.4.table +++ b/definitions/grib2/tables/17/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/17/5.40.table b/definitions/grib2/tables/17/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/17/5.40.table +++ b/definitions/grib2/tables/17/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/17/5.5.table b/definitions/grib2/tables/17/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/17/5.5.table +++ b/definitions/grib2/tables/17/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/5.6.table b/definitions/grib2/tables/17/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/17/5.6.table +++ b/definitions/grib2/tables/17/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/17/5.7.table b/definitions/grib2/tables/17/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/17/5.7.table +++ b/definitions/grib2/tables/17/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/18/0.0.table b/definitions/grib2/tables/18/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/18/0.0.table +++ b/definitions/grib2/tables/18/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/18/1.2.table b/definitions/grib2/tables/18/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/18/1.2.table +++ b/definitions/grib2/tables/18/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/18/1.3.table b/definitions/grib2/tables/18/1.3.table index c1a9a7b9d..7b5690caa 100644 --- a/definitions/grib2/tables/18/1.3.table +++ b/definitions/grib2/tables/18/1.3.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/18/1.4.table b/definitions/grib2/tables/18/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/18/1.4.table +++ b/definitions/grib2/tables/18/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/18/1.5.table b/definitions/grib2/tables/18/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/18/1.5.table +++ b/definitions/grib2/tables/18/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/1.6.table b/definitions/grib2/tables/18/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/18/1.6.table +++ b/definitions/grib2/tables/18/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/18/3.0.table b/definitions/grib2/tables/18/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/18/3.0.table +++ b/definitions/grib2/tables/18/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/3.1.table b/definitions/grib2/tables/18/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/18/3.1.table +++ b/definitions/grib2/tables/18/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/18/3.10.table b/definitions/grib2/tables/18/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/18/3.10.table +++ b/definitions/grib2/tables/18/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/18/3.11.table b/definitions/grib2/tables/18/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/18/3.11.table +++ b/definitions/grib2/tables/18/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/18/3.15.table b/definitions/grib2/tables/18/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/18/3.15.table +++ b/definitions/grib2/tables/18/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/18/3.2.table b/definitions/grib2/tables/18/3.2.table index b9574a424..ed8eb276c 100644 --- a/definitions/grib2/tables/18/3.2.table +++ b/definitions/grib2/tables/18/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/18/3.20.table b/definitions/grib2/tables/18/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/18/3.20.table +++ b/definitions/grib2/tables/18/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/3.21.table b/definitions/grib2/tables/18/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/18/3.21.table +++ b/definitions/grib2/tables/18/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/18/3.3.table b/definitions/grib2/tables/18/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/18/3.3.table +++ b/definitions/grib2/tables/18/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/18/3.7.table b/definitions/grib2/tables/18/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/18/3.7.table +++ b/definitions/grib2/tables/18/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/18/3.8.table b/definitions/grib2/tables/18/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/18/3.8.table +++ b/definitions/grib2/tables/18/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/3.9.table b/definitions/grib2/tables/18/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/18/3.9.table +++ b/definitions/grib2/tables/18/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/18/4.0.table b/definitions/grib2/tables/18/4.0.table index aceff01af..c7f1c5106 100644 --- a/definitions/grib2/tables/18/4.0.table +++ b/definitions/grib2/tables/18/4.0.table @@ -15,15 +15,12 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -47,26 +42,19 @@ 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/definitions/grib2/tables/18/4.1.0.table b/definitions/grib2/tables/18/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/18/4.1.0.table +++ b/definitions/grib2/tables/18/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/18/4.1.1.table b/definitions/grib2/tables/18/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/18/4.1.1.table +++ b/definitions/grib2/tables/18/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/4.1.10.table b/definitions/grib2/tables/18/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/18/4.1.10.table +++ b/definitions/grib2/tables/18/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/18/4.1.2.table b/definitions/grib2/tables/18/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/18/4.1.2.table +++ b/definitions/grib2/tables/18/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/18/4.1.3.table b/definitions/grib2/tables/18/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/18/4.1.3.table +++ b/definitions/grib2/tables/18/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/18/4.10.table b/definitions/grib2/tables/18/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/18/4.10.table +++ b/definitions/grib2/tables/18/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/18/4.11.table b/definitions/grib2/tables/18/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/18/4.11.table +++ b/definitions/grib2/tables/18/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/18/4.12.table b/definitions/grib2/tables/18/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/18/4.12.table +++ b/definitions/grib2/tables/18/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/4.13.table b/definitions/grib2/tables/18/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/18/4.13.table +++ b/definitions/grib2/tables/18/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/4.14.table b/definitions/grib2/tables/18/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/18/4.14.table +++ b/definitions/grib2/tables/18/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/4.15.table b/definitions/grib2/tables/18/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/18/4.15.table +++ b/definitions/grib2/tables/18/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/18/4.2.0.0.table b/definitions/grib2/tables/18/4.2.0.0.table index 83b3e8ef1..3cd04f347 100644 --- a/definitions/grib2/tables/18/4.2.0.0.table +++ b/definitions/grib2/tables/18/4.2.0.0.table @@ -29,6 +29,4 @@ 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/definitions/grib2/tables/18/4.2.0.1.table b/definitions/grib2/tables/18/4.2.0.1.table index 7d43684d3..6a4eb9a2e 100644 --- a/definitions/grib2/tables/18/4.2.0.1.table +++ b/definitions/grib2/tables/18/4.2.0.1.table @@ -86,7 +86,6 @@ 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) @@ -118,6 +117,4 @@ 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/definitions/grib2/tables/18/4.2.0.13.table b/definitions/grib2/tables/18/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/18/4.2.0.13.table +++ b/definitions/grib2/tables/18/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/18/4.2.0.14.table b/definitions/grib2/tables/18/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/18/4.2.0.14.table +++ b/definitions/grib2/tables/18/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/4.2.0.15.table b/definitions/grib2/tables/18/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/18/4.2.0.15.table +++ b/definitions/grib2/tables/18/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/18/4.2.0.16.table b/definitions/grib2/tables/18/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/18/4.2.0.16.table +++ b/definitions/grib2/tables/18/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/18/4.2.0.18.table b/definitions/grib2/tables/18/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/18/4.2.0.18.table +++ b/definitions/grib2/tables/18/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/18/4.2.0.19.table b/definitions/grib2/tables/18/4.2.0.19.table index e4db36249..12b5de271 100644 --- a/definitions/grib2/tables/18/4.2.0.19.table +++ b/definitions/grib2/tables/18/4.2.0.19.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/18/4.2.0.190.table b/definitions/grib2/tables/18/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/18/4.2.0.190.table +++ b/definitions/grib2/tables/18/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/18/4.2.0.191.table b/definitions/grib2/tables/18/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/18/4.2.0.191.table +++ b/definitions/grib2/tables/18/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/18/4.2.0.2.table b/definitions/grib2/tables/18/4.2.0.2.table index 8a70b2591..8651adc7c 100644 --- a/definitions/grib2/tables/18/4.2.0.2.table +++ b/definitions/grib2/tables/18/4.2.0.2.table @@ -46,6 +46,4 @@ 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/definitions/grib2/tables/18/4.2.0.20.table b/definitions/grib2/tables/18/4.2.0.20.table index bbdeef5b1..4392e7b76 100644 --- a/definitions/grib2/tables/18/4.2.0.20.table +++ b/definitions/grib2/tables/18/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -29,7 +28,6 @@ 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) @@ -42,6 +40,4 @@ 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/definitions/grib2/tables/18/4.2.0.3.table b/definitions/grib2/tables/18/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/18/4.2.0.3.table +++ b/definitions/grib2/tables/18/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/18/4.2.0.4.table b/definitions/grib2/tables/18/4.2.0.4.table index f97270456..d5024628b 100644 --- a/definitions/grib2/tables/18/4.2.0.4.table +++ b/definitions/grib2/tables/18/4.2.0.4.table @@ -14,11 +14,8 @@ 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/definitions/grib2/tables/18/4.2.0.5.table b/definitions/grib2/tables/18/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/18/4.2.0.5.table +++ b/definitions/grib2/tables/18/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/18/4.2.0.6.table b/definitions/grib2/tables/18/4.2.0.6.table index 0450ec194..4e5d7ee4c 100644 --- a/definitions/grib2/tables/18/4.2.0.6.table +++ b/definitions/grib2/tables/18/4.2.0.6.table @@ -40,10 +40,7 @@ 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/definitions/grib2/tables/18/4.2.0.7.table b/definitions/grib2/tables/18/4.2.0.7.table index 3e653431f..971410000 100644 --- a/definitions/grib2/tables/18/4.2.0.7.table +++ b/definitions/grib2/tables/18/4.2.0.7.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/18/4.2.1.0.table b/definitions/grib2/tables/18/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/18/4.2.1.0.table +++ b/definitions/grib2/tables/18/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/18/4.2.1.1.table b/definitions/grib2/tables/18/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/18/4.2.1.1.table +++ b/definitions/grib2/tables/18/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/4.2.10.0.table b/definitions/grib2/tables/18/4.2.10.0.table index 3611abd9a..5014980aa 100644 --- a/definitions/grib2/tables/18/4.2.10.0.table +++ b/definitions/grib2/tables/18/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/18/4.2.10.1.table b/definitions/grib2/tables/18/4.2.10.1.table index f0a073c00..c172554a9 100644 --- a/definitions/grib2/tables/18/4.2.10.1.table +++ b/definitions/grib2/tables/18/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/18/4.2.10.191.table b/definitions/grib2/tables/18/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/18/4.2.10.191.table +++ b/definitions/grib2/tables/18/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/18/4.2.10.2.table b/definitions/grib2/tables/18/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/18/4.2.10.2.table +++ b/definitions/grib2/tables/18/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/18/4.2.10.3.table b/definitions/grib2/tables/18/4.2.10.3.table index b01d7ae46..f6229ac12 100644 --- a/definitions/grib2/tables/18/4.2.10.3.table +++ b/definitions/grib2/tables/18/4.2.10.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/4.2.10.4.table b/definitions/grib2/tables/18/4.2.10.4.table index d5615ae26..15cc8b4b3 100644 --- a/definitions/grib2/tables/18/4.2.10.4.table +++ b/definitions/grib2/tables/18/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/18/4.2.2.0.table b/definitions/grib2/tables/18/4.2.2.0.table index b253cac22..090bbb64a 100644 --- a/definitions/grib2/tables/18/4.2.2.0.table +++ b/definitions/grib2/tables/18/4.2.2.0.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/18/4.2.2.3.table b/definitions/grib2/tables/18/4.2.2.3.table index 2674e9f42..9699073e8 100644 --- a/definitions/grib2/tables/18/4.2.2.3.table +++ b/definitions/grib2/tables/18/4.2.2.3.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/18/4.2.2.4.table b/definitions/grib2/tables/18/4.2.2.4.table index ceb761557..3ee2176f6 100644 --- a/definitions/grib2/tables/18/4.2.2.4.table +++ b/definitions/grib2/tables/18/4.2.2.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/18/4.2.3.0.table b/definitions/grib2/tables/18/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/18/4.2.3.0.table +++ b/definitions/grib2/tables/18/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/18/4.2.3.1.table b/definitions/grib2/tables/18/4.2.3.1.table index 04cdde1f1..9ce359f2e 100644 --- a/definitions/grib2/tables/18/4.2.3.1.table +++ b/definitions/grib2/tables/18/4.2.3.1.table @@ -23,10 +23,7 @@ 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/definitions/grib2/tables/18/4.201.table b/definitions/grib2/tables/18/4.201.table index fa173c4e0..7787ce735 100644 --- a/definitions/grib2/tables/18/4.201.table +++ b/definitions/grib2/tables/18/4.201.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/18/4.202.table b/definitions/grib2/tables/18/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/18/4.202.table +++ b/definitions/grib2/tables/18/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/18/4.203.table b/definitions/grib2/tables/18/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/18/4.203.table +++ b/definitions/grib2/tables/18/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/18/4.204.table b/definitions/grib2/tables/18/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/18/4.204.table +++ b/definitions/grib2/tables/18/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/18/4.205.table b/definitions/grib2/tables/18/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/18/4.205.table +++ b/definitions/grib2/tables/18/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/4.206.table b/definitions/grib2/tables/18/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/18/4.206.table +++ b/definitions/grib2/tables/18/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/4.207.table b/definitions/grib2/tables/18/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/18/4.207.table +++ b/definitions/grib2/tables/18/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/18/4.208.table b/definitions/grib2/tables/18/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/18/4.208.table +++ b/definitions/grib2/tables/18/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/18/4.209.table b/definitions/grib2/tables/18/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/18/4.209.table +++ b/definitions/grib2/tables/18/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/18/4.210.table b/definitions/grib2/tables/18/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/18/4.210.table +++ b/definitions/grib2/tables/18/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/4.211.table b/definitions/grib2/tables/18/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/18/4.211.table +++ b/definitions/grib2/tables/18/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/4.212.table b/definitions/grib2/tables/18/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/18/4.212.table +++ b/definitions/grib2/tables/18/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/18/4.213.table b/definitions/grib2/tables/18/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/18/4.213.table +++ b/definitions/grib2/tables/18/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/18/4.215.table b/definitions/grib2/tables/18/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/18/4.215.table +++ b/definitions/grib2/tables/18/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/18/4.216.table b/definitions/grib2/tables/18/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/18/4.216.table +++ b/definitions/grib2/tables/18/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/18/4.217.table b/definitions/grib2/tables/18/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/18/4.217.table +++ b/definitions/grib2/tables/18/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/18/4.218.table b/definitions/grib2/tables/18/4.218.table index b5b15150b..d899242fd 100644 --- a/definitions/grib2/tables/18/4.218.table +++ b/definitions/grib2/tables/18/4.218.table @@ -24,7 +24,6 @@ 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 @@ -39,6 +38,4 @@ 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/definitions/grib2/tables/18/4.219.table b/definitions/grib2/tables/18/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/18/4.219.table +++ b/definitions/grib2/tables/18/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/18/4.220.table b/definitions/grib2/tables/18/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/18/4.220.table +++ b/definitions/grib2/tables/18/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/4.221.table b/definitions/grib2/tables/18/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/18/4.221.table +++ b/definitions/grib2/tables/18/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/4.222.table b/definitions/grib2/tables/18/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/18/4.222.table +++ b/definitions/grib2/tables/18/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/4.224.table b/definitions/grib2/tables/18/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/18/4.224.table +++ b/definitions/grib2/tables/18/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/18/4.227.table b/definitions/grib2/tables/18/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/18/4.227.table +++ b/definitions/grib2/tables/18/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/18/4.240.table b/definitions/grib2/tables/18/4.240.table index 986557483..88b7d8cdb 100644 --- a/definitions/grib2/tables/18/4.240.table +++ b/definitions/grib2/tables/18/4.240.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/18/4.241.table b/definitions/grib2/tables/18/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/18/4.241.table +++ b/definitions/grib2/tables/18/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/18/4.242.table b/definitions/grib2/tables/18/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/18/4.242.table +++ b/definitions/grib2/tables/18/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/4.243.table b/definitions/grib2/tables/18/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/18/4.243.table +++ b/definitions/grib2/tables/18/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/18/4.3.table b/definitions/grib2/tables/18/4.3.table index cea1bef4f..8338bbd67 100644 --- a/definitions/grib2/tables/18/4.3.table +++ b/definitions/grib2/tables/18/4.3.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/18/4.4.table b/definitions/grib2/tables/18/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/18/4.4.table +++ b/definitions/grib2/tables/18/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/18/4.5.table b/definitions/grib2/tables/18/4.5.table index 33abd6293..5de5a7be7 100644 --- a/definitions/grib2/tables/18/4.5.table +++ b/definitions/grib2/tables/18/4.5.table @@ -16,13 +16,11 @@ 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) @@ -39,14 +37,11 @@ 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 sfc Lake or river bottom (-) @@ -55,18 +50,14 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -# 168-173 Reserved 174 sfc 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/definitions/grib2/tables/18/4.6.table b/definitions/grib2/tables/18/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/18/4.6.table +++ b/definitions/grib2/tables/18/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/18/4.7.table b/definitions/grib2/tables/18/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/18/4.7.table +++ b/definitions/grib2/tables/18/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/18/4.8.table b/definitions/grib2/tables/18/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/18/4.8.table +++ b/definitions/grib2/tables/18/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/4.9.table b/definitions/grib2/tables/18/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/18/4.9.table +++ b/definitions/grib2/tables/18/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/18/4.91.table b/definitions/grib2/tables/18/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/18/4.91.table +++ b/definitions/grib2/tables/18/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/18/5.0.table b/definitions/grib2/tables/18/5.0.table index 4d6cc68c8..5447eb3c8 100644 --- a/definitions/grib2/tables/18/5.0.table +++ b/definitions/grib2/tables/18/5.0.table @@ -7,15 +7,10 @@ 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) 42 42 Grid point 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 diff --git a/definitions/grib2/tables/18/5.1.table b/definitions/grib2/tables/18/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/18/5.1.table +++ b/definitions/grib2/tables/18/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/5.2.table b/definitions/grib2/tables/18/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/18/5.2.table +++ b/definitions/grib2/tables/18/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/18/5.3.table b/definitions/grib2/tables/18/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/18/5.3.table +++ b/definitions/grib2/tables/18/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/5.4.table b/definitions/grib2/tables/18/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/18/5.4.table +++ b/definitions/grib2/tables/18/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/18/5.40.table b/definitions/grib2/tables/18/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/18/5.40.table +++ b/definitions/grib2/tables/18/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/18/5.5.table b/definitions/grib2/tables/18/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/18/5.5.table +++ b/definitions/grib2/tables/18/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/5.6.table b/definitions/grib2/tables/18/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/18/5.6.table +++ b/definitions/grib2/tables/18/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/18/5.7.table b/definitions/grib2/tables/18/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/18/5.7.table +++ b/definitions/grib2/tables/18/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/19/0.0.table b/definitions/grib2/tables/19/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/19/0.0.table +++ b/definitions/grib2/tables/19/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/19/1.2.table b/definitions/grib2/tables/19/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/19/1.2.table +++ b/definitions/grib2/tables/19/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/19/1.3.table b/definitions/grib2/tables/19/1.3.table index c1a9a7b9d..7b5690caa 100644 --- a/definitions/grib2/tables/19/1.3.table +++ b/definitions/grib2/tables/19/1.3.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/19/1.4.table b/definitions/grib2/tables/19/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/19/1.4.table +++ b/definitions/grib2/tables/19/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/19/1.5.table b/definitions/grib2/tables/19/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/19/1.5.table +++ b/definitions/grib2/tables/19/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/1.6.table b/definitions/grib2/tables/19/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/19/1.6.table +++ b/definitions/grib2/tables/19/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/19/3.0.table b/definitions/grib2/tables/19/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/19/3.0.table +++ b/definitions/grib2/tables/19/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/3.1.table b/definitions/grib2/tables/19/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/19/3.1.table +++ b/definitions/grib2/tables/19/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/19/3.10.table b/definitions/grib2/tables/19/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/19/3.10.table +++ b/definitions/grib2/tables/19/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/19/3.11.table b/definitions/grib2/tables/19/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/19/3.11.table +++ b/definitions/grib2/tables/19/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/19/3.15.table b/definitions/grib2/tables/19/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/19/3.15.table +++ b/definitions/grib2/tables/19/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/19/3.2.table b/definitions/grib2/tables/19/3.2.table index 56ffdc08e..3d47cc431 100644 --- a/definitions/grib2/tables/19/3.2.table +++ b/definitions/grib2/tables/19/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/19/3.20.table b/definitions/grib2/tables/19/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/19/3.20.table +++ b/definitions/grib2/tables/19/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/3.21.table b/definitions/grib2/tables/19/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/19/3.21.table +++ b/definitions/grib2/tables/19/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/19/3.3.table b/definitions/grib2/tables/19/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/19/3.3.table +++ b/definitions/grib2/tables/19/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/19/3.7.table b/definitions/grib2/tables/19/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/19/3.7.table +++ b/definitions/grib2/tables/19/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/19/3.8.table b/definitions/grib2/tables/19/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/19/3.8.table +++ b/definitions/grib2/tables/19/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/3.9.table b/definitions/grib2/tables/19/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/19/3.9.table +++ b/definitions/grib2/tables/19/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/19/4.0.table b/definitions/grib2/tables/19/4.0.table index a37b59d09..f8a1863f0 100644 --- a/definitions/grib2/tables/19/4.0.table +++ b/definitions/grib2/tables/19/4.0.table @@ -15,15 +15,12 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -47,29 +42,21 @@ 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/definitions/grib2/tables/19/4.1.0.table b/definitions/grib2/tables/19/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/19/4.1.0.table +++ b/definitions/grib2/tables/19/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/19/4.1.1.table b/definitions/grib2/tables/19/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/19/4.1.1.table +++ b/definitions/grib2/tables/19/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/4.1.10.table b/definitions/grib2/tables/19/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/19/4.1.10.table +++ b/definitions/grib2/tables/19/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/19/4.1.2.table b/definitions/grib2/tables/19/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/19/4.1.2.table +++ b/definitions/grib2/tables/19/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/19/4.1.3.table b/definitions/grib2/tables/19/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/19/4.1.3.table +++ b/definitions/grib2/tables/19/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/19/4.10.table b/definitions/grib2/tables/19/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/19/4.10.table +++ b/definitions/grib2/tables/19/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/19/4.11.table b/definitions/grib2/tables/19/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/19/4.11.table +++ b/definitions/grib2/tables/19/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/19/4.12.table b/definitions/grib2/tables/19/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/19/4.12.table +++ b/definitions/grib2/tables/19/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/4.13.table b/definitions/grib2/tables/19/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/19/4.13.table +++ b/definitions/grib2/tables/19/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/4.14.table b/definitions/grib2/tables/19/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/19/4.14.table +++ b/definitions/grib2/tables/19/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/4.15.table b/definitions/grib2/tables/19/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/19/4.15.table +++ b/definitions/grib2/tables/19/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/19/4.2.0.0.table b/definitions/grib2/tables/19/4.2.0.0.table index 83b3e8ef1..3cd04f347 100644 --- a/definitions/grib2/tables/19/4.2.0.0.table +++ b/definitions/grib2/tables/19/4.2.0.0.table @@ -29,6 +29,4 @@ 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/definitions/grib2/tables/19/4.2.0.1.table b/definitions/grib2/tables/19/4.2.0.1.table index 7d43684d3..6a4eb9a2e 100644 --- a/definitions/grib2/tables/19/4.2.0.1.table +++ b/definitions/grib2/tables/19/4.2.0.1.table @@ -86,7 +86,6 @@ 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) @@ -118,6 +117,4 @@ 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/definitions/grib2/tables/19/4.2.0.13.table b/definitions/grib2/tables/19/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/19/4.2.0.13.table +++ b/definitions/grib2/tables/19/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/19/4.2.0.14.table b/definitions/grib2/tables/19/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/19/4.2.0.14.table +++ b/definitions/grib2/tables/19/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/4.2.0.15.table b/definitions/grib2/tables/19/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/19/4.2.0.15.table +++ b/definitions/grib2/tables/19/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/19/4.2.0.16.table b/definitions/grib2/tables/19/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/19/4.2.0.16.table +++ b/definitions/grib2/tables/19/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/19/4.2.0.18.table b/definitions/grib2/tables/19/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/19/4.2.0.18.table +++ b/definitions/grib2/tables/19/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/19/4.2.0.19.table b/definitions/grib2/tables/19/4.2.0.19.table index b27eb2dbe..bd9ebe5c7 100644 --- a/definitions/grib2/tables/19/4.2.0.19.table +++ b/definitions/grib2/tables/19/4.2.0.19.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/19/4.2.0.190.table b/definitions/grib2/tables/19/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/19/4.2.0.190.table +++ b/definitions/grib2/tables/19/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/19/4.2.0.191.table b/definitions/grib2/tables/19/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/19/4.2.0.191.table +++ b/definitions/grib2/tables/19/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/19/4.2.0.2.table b/definitions/grib2/tables/19/4.2.0.2.table index 8a70b2591..8651adc7c 100644 --- a/definitions/grib2/tables/19/4.2.0.2.table +++ b/definitions/grib2/tables/19/4.2.0.2.table @@ -46,6 +46,4 @@ 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/definitions/grib2/tables/19/4.2.0.20.table b/definitions/grib2/tables/19/4.2.0.20.table index 0f95689f8..af088ddfe 100644 --- a/definitions/grib2/tables/19/4.2.0.20.table +++ b/definitions/grib2/tables/19/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -29,7 +28,6 @@ 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) @@ -42,6 +40,4 @@ 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/definitions/grib2/tables/19/4.2.0.3.table b/definitions/grib2/tables/19/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/19/4.2.0.3.table +++ b/definitions/grib2/tables/19/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/19/4.2.0.4.table b/definitions/grib2/tables/19/4.2.0.4.table index f97270456..d5024628b 100644 --- a/definitions/grib2/tables/19/4.2.0.4.table +++ b/definitions/grib2/tables/19/4.2.0.4.table @@ -14,11 +14,8 @@ 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/definitions/grib2/tables/19/4.2.0.5.table b/definitions/grib2/tables/19/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/19/4.2.0.5.table +++ b/definitions/grib2/tables/19/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/19/4.2.0.6.table b/definitions/grib2/tables/19/4.2.0.6.table index 0450ec194..4e5d7ee4c 100644 --- a/definitions/grib2/tables/19/4.2.0.6.table +++ b/definitions/grib2/tables/19/4.2.0.6.table @@ -40,10 +40,7 @@ 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/definitions/grib2/tables/19/4.2.0.7.table b/definitions/grib2/tables/19/4.2.0.7.table index 6289d8b20..2c5b697db 100644 --- a/definitions/grib2/tables/19/4.2.0.7.table +++ b/definitions/grib2/tables/19/4.2.0.7.table @@ -19,6 +19,4 @@ 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/definitions/grib2/tables/19/4.2.1.0.table b/definitions/grib2/tables/19/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/19/4.2.1.0.table +++ b/definitions/grib2/tables/19/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/19/4.2.1.1.table b/definitions/grib2/tables/19/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/19/4.2.1.1.table +++ b/definitions/grib2/tables/19/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/4.2.10.0.table b/definitions/grib2/tables/19/4.2.10.0.table index 3611abd9a..5014980aa 100644 --- a/definitions/grib2/tables/19/4.2.10.0.table +++ b/definitions/grib2/tables/19/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/19/4.2.10.1.table b/definitions/grib2/tables/19/4.2.10.1.table index f0a073c00..c172554a9 100644 --- a/definitions/grib2/tables/19/4.2.10.1.table +++ b/definitions/grib2/tables/19/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/19/4.2.10.191.table b/definitions/grib2/tables/19/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/19/4.2.10.191.table +++ b/definitions/grib2/tables/19/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/19/4.2.10.2.table b/definitions/grib2/tables/19/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/19/4.2.10.2.table +++ b/definitions/grib2/tables/19/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/19/4.2.10.3.table b/definitions/grib2/tables/19/4.2.10.3.table index b01d7ae46..f6229ac12 100644 --- a/definitions/grib2/tables/19/4.2.10.3.table +++ b/definitions/grib2/tables/19/4.2.10.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/4.2.10.4.table b/definitions/grib2/tables/19/4.2.10.4.table index d5615ae26..15cc8b4b3 100644 --- a/definitions/grib2/tables/19/4.2.10.4.table +++ b/definitions/grib2/tables/19/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/19/4.2.2.0.table b/definitions/grib2/tables/19/4.2.2.0.table index b253cac22..090bbb64a 100644 --- a/definitions/grib2/tables/19/4.2.2.0.table +++ b/definitions/grib2/tables/19/4.2.2.0.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/19/4.2.2.3.table b/definitions/grib2/tables/19/4.2.2.3.table index 2674e9f42..9699073e8 100644 --- a/definitions/grib2/tables/19/4.2.2.3.table +++ b/definitions/grib2/tables/19/4.2.2.3.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/19/4.2.2.4.table b/definitions/grib2/tables/19/4.2.2.4.table index ceb761557..3ee2176f6 100644 --- a/definitions/grib2/tables/19/4.2.2.4.table +++ b/definitions/grib2/tables/19/4.2.2.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/19/4.2.3.0.table b/definitions/grib2/tables/19/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/19/4.2.3.0.table +++ b/definitions/grib2/tables/19/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/19/4.2.3.1.table b/definitions/grib2/tables/19/4.2.3.1.table index 04cdde1f1..9ce359f2e 100644 --- a/definitions/grib2/tables/19/4.2.3.1.table +++ b/definitions/grib2/tables/19/4.2.3.1.table @@ -23,10 +23,7 @@ 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/definitions/grib2/tables/19/4.201.table b/definitions/grib2/tables/19/4.201.table index fa173c4e0..7787ce735 100644 --- a/definitions/grib2/tables/19/4.201.table +++ b/definitions/grib2/tables/19/4.201.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/19/4.202.table b/definitions/grib2/tables/19/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/19/4.202.table +++ b/definitions/grib2/tables/19/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/19/4.203.table b/definitions/grib2/tables/19/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/19/4.203.table +++ b/definitions/grib2/tables/19/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/19/4.204.table b/definitions/grib2/tables/19/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/19/4.204.table +++ b/definitions/grib2/tables/19/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/19/4.205.table b/definitions/grib2/tables/19/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/19/4.205.table +++ b/definitions/grib2/tables/19/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/4.206.table b/definitions/grib2/tables/19/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/19/4.206.table +++ b/definitions/grib2/tables/19/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/4.207.table b/definitions/grib2/tables/19/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/19/4.207.table +++ b/definitions/grib2/tables/19/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/19/4.208.table b/definitions/grib2/tables/19/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/19/4.208.table +++ b/definitions/grib2/tables/19/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/19/4.209.table b/definitions/grib2/tables/19/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/19/4.209.table +++ b/definitions/grib2/tables/19/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/19/4.210.table b/definitions/grib2/tables/19/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/19/4.210.table +++ b/definitions/grib2/tables/19/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/4.211.table b/definitions/grib2/tables/19/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/19/4.211.table +++ b/definitions/grib2/tables/19/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/4.212.table b/definitions/grib2/tables/19/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/19/4.212.table +++ b/definitions/grib2/tables/19/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/19/4.213.table b/definitions/grib2/tables/19/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/19/4.213.table +++ b/definitions/grib2/tables/19/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/19/4.215.table b/definitions/grib2/tables/19/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/19/4.215.table +++ b/definitions/grib2/tables/19/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/19/4.216.table b/definitions/grib2/tables/19/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/19/4.216.table +++ b/definitions/grib2/tables/19/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/19/4.217.table b/definitions/grib2/tables/19/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/19/4.217.table +++ b/definitions/grib2/tables/19/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/19/4.218.table b/definitions/grib2/tables/19/4.218.table index b5b15150b..d899242fd 100644 --- a/definitions/grib2/tables/19/4.218.table +++ b/definitions/grib2/tables/19/4.218.table @@ -24,7 +24,6 @@ 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 @@ -39,6 +38,4 @@ 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/definitions/grib2/tables/19/4.219.table b/definitions/grib2/tables/19/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/19/4.219.table +++ b/definitions/grib2/tables/19/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/19/4.220.table b/definitions/grib2/tables/19/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/19/4.220.table +++ b/definitions/grib2/tables/19/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/4.221.table b/definitions/grib2/tables/19/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/19/4.221.table +++ b/definitions/grib2/tables/19/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/4.222.table b/definitions/grib2/tables/19/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/19/4.222.table +++ b/definitions/grib2/tables/19/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/4.224.table b/definitions/grib2/tables/19/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/19/4.224.table +++ b/definitions/grib2/tables/19/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/19/4.227.table b/definitions/grib2/tables/19/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/19/4.227.table +++ b/definitions/grib2/tables/19/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/19/4.240.table b/definitions/grib2/tables/19/4.240.table index 400a13e26..38ae11671 100644 --- a/definitions/grib2/tables/19/4.240.table +++ b/definitions/grib2/tables/19/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/19/4.241.table b/definitions/grib2/tables/19/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/19/4.241.table +++ b/definitions/grib2/tables/19/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/19/4.242.table b/definitions/grib2/tables/19/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/19/4.242.table +++ b/definitions/grib2/tables/19/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/4.243.table b/definitions/grib2/tables/19/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/19/4.243.table +++ b/definitions/grib2/tables/19/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/19/4.3.table b/definitions/grib2/tables/19/4.3.table index cea1bef4f..8338bbd67 100644 --- a/definitions/grib2/tables/19/4.3.table +++ b/definitions/grib2/tables/19/4.3.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/19/4.4.table b/definitions/grib2/tables/19/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/19/4.4.table +++ b/definitions/grib2/tables/19/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/19/4.5.table b/definitions/grib2/tables/19/4.5.table index 33abd6293..5de5a7be7 100644 --- a/definitions/grib2/tables/19/4.5.table +++ b/definitions/grib2/tables/19/4.5.table @@ -16,13 +16,11 @@ 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) @@ -39,14 +37,11 @@ 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 sfc Lake or river bottom (-) @@ -55,18 +50,14 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -# 168-173 Reserved 174 sfc 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/definitions/grib2/tables/19/4.6.table b/definitions/grib2/tables/19/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/19/4.6.table +++ b/definitions/grib2/tables/19/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/19/4.7.table b/definitions/grib2/tables/19/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/19/4.7.table +++ b/definitions/grib2/tables/19/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/19/4.8.table b/definitions/grib2/tables/19/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/19/4.8.table +++ b/definitions/grib2/tables/19/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/4.9.table b/definitions/grib2/tables/19/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/19/4.9.table +++ b/definitions/grib2/tables/19/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/19/4.91.table b/definitions/grib2/tables/19/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/19/4.91.table +++ b/definitions/grib2/tables/19/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/19/5.0.table b/definitions/grib2/tables/19/5.0.table index 4d6cc68c8..5447eb3c8 100644 --- a/definitions/grib2/tables/19/5.0.table +++ b/definitions/grib2/tables/19/5.0.table @@ -7,15 +7,10 @@ 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) 42 42 Grid point 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 diff --git a/definitions/grib2/tables/19/5.1.table b/definitions/grib2/tables/19/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/19/5.1.table +++ b/definitions/grib2/tables/19/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/5.2.table b/definitions/grib2/tables/19/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/19/5.2.table +++ b/definitions/grib2/tables/19/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/19/5.3.table b/definitions/grib2/tables/19/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/19/5.3.table +++ b/definitions/grib2/tables/19/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/5.4.table b/definitions/grib2/tables/19/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/19/5.4.table +++ b/definitions/grib2/tables/19/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/19/5.40.table b/definitions/grib2/tables/19/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/19/5.40.table +++ b/definitions/grib2/tables/19/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/19/5.5.table b/definitions/grib2/tables/19/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/19/5.5.table +++ b/definitions/grib2/tables/19/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/5.6.table b/definitions/grib2/tables/19/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/19/5.6.table +++ b/definitions/grib2/tables/19/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/19/5.7.table b/definitions/grib2/tables/19/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/19/5.7.table +++ b/definitions/grib2/tables/19/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/2/0.0.table b/definitions/grib2/tables/2/0.0.table index fd2056350..39475306e 100644 --- a/definitions/grib2/tables/2/0.0.table +++ b/definitions/grib2/tables/2/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/2/1.2.table b/definitions/grib2/tables/2/1.2.table index eb8755209..65b1aca9a 100644 --- a/definitions/grib2/tables/2/1.2.table +++ b/definitions/grib2/tables/2/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/2/1.3.table b/definitions/grib2/tables/2/1.3.table index d4ed48c63..d2a1c2770 100644 --- a/definitions/grib2/tables/2/1.3.table +++ b/definitions/grib2/tables/2/1.3.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/2/1.4.table b/definitions/grib2/tables/2/1.4.table index ac21f5c4c..8fa9b6b41 100644 --- a/definitions/grib2/tables/2/1.4.table +++ b/definitions/grib2/tables/2/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/2/3.0.table b/definitions/grib2/tables/2/3.0.table index 6030a5132..4f4fd7be4 100644 --- a/definitions/grib2/tables/2/3.0.table +++ b/definitions/grib2/tables/2/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/2/3.1.table b/definitions/grib2/tables/2/3.1.table index 235fb8bd3..6ad006cb0 100644 --- a/definitions/grib2/tables/2/3.1.table +++ b/definitions/grib2/tables/2/3.1.table @@ -3,41 +3,25 @@ 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/definitions/grib2/tables/2/3.2.table b/definitions/grib2/tables/2/3.2.table index d037ee120..2bf054512 100644 --- a/definitions/grib2/tables/2/3.2.table +++ b/definitions/grib2/tables/2/3.2.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/2/3.20.table b/definitions/grib2/tables/2/3.20.table index cfa35ae38..f79d193b6 100644 --- a/definitions/grib2/tables/2/3.20.table +++ b/definitions/grib2/tables/2/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/2/3.21.table b/definitions/grib2/tables/2/3.21.table index c2fd94586..d42c900cb 100644 --- a/definitions/grib2/tables/2/3.21.table +++ b/definitions/grib2/tables/2/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/2/3.8.table b/definitions/grib2/tables/2/3.8.table index 0d9b7d001..a6b503617 100644 --- a/definitions/grib2/tables/2/3.8.table +++ b/definitions/grib2/tables/2/3.8.table @@ -2,7 +2,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 -#3-191 Reserved -#192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.1.0.table b/definitions/grib2/tables/2/4.1.0.table index 33d1c3984..d9660f77e 100644 --- a/definitions/grib2/tables/2/4.1.0.table +++ b/definitions/grib2/tables/2/4.1.0.table @@ -21,10 +21,8 @@ 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/definitions/grib2/tables/2/4.1.1.table b/definitions/grib2/tables/2/4.1.1.table index ebb7d9ea0..220c7fd5a 100644 --- a/definitions/grib2/tables/2/4.1.1.table +++ b/definitions/grib2/tables/2/4.1.1.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/2/4.1.10.table b/definitions/grib2/tables/2/4.1.10.table index 45b08caaa..5593171ac 100644 --- a/definitions/grib2/tables/2/4.1.10.table +++ b/definitions/grib2/tables/2/4.1.10.table @@ -5,8 +5,6 @@ 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/definitions/grib2/tables/2/4.1.2.table b/definitions/grib2/tables/2/4.1.2.table index f7f2ea2ba..0426852f0 100644 --- a/definitions/grib2/tables/2/4.1.2.table +++ b/definitions/grib2/tables/2/4.1.2.table @@ -4,8 +4,6 @@ 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/definitions/grib2/tables/2/4.1.3.table b/definitions/grib2/tables/2/4.1.3.table index f7578e163..744f02eba 100644 --- a/definitions/grib2/tables/2/4.1.3.table +++ b/definitions/grib2/tables/2/4.1.3.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/2/4.10.table b/definitions/grib2/tables/2/4.10.table index 9cf447b69..94bf593af 100644 --- a/definitions/grib2/tables/2/4.10.table +++ b/definitions/grib2/tables/2/4.10.table @@ -10,5 +10,4 @@ 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/definitions/grib2/tables/2/4.11.table b/definitions/grib2/tables/2/4.11.table index 68901aac4..28c7ebbd3 100644 --- a/definitions/grib2/tables/2/4.11.table +++ b/definitions/grib2/tables/2/4.11.table @@ -5,5 +5,4 @@ 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/definitions/grib2/tables/2/4.12.table b/definitions/grib2/tables/2/4.12.table index a8dc4b1c7..f52f20c09 100644 --- a/definitions/grib2/tables/2/4.12.table +++ b/definitions/grib2/tables/2/4.12.table @@ -2,5 +2,4 @@ 0 0 Maintenance Mode 1 1 Clear air 2 2 Precipitation -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.13.table b/definitions/grib2/tables/2/4.13.table index 29ddf2a3c..255f90b78 100644 --- a/definitions/grib2/tables/2/4.13.table +++ b/definitions/grib2/tables/2/4.13.table @@ -1,5 +1,4 @@ # CODE TABLE 4.13, Quality Control Indicator 0 0 No quality control applied 1 1 Quality control applied -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.14.table b/definitions/grib2/tables/2/4.14.table index e19c14c2f..34b0931f7 100644 --- a/definitions/grib2/tables/2/4.14.table +++ b/definitions/grib2/tables/2/4.14.table @@ -1,5 +1,4 @@ # CODE TABLE 4.14, Clutter Filter Indicator 0 0 No clutter filter used 1 1 Clutter filter used -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.15.table b/definitions/grib2/tables/2/4.15.table index e247693ad..d75d8823b 100644 --- a/definitions/grib2/tables/2/4.15.table +++ b/definitions/grib2/tables/2/4.15.table @@ -1,5 +1,4 @@ # CODE TABLE 4.15, Type of auxiliary information 0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.151.table b/definitions/grib2/tables/2/4.151.table index 30487afb4..90a8c6ca0 100644 --- a/definitions/grib2/tables/2/4.151.table +++ b/definitions/grib2/tables/2/4.151.table @@ -3,5 +3,4 @@ 1 1 suspect 2 2 acceptable 3 3 excellent -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.2.0.0.table b/definitions/grib2/tables/2/4.2.0.0.table index 0386b8cd2..94841baa0 100644 --- a/definitions/grib2/tables/2/4.2.0.0.table +++ b/definitions/grib2/tables/2/4.2.0.0.table @@ -17,7 +17,5 @@ 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/definitions/grib2/tables/2/4.2.0.1.table b/definitions/grib2/tables/2/4.2.0.1.table index 154f2d007..17bb7b4c5 100644 --- a/definitions/grib2/tables/2/4.2.0.1.table +++ b/definitions/grib2/tables/2/4.2.0.1.table @@ -56,7 +56,5 @@ 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/definitions/grib2/tables/2/4.2.0.13.table b/definitions/grib2/tables/2/4.2.0.13.table index 8fc3425af..a8c8c8bce 100644 --- a/definitions/grib2/tables/2/4.2.0.13.table +++ b/definitions/grib2/tables/2/4.2.0.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/2/4.2.0.14.table b/definitions/grib2/tables/2/4.2.0.14.table index 309c40d47..d3128ec55 100644 --- a/definitions/grib2/tables/2/4.2.0.14.table +++ b/definitions/grib2/tables/2/4.2.0.14.table @@ -1,7 +1,5 @@ # 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/definitions/grib2/tables/2/4.2.0.15.table b/definitions/grib2/tables/2/4.2.0.15.table index bb419178b..e73f9eae7 100644 --- a/definitions/grib2/tables/2/4.2.0.15.table +++ b/definitions/grib2/tables/2/4.2.0.15.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/2/4.2.0.18.table b/definitions/grib2/tables/2/4.2.0.18.table index 5c0fd6e5d..1ee1cb17c 100644 --- a/definitions/grib2/tables/2/4.2.0.18.table +++ b/definitions/grib2/tables/2/4.2.0.18.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/2/4.2.0.19.table b/definitions/grib2/tables/2/4.2.0.19.table index 369c3f657..d56c14505 100644 --- a/definitions/grib2/tables/2/4.2.0.19.table +++ b/definitions/grib2/tables/2/4.2.0.19.table @@ -18,7 +18,5 @@ 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/definitions/grib2/tables/2/4.2.0.190.table b/definitions/grib2/tables/2/4.2.0.190.table index b1f47bc02..b95b4ab90 100644 --- a/definitions/grib2/tables/2/4.2.0.190.table +++ b/definitions/grib2/tables/2/4.2.0.190.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/2/4.2.0.191.table b/definitions/grib2/tables/2/4.2.0.191.table index affb98f42..d095f705e 100644 --- a/definitions/grib2/tables/2/4.2.0.191.table +++ b/definitions/grib2/tables/2/4.2.0.191.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/2/4.2.0.2.table b/definitions/grib2/tables/2/4.2.0.2.table index 1ec945102..75b6211aa 100644 --- a/definitions/grib2/tables/2/4.2.0.2.table +++ b/definitions/grib2/tables/2/4.2.0.2.table @@ -30,6 +30,4 @@ 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/definitions/grib2/tables/2/4.2.0.20.table b/definitions/grib2/tables/2/4.2.0.20.table index 4e7f45db4..4e5938bb4 100644 --- a/definitions/grib2/tables/2/4.2.0.20.table +++ b/definitions/grib2/tables/2/4.2.0.20.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/2/4.2.0.3.table b/definitions/grib2/tables/2/4.2.0.3.table index 5c7e8151d..fedd11abd 100644 --- a/definitions/grib2/tables/2/4.2.0.3.table +++ b/definitions/grib2/tables/2/4.2.0.3.table @@ -19,7 +19,5 @@ 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/definitions/grib2/tables/2/4.2.0.4.table b/definitions/grib2/tables/2/4.2.0.4.table index 815c184a2..06785fac6 100644 --- a/definitions/grib2/tables/2/4.2.0.4.table +++ b/definitions/grib2/tables/2/4.2.0.4.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/2/4.2.0.5.table b/definitions/grib2/tables/2/4.2.0.5.table index 1b57fa301..e2749b5a6 100644 --- a/definitions/grib2/tables/2/4.2.0.5.table +++ b/definitions/grib2/tables/2/4.2.0.5.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/2/4.2.0.6.table b/definitions/grib2/tables/2/4.2.0.6.table index 05cf72f57..de4e051f2 100644 --- a/definitions/grib2/tables/2/4.2.0.6.table +++ b/definitions/grib2/tables/2/4.2.0.6.table @@ -24,7 +24,5 @@ 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/definitions/grib2/tables/2/4.2.0.7.table b/definitions/grib2/tables/2/4.2.0.7.table index 78374fde5..16458be11 100644 --- a/definitions/grib2/tables/2/4.2.0.7.table +++ b/definitions/grib2/tables/2/4.2.0.7.table @@ -12,7 +12,5 @@ 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/definitions/grib2/tables/2/4.2.1.1.table b/definitions/grib2/tables/2/4.2.1.1.table index 2d3ecabf6..158d099c3 100644 --- a/definitions/grib2/tables/2/4.2.1.1.table +++ b/definitions/grib2/tables/2/4.2.1.1.table @@ -2,7 +2,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) (%) -#3-191 Reserved -#192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.2.10.0.table b/definitions/grib2/tables/2/4.2.10.0.table index 479e26d51..5dc9bd64a 100644 --- a/definitions/grib2/tables/2/4.2.10.0.table +++ b/definitions/grib2/tables/2/4.2.10.0.table @@ -13,8 +13,6 @@ 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/definitions/grib2/tables/2/4.2.10.1.table b/definitions/grib2/tables/2/4.2.10.1.table index df18f31dd..b9b2bd024 100644 --- a/definitions/grib2/tables/2/4.2.10.1.table +++ b/definitions/grib2/tables/2/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/2/4.2.10.2.table b/definitions/grib2/tables/2/4.2.10.2.table index cb73da46c..8e5a41949 100644 --- a/definitions/grib2/tables/2/4.2.10.2.table +++ b/definitions/grib2/tables/2/4.2.10.2.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/2/4.2.10.3.table b/definitions/grib2/tables/2/4.2.10.3.table index a14ae22e3..5315b46c6 100644 --- a/definitions/grib2/tables/2/4.2.10.3.table +++ b/definitions/grib2/tables/2/4.2.10.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/2/4.2.10.4.table b/definitions/grib2/tables/2/4.2.10.4.table index a24c3c8c4..c76136014 100644 --- a/definitions/grib2/tables/2/4.2.10.4.table +++ b/definitions/grib2/tables/2/4.2.10.4.table @@ -3,7 +3,5 @@ 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/definitions/grib2/tables/2/4.2.2.0.table b/definitions/grib2/tables/2/4.2.2.0.table index fdc8ce0ef..ebca9dcb4 100644 --- a/definitions/grib2/tables/2/4.2.2.0.table +++ b/definitions/grib2/tables/2/4.2.2.0.table @@ -23,7 +23,5 @@ 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/definitions/grib2/tables/2/4.2.2.3.table b/definitions/grib2/tables/2/4.2.2.3.table index d6376fecb..fcca2b27f 100644 --- a/definitions/grib2/tables/2/4.2.2.3.table +++ b/definitions/grib2/tables/2/4.2.2.3.table @@ -10,7 +10,5 @@ 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/definitions/grib2/tables/2/4.2.3.0.table b/definitions/grib2/tables/2/4.2.3.0.table index 944566388..209542d4e 100644 --- a/definitions/grib2/tables/2/4.2.3.0.table +++ b/definitions/grib2/tables/2/4.2.3.0.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/2/4.2.3.1.table b/definitions/grib2/tables/2/4.2.3.1.table index 60d6e8420..2a34fc2c6 100644 --- a/definitions/grib2/tables/2/4.2.3.1.table +++ b/definitions/grib2/tables/2/4.2.3.1.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/2/4.201.table b/definitions/grib2/tables/2/4.201.table index bd20dd356..d2da38501 100644 --- a/definitions/grib2/tables/2/4.201.table +++ b/definitions/grib2/tables/2/4.201.table @@ -4,5 +4,4 @@ 3 3 Freezing rain 4 4 Mixed/ice 5 5 Snow -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.202.table b/definitions/grib2/tables/2/4.202.table index 242f2d5af..8044d02aa 100644 --- a/definitions/grib2/tables/2/4.202.table +++ b/definitions/grib2/tables/2/4.202.table @@ -1,3 +1,2 @@ # CODE TABLE 4.202, Precipitable water category -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.203.table b/definitions/grib2/tables/2/4.203.table index 057f40910..d7a750534 100644 --- a/definitions/grib2/tables/2/4.203.table +++ b/definitions/grib2/tables/2/4.203.table @@ -21,5 +21,4 @@ 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/definitions/grib2/tables/2/4.204.table b/definitions/grib2/tables/2/4.204.table index 41b47ef7c..eebc517a6 100644 --- a/definitions/grib2/tables/2/4.204.table +++ b/definitions/grib2/tables/2/4.204.table @@ -4,5 +4,4 @@ 2 2 Few (3% - 15%) 3 3 Scattered (16% - 45%) 4 4 Numerous (> 45%) -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.205.table b/definitions/grib2/tables/2/4.205.table index 179b09e08..10a1f5bbf 100644 --- a/definitions/grib2/tables/2/4.205.table +++ b/definitions/grib2/tables/2/4.205.table @@ -1,5 +1,4 @@ # CODE TABLE 4.205, Aerosol type 0 0 Aerosol not present 1 1 Aerosol present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.206.table b/definitions/grib2/tables/2/4.206.table index ea5bfcbc2..33353e74b 100644 --- a/definitions/grib2/tables/2/4.206.table +++ b/definitions/grib2/tables/2/4.206.table @@ -1,5 +1,4 @@ # CODE TABLE 4.206, Volcanic ash 0 0 Not present 1 1 Present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.207.table b/definitions/grib2/tables/2/4.207.table index 1fa48a194..d92a6b811 100644 --- a/definitions/grib2/tables/2/4.207.table +++ b/definitions/grib2/tables/2/4.207.table @@ -3,5 +3,4 @@ 1 1 Light 2 2 Moderate 3 3 Severe -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.208.table b/definitions/grib2/tables/2/4.208.table index 902d03a57..a14539b22 100644 --- a/definitions/grib2/tables/2/4.208.table +++ b/definitions/grib2/tables/2/4.208.table @@ -4,5 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.209.table b/definitions/grib2/tables/2/4.209.table index 7218049e4..e0c422325 100644 --- a/definitions/grib2/tables/2/4.209.table +++ b/definitions/grib2/tables/2/4.209.table @@ -3,5 +3,4 @@ 2 2 Mechanically driven turbulence 3 3 Forced convection 4 4 Free convection -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.210.table b/definitions/grib2/tables/2/4.210.table index bdf3a3ee5..d80f75067 100644 --- a/definitions/grib2/tables/2/4.210.table +++ b/definitions/grib2/tables/2/4.210.table @@ -1,5 +1,4 @@ # CODE TABLE 4.210, Contrail intensity 0 0 Contrail not present 1 1 Contrail present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.211.table b/definitions/grib2/tables/2/4.211.table index 56565001c..01bb27657 100644 --- a/definitions/grib2/tables/2/4.211.table +++ b/definitions/grib2/tables/2/4.211.table @@ -2,5 +2,4 @@ 0 0 Low bypass 1 1 High bypass 2 2 Non bypass -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.212.table b/definitions/grib2/tables/2/4.212.table index 10f38d1ef..e7274d600 100644 --- a/definitions/grib2/tables/2/4.212.table +++ b/definitions/grib2/tables/2/4.212.table @@ -12,5 +12,4 @@ 11 11 Ice 12 12 Tropical forest 13 13 Savannah -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.213.table b/definitions/grib2/tables/2/4.213.table index 199042325..4bf4f0ab0 100644 --- a/definitions/grib2/tables/2/4.213.table +++ b/definitions/grib2/tables/2/4.213.table @@ -10,5 +10,4 @@ 9 9 Sandy clay 10 10 Silty clay 11 11 Clay -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.217.table b/definitions/grib2/tables/2/4.217.table index 2bd70f1d3..032b14964 100644 --- a/definitions/grib2/tables/2/4.217.table +++ b/definitions/grib2/tables/2/4.217.table @@ -3,5 +3,4 @@ 1 1 Clear over land 2 2 Cloud 3 3 No data -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.220.table b/definitions/grib2/tables/2/4.220.table index ea7c55e48..d2efbaae3 100644 --- a/definitions/grib2/tables/2/4.220.table +++ b/definitions/grib2/tables/2/4.220.table @@ -1,5 +1,4 @@ # CODE TABLE 4.220, Horizontal dimension processed 0 0 Latitude 1 1 Longitude -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.221.table b/definitions/grib2/tables/2/4.221.table index d63c545c5..27775d7d0 100644 --- a/definitions/grib2/tables/2/4.221.table +++ b/definitions/grib2/tables/2/4.221.table @@ -1,5 +1,4 @@ # CODE TABLE 4.221, Treatment of missing data 0 0 Not included 1 1 Extrapolated -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.230.table b/definitions/grib2/tables/2/4.230.table index 23e819b65..511b005e8 100644 --- a/definitions/grib2/tables/2/4.230.table +++ b/definitions/grib2/tables/2/4.230.table @@ -27,7 +27,6 @@ 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 @@ -42,6 +41,4 @@ 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/definitions/grib2/tables/2/4.3.table b/definitions/grib2/tables/2/4.3.table index 84a72352b..c786df210 100644 --- a/definitions/grib2/tables/2/4.3.table +++ b/definitions/grib2/tables/2/4.3.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/2/4.4.table b/definitions/grib2/tables/2/4.4.table index 61aa20c5f..ae3c412b5 100644 --- a/definitions/grib2/tables/2/4.4.table +++ b/definitions/grib2/tables/2/4.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/2/4.5.table b/definitions/grib2/tables/2/4.5.table index 43d838be5..b6fb60538 100644 --- a/definitions/grib2/tables/2/4.5.table +++ b/definitions/grib2/tables/2/4.5.table @@ -9,9 +9,7 @@ 7 sfc 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) @@ -24,10 +22,6 @@ 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/definitions/grib2/tables/2/4.6.table b/definitions/grib2/tables/2/4.6.table index dc6d94c20..2147b6e13 100644 --- a/definitions/grib2/tables/2/4.6.table +++ b/definitions/grib2/tables/2/4.6.table @@ -4,5 +4,4 @@ 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/definitions/grib2/tables/2/4.7.table b/definitions/grib2/tables/2/4.7.table index 118508672..1dfaf3f0e 100644 --- a/definitions/grib2/tables/2/4.7.table +++ b/definitions/grib2/tables/2/4.7.table @@ -6,5 +6,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.8.table b/definitions/grib2/tables/2/4.8.table index bba75820a..47d463adf 100644 --- a/definitions/grib2/tables/2/4.8.table +++ b/definitions/grib2/tables/2/4.8.table @@ -1,5 +1,4 @@ # CODE TABLE 4.8, Clustering Method 0 0 Anomaly correlation 1 1 Root mean square -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.9.table b/definitions/grib2/tables/2/4.9.table index e6e03ba8f..9594a005d 100644 --- a/definitions/grib2/tables/2/4.9.table +++ b/definitions/grib2/tables/2/4.9.table @@ -4,5 +4,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/2/4.91.table b/definitions/grib2/tables/2/4.91.table index 6e71a66d7..c612d0599 100644 --- a/definitions/grib2/tables/2/4.91.table +++ b/definitions/grib2/tables/2/4.91.table @@ -11,5 +11,4 @@ 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-254 Reserved for local use 255 missing Missing diff --git a/definitions/grib2/tables/2/5.0.table b/definitions/grib2/tables/2/5.0.table index b9b301151..7613820fc 100644 --- a/definitions/grib2/tables/2/5.0.table +++ b/definitions/grib2/tables/2/5.0.table @@ -9,7 +9,6 @@ 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/definitions/grib2/tables/2/5.1.table b/definitions/grib2/tables/2/5.1.table index d7ca4bedc..52ac8d861 100644 --- a/definitions/grib2/tables/2/5.1.table +++ b/definitions/grib2/tables/2/5.1.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/2/5.2.table b/definitions/grib2/tables/2/5.2.table index a048d712e..040c7fd6d 100644 --- a/definitions/grib2/tables/2/5.2.table +++ b/definitions/grib2/tables/2/5.2.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/2/5.3.table b/definitions/grib2/tables/2/5.3.table index 4a673ef85..e92a2b74c 100644 --- a/definitions/grib2/tables/2/5.3.table +++ b/definitions/grib2/tables/2/5.3.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/2/5.4.table b/definitions/grib2/tables/2/5.4.table index 1fd37966f..aed51082a 100644 --- a/definitions/grib2/tables/2/5.4.table +++ b/definitions/grib2/tables/2/5.4.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/2/5.40.table b/definitions/grib2/tables/2/5.40.table index 1eef7c763..a31bebc59 100644 --- a/definitions/grib2/tables/2/5.40.table +++ b/definitions/grib2/tables/2/5.40.table @@ -1,5 +1,4 @@ # Code Table 5.40: Type of Compression 0 0 Lossless 1 1 Lossy -#2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/2/5.5.table b/definitions/grib2/tables/2/5.5.table index d1caac9e8..2143388cb 100644 --- a/definitions/grib2/tables/2/5.5.table +++ b/definitions/grib2/tables/2/5.5.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/2/5.6.table b/definitions/grib2/tables/2/5.6.table index 91b307829..7bfd6d83e 100644 --- a/definitions/grib2/tables/2/5.6.table +++ b/definitions/grib2/tables/2/5.6.table @@ -1,5 +1,4 @@ # CODE TABLE 5.6, Order of Spatial Differencing 1 1 First-order spatial differencing 2 2 Second-order spatial differencing -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/20/0.0.table b/definitions/grib2/tables/20/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/20/0.0.table +++ b/definitions/grib2/tables/20/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/20/1.2.table b/definitions/grib2/tables/20/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/20/1.2.table +++ b/definitions/grib2/tables/20/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/20/1.3.table b/definitions/grib2/tables/20/1.3.table index c1a9a7b9d..7b5690caa 100644 --- a/definitions/grib2/tables/20/1.3.table +++ b/definitions/grib2/tables/20/1.3.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/20/1.4.table b/definitions/grib2/tables/20/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/20/1.4.table +++ b/definitions/grib2/tables/20/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/20/1.5.table b/definitions/grib2/tables/20/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/20/1.5.table +++ b/definitions/grib2/tables/20/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/1.6.table b/definitions/grib2/tables/20/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/20/1.6.table +++ b/definitions/grib2/tables/20/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/20/3.0.table b/definitions/grib2/tables/20/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/20/3.0.table +++ b/definitions/grib2/tables/20/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/3.1.table b/definitions/grib2/tables/20/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/20/3.1.table +++ b/definitions/grib2/tables/20/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/20/3.10.table b/definitions/grib2/tables/20/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/20/3.10.table +++ b/definitions/grib2/tables/20/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/20/3.11.table b/definitions/grib2/tables/20/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/20/3.11.table +++ b/definitions/grib2/tables/20/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/20/3.15.table b/definitions/grib2/tables/20/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/20/3.15.table +++ b/definitions/grib2/tables/20/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/20/3.2.table b/definitions/grib2/tables/20/3.2.table index 56ffdc08e..3d47cc431 100644 --- a/definitions/grib2/tables/20/3.2.table +++ b/definitions/grib2/tables/20/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/20/3.20.table b/definitions/grib2/tables/20/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/20/3.20.table +++ b/definitions/grib2/tables/20/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/3.21.table b/definitions/grib2/tables/20/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/20/3.21.table +++ b/definitions/grib2/tables/20/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/20/3.3.table b/definitions/grib2/tables/20/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/20/3.3.table +++ b/definitions/grib2/tables/20/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/20/3.7.table b/definitions/grib2/tables/20/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/20/3.7.table +++ b/definitions/grib2/tables/20/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/20/3.8.table b/definitions/grib2/tables/20/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/20/3.8.table +++ b/definitions/grib2/tables/20/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/3.9.table b/definitions/grib2/tables/20/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/20/3.9.table +++ b/definitions/grib2/tables/20/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/20/4.0.table b/definitions/grib2/tables/20/4.0.table index a37b59d09..f8a1863f0 100644 --- a/definitions/grib2/tables/20/4.0.table +++ b/definitions/grib2/tables/20/4.0.table @@ -15,15 +15,12 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -47,29 +42,21 @@ 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/definitions/grib2/tables/20/4.1.0.table b/definitions/grib2/tables/20/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/20/4.1.0.table +++ b/definitions/grib2/tables/20/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/20/4.1.1.table b/definitions/grib2/tables/20/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/20/4.1.1.table +++ b/definitions/grib2/tables/20/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/4.1.10.table b/definitions/grib2/tables/20/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/20/4.1.10.table +++ b/definitions/grib2/tables/20/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/20/4.1.2.table b/definitions/grib2/tables/20/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/20/4.1.2.table +++ b/definitions/grib2/tables/20/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/20/4.1.3.table b/definitions/grib2/tables/20/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/20/4.1.3.table +++ b/definitions/grib2/tables/20/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/20/4.10.table b/definitions/grib2/tables/20/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/20/4.10.table +++ b/definitions/grib2/tables/20/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/20/4.11.table b/definitions/grib2/tables/20/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/20/4.11.table +++ b/definitions/grib2/tables/20/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/20/4.12.table b/definitions/grib2/tables/20/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/20/4.12.table +++ b/definitions/grib2/tables/20/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/4.13.table b/definitions/grib2/tables/20/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/20/4.13.table +++ b/definitions/grib2/tables/20/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/4.14.table b/definitions/grib2/tables/20/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/20/4.14.table +++ b/definitions/grib2/tables/20/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/4.15.table b/definitions/grib2/tables/20/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/20/4.15.table +++ b/definitions/grib2/tables/20/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/20/4.2.0.0.table b/definitions/grib2/tables/20/4.2.0.0.table index 83b3e8ef1..3cd04f347 100644 --- a/definitions/grib2/tables/20/4.2.0.0.table +++ b/definitions/grib2/tables/20/4.2.0.0.table @@ -29,6 +29,4 @@ 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/definitions/grib2/tables/20/4.2.0.1.table b/definitions/grib2/tables/20/4.2.0.1.table index b4c1e8ba3..1a661773a 100644 --- a/definitions/grib2/tables/20/4.2.0.1.table +++ b/definitions/grib2/tables/20/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -121,6 +120,4 @@ 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/definitions/grib2/tables/20/4.2.0.13.table b/definitions/grib2/tables/20/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/20/4.2.0.13.table +++ b/definitions/grib2/tables/20/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/20/4.2.0.14.table b/definitions/grib2/tables/20/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/20/4.2.0.14.table +++ b/definitions/grib2/tables/20/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/4.2.0.15.table b/definitions/grib2/tables/20/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/20/4.2.0.15.table +++ b/definitions/grib2/tables/20/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/20/4.2.0.16.table b/definitions/grib2/tables/20/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/20/4.2.0.16.table +++ b/definitions/grib2/tables/20/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/20/4.2.0.18.table b/definitions/grib2/tables/20/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/20/4.2.0.18.table +++ b/definitions/grib2/tables/20/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/20/4.2.0.19.table b/definitions/grib2/tables/20/4.2.0.19.table index af9648d43..90df2dec1 100644 --- a/definitions/grib2/tables/20/4.2.0.19.table +++ b/definitions/grib2/tables/20/4.2.0.19.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/20/4.2.0.190.table b/definitions/grib2/tables/20/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/20/4.2.0.190.table +++ b/definitions/grib2/tables/20/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/20/4.2.0.191.table b/definitions/grib2/tables/20/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/20/4.2.0.191.table +++ b/definitions/grib2/tables/20/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/20/4.2.0.2.table b/definitions/grib2/tables/20/4.2.0.2.table index 8a70b2591..8651adc7c 100644 --- a/definitions/grib2/tables/20/4.2.0.2.table +++ b/definitions/grib2/tables/20/4.2.0.2.table @@ -46,6 +46,4 @@ 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/definitions/grib2/tables/20/4.2.0.20.table b/definitions/grib2/tables/20/4.2.0.20.table index bbdeef5b1..4392e7b76 100644 --- a/definitions/grib2/tables/20/4.2.0.20.table +++ b/definitions/grib2/tables/20/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -29,7 +28,6 @@ 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) @@ -42,6 +40,4 @@ 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/definitions/grib2/tables/20/4.2.0.3.table b/definitions/grib2/tables/20/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/20/4.2.0.3.table +++ b/definitions/grib2/tables/20/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/20/4.2.0.4.table b/definitions/grib2/tables/20/4.2.0.4.table index f97270456..d5024628b 100644 --- a/definitions/grib2/tables/20/4.2.0.4.table +++ b/definitions/grib2/tables/20/4.2.0.4.table @@ -14,11 +14,8 @@ 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/definitions/grib2/tables/20/4.2.0.5.table b/definitions/grib2/tables/20/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/20/4.2.0.5.table +++ b/definitions/grib2/tables/20/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/20/4.2.0.6.table b/definitions/grib2/tables/20/4.2.0.6.table index 0450ec194..4e5d7ee4c 100644 --- a/definitions/grib2/tables/20/4.2.0.6.table +++ b/definitions/grib2/tables/20/4.2.0.6.table @@ -40,10 +40,7 @@ 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/definitions/grib2/tables/20/4.2.0.7.table b/definitions/grib2/tables/20/4.2.0.7.table index 6289d8b20..2c5b697db 100644 --- a/definitions/grib2/tables/20/4.2.0.7.table +++ b/definitions/grib2/tables/20/4.2.0.7.table @@ -19,6 +19,4 @@ 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/definitions/grib2/tables/20/4.2.1.0.table b/definitions/grib2/tables/20/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/20/4.2.1.0.table +++ b/definitions/grib2/tables/20/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/20/4.2.1.1.table b/definitions/grib2/tables/20/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/20/4.2.1.1.table +++ b/definitions/grib2/tables/20/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/4.2.10.0.table b/definitions/grib2/tables/20/4.2.10.0.table index 3611abd9a..5014980aa 100644 --- a/definitions/grib2/tables/20/4.2.10.0.table +++ b/definitions/grib2/tables/20/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/20/4.2.10.1.table b/definitions/grib2/tables/20/4.2.10.1.table index 237e6865a..926267e52 100644 --- a/definitions/grib2/tables/20/4.2.10.1.table +++ b/definitions/grib2/tables/20/4.2.10.1.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/20/4.2.10.191.table b/definitions/grib2/tables/20/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/20/4.2.10.191.table +++ b/definitions/grib2/tables/20/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/20/4.2.10.2.table b/definitions/grib2/tables/20/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/20/4.2.10.2.table +++ b/definitions/grib2/tables/20/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/20/4.2.10.3.table b/definitions/grib2/tables/20/4.2.10.3.table index b01d7ae46..f6229ac12 100644 --- a/definitions/grib2/tables/20/4.2.10.3.table +++ b/definitions/grib2/tables/20/4.2.10.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/4.2.10.4.table b/definitions/grib2/tables/20/4.2.10.4.table index d5615ae26..15cc8b4b3 100644 --- a/definitions/grib2/tables/20/4.2.10.4.table +++ b/definitions/grib2/tables/20/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/20/4.2.2.0.table b/definitions/grib2/tables/20/4.2.2.0.table index b253cac22..090bbb64a 100644 --- a/definitions/grib2/tables/20/4.2.2.0.table +++ b/definitions/grib2/tables/20/4.2.2.0.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/20/4.2.2.3.table b/definitions/grib2/tables/20/4.2.2.3.table index 2674e9f42..9699073e8 100644 --- a/definitions/grib2/tables/20/4.2.2.3.table +++ b/definitions/grib2/tables/20/4.2.2.3.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/20/4.2.2.4.table b/definitions/grib2/tables/20/4.2.2.4.table index ceb761557..3ee2176f6 100644 --- a/definitions/grib2/tables/20/4.2.2.4.table +++ b/definitions/grib2/tables/20/4.2.2.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/20/4.2.3.0.table b/definitions/grib2/tables/20/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/20/4.2.3.0.table +++ b/definitions/grib2/tables/20/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/20/4.2.3.1.table b/definitions/grib2/tables/20/4.2.3.1.table index 04cdde1f1..9ce359f2e 100644 --- a/definitions/grib2/tables/20/4.2.3.1.table +++ b/definitions/grib2/tables/20/4.2.3.1.table @@ -23,10 +23,7 @@ 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/definitions/grib2/tables/20/4.201.table b/definitions/grib2/tables/20/4.201.table index fa173c4e0..7787ce735 100644 --- a/definitions/grib2/tables/20/4.201.table +++ b/definitions/grib2/tables/20/4.201.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/20/4.202.table b/definitions/grib2/tables/20/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/20/4.202.table +++ b/definitions/grib2/tables/20/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/20/4.203.table b/definitions/grib2/tables/20/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/20/4.203.table +++ b/definitions/grib2/tables/20/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/20/4.204.table b/definitions/grib2/tables/20/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/20/4.204.table +++ b/definitions/grib2/tables/20/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/20/4.205.table b/definitions/grib2/tables/20/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/20/4.205.table +++ b/definitions/grib2/tables/20/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/4.206.table b/definitions/grib2/tables/20/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/20/4.206.table +++ b/definitions/grib2/tables/20/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/4.207.table b/definitions/grib2/tables/20/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/20/4.207.table +++ b/definitions/grib2/tables/20/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/20/4.208.table b/definitions/grib2/tables/20/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/20/4.208.table +++ b/definitions/grib2/tables/20/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/20/4.209.table b/definitions/grib2/tables/20/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/20/4.209.table +++ b/definitions/grib2/tables/20/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/20/4.210.table b/definitions/grib2/tables/20/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/20/4.210.table +++ b/definitions/grib2/tables/20/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/4.211.table b/definitions/grib2/tables/20/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/20/4.211.table +++ b/definitions/grib2/tables/20/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/4.212.table b/definitions/grib2/tables/20/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/20/4.212.table +++ b/definitions/grib2/tables/20/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/20/4.213.table b/definitions/grib2/tables/20/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/20/4.213.table +++ b/definitions/grib2/tables/20/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/20/4.215.table b/definitions/grib2/tables/20/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/20/4.215.table +++ b/definitions/grib2/tables/20/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/20/4.216.table b/definitions/grib2/tables/20/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/20/4.216.table +++ b/definitions/grib2/tables/20/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/20/4.217.table b/definitions/grib2/tables/20/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/20/4.217.table +++ b/definitions/grib2/tables/20/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/20/4.218.table b/definitions/grib2/tables/20/4.218.table index b5b15150b..d899242fd 100644 --- a/definitions/grib2/tables/20/4.218.table +++ b/definitions/grib2/tables/20/4.218.table @@ -24,7 +24,6 @@ 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 @@ -39,6 +38,4 @@ 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/definitions/grib2/tables/20/4.219.table b/definitions/grib2/tables/20/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/20/4.219.table +++ b/definitions/grib2/tables/20/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/20/4.220.table b/definitions/grib2/tables/20/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/20/4.220.table +++ b/definitions/grib2/tables/20/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/4.221.table b/definitions/grib2/tables/20/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/20/4.221.table +++ b/definitions/grib2/tables/20/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/4.222.table b/definitions/grib2/tables/20/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/20/4.222.table +++ b/definitions/grib2/tables/20/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/4.224.table b/definitions/grib2/tables/20/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/20/4.224.table +++ b/definitions/grib2/tables/20/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/20/4.227.table b/definitions/grib2/tables/20/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/20/4.227.table +++ b/definitions/grib2/tables/20/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/20/4.230.table b/definitions/grib2/tables/20/4.230.table index 304955feb..d2e91fadb 100644 --- a/definitions/grib2/tables/20/4.230.table +++ b/definitions/grib2/tables/20/4.230.table @@ -38,7 +38,6 @@ 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 @@ -62,9 +61,7 @@ 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 @@ -86,9 +83,7 @@ 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 @@ -374,7 +369,6 @@ 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 @@ -393,7 +387,6 @@ 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 @@ -413,14 +406,12 @@ 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 @@ -436,14 +427,11 @@ 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/definitions/grib2/tables/20/4.240.table b/definitions/grib2/tables/20/4.240.table index 400a13e26..38ae11671 100644 --- a/definitions/grib2/tables/20/4.240.table +++ b/definitions/grib2/tables/20/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/20/4.241.table b/definitions/grib2/tables/20/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/20/4.241.table +++ b/definitions/grib2/tables/20/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/20/4.242.table b/definitions/grib2/tables/20/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/20/4.242.table +++ b/definitions/grib2/tables/20/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/4.243.table b/definitions/grib2/tables/20/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/20/4.243.table +++ b/definitions/grib2/tables/20/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/20/4.3.table b/definitions/grib2/tables/20/4.3.table index cea1bef4f..8338bbd67 100644 --- a/definitions/grib2/tables/20/4.3.table +++ b/definitions/grib2/tables/20/4.3.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/20/4.4.table b/definitions/grib2/tables/20/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/20/4.4.table +++ b/definitions/grib2/tables/20/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/20/4.5.table b/definitions/grib2/tables/20/4.5.table index 33abd6293..5de5a7be7 100644 --- a/definitions/grib2/tables/20/4.5.table +++ b/definitions/grib2/tables/20/4.5.table @@ -16,13 +16,11 @@ 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) @@ -39,14 +37,11 @@ 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 sfc Lake or river bottom (-) @@ -55,18 +50,14 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -# 168-173 Reserved 174 sfc 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/definitions/grib2/tables/20/4.6.table b/definitions/grib2/tables/20/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/20/4.6.table +++ b/definitions/grib2/tables/20/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/20/4.7.table b/definitions/grib2/tables/20/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/20/4.7.table +++ b/definitions/grib2/tables/20/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/20/4.8.table b/definitions/grib2/tables/20/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/20/4.8.table +++ b/definitions/grib2/tables/20/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/4.9.table b/definitions/grib2/tables/20/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/20/4.9.table +++ b/definitions/grib2/tables/20/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/20/4.91.table b/definitions/grib2/tables/20/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/20/4.91.table +++ b/definitions/grib2/tables/20/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/20/5.0.table b/definitions/grib2/tables/20/5.0.table index 4d6cc68c8..5447eb3c8 100644 --- a/definitions/grib2/tables/20/5.0.table +++ b/definitions/grib2/tables/20/5.0.table @@ -7,15 +7,10 @@ 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) 42 42 Grid point 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 diff --git a/definitions/grib2/tables/20/5.1.table b/definitions/grib2/tables/20/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/20/5.1.table +++ b/definitions/grib2/tables/20/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/5.2.table b/definitions/grib2/tables/20/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/20/5.2.table +++ b/definitions/grib2/tables/20/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/20/5.3.table b/definitions/grib2/tables/20/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/20/5.3.table +++ b/definitions/grib2/tables/20/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/5.4.table b/definitions/grib2/tables/20/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/20/5.4.table +++ b/definitions/grib2/tables/20/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/20/5.40.table b/definitions/grib2/tables/20/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/20/5.40.table +++ b/definitions/grib2/tables/20/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/20/5.5.table b/definitions/grib2/tables/20/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/20/5.5.table +++ b/definitions/grib2/tables/20/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/5.6.table b/definitions/grib2/tables/20/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/20/5.6.table +++ b/definitions/grib2/tables/20/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/20/5.7.table b/definitions/grib2/tables/20/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/20/5.7.table +++ b/definitions/grib2/tables/20/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/21/0.0.table b/definitions/grib2/tables/21/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/21/0.0.table +++ b/definitions/grib2/tables/21/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/21/1.2.table b/definitions/grib2/tables/21/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/21/1.2.table +++ b/definitions/grib2/tables/21/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/21/1.3.table b/definitions/grib2/tables/21/1.3.table index c1a9a7b9d..7b5690caa 100644 --- a/definitions/grib2/tables/21/1.3.table +++ b/definitions/grib2/tables/21/1.3.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/21/1.4.table b/definitions/grib2/tables/21/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/21/1.4.table +++ b/definitions/grib2/tables/21/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/21/1.5.table b/definitions/grib2/tables/21/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/21/1.5.table +++ b/definitions/grib2/tables/21/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/1.6.table b/definitions/grib2/tables/21/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/21/1.6.table +++ b/definitions/grib2/tables/21/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/21/3.0.table b/definitions/grib2/tables/21/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/21/3.0.table +++ b/definitions/grib2/tables/21/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/3.1.table b/definitions/grib2/tables/21/3.1.table index dd85c0041..ad0efe7ac 100644 --- a/definitions/grib2/tables/21/3.1.table +++ b/definitions/grib2/tables/21/3.1.table @@ -5,41 +5,26 @@ 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-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/definitions/grib2/tables/21/3.10.table b/definitions/grib2/tables/21/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/21/3.10.table +++ b/definitions/grib2/tables/21/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/21/3.11.table b/definitions/grib2/tables/21/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/21/3.11.table +++ b/definitions/grib2/tables/21/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/21/3.15.table b/definitions/grib2/tables/21/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/21/3.15.table +++ b/definitions/grib2/tables/21/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/21/3.2.table b/definitions/grib2/tables/21/3.2.table index 56ffdc08e..3d47cc431 100644 --- a/definitions/grib2/tables/21/3.2.table +++ b/definitions/grib2/tables/21/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/21/3.20.table b/definitions/grib2/tables/21/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/21/3.20.table +++ b/definitions/grib2/tables/21/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/3.21.table b/definitions/grib2/tables/21/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/21/3.21.table +++ b/definitions/grib2/tables/21/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/21/3.3.table b/definitions/grib2/tables/21/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/21/3.3.table +++ b/definitions/grib2/tables/21/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/21/3.7.table b/definitions/grib2/tables/21/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/21/3.7.table +++ b/definitions/grib2/tables/21/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/21/3.8.table b/definitions/grib2/tables/21/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/21/3.8.table +++ b/definitions/grib2/tables/21/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/3.9.table b/definitions/grib2/tables/21/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/21/3.9.table +++ b/definitions/grib2/tables/21/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/21/4.0.table b/definitions/grib2/tables/21/4.0.table index 4a10fe7a0..f38c9ac5c 100644 --- a/definitions/grib2/tables/21/4.0.table +++ b/definitions/grib2/tables/21/4.0.table @@ -15,16 +15,13 @@ 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 @@ -36,9 +33,7 @@ 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 @@ -48,10 +43,8 @@ 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 @@ -67,22 +60,16 @@ 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/definitions/grib2/tables/21/4.1.0.table b/definitions/grib2/tables/21/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/21/4.1.0.table +++ b/definitions/grib2/tables/21/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/21/4.1.1.table b/definitions/grib2/tables/21/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/21/4.1.1.table +++ b/definitions/grib2/tables/21/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/4.1.10.table b/definitions/grib2/tables/21/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/21/4.1.10.table +++ b/definitions/grib2/tables/21/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/21/4.1.2.table b/definitions/grib2/tables/21/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/21/4.1.2.table +++ b/definitions/grib2/tables/21/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/21/4.1.3.table b/definitions/grib2/tables/21/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/21/4.1.3.table +++ b/definitions/grib2/tables/21/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/21/4.10.table b/definitions/grib2/tables/21/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/21/4.10.table +++ b/definitions/grib2/tables/21/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/21/4.11.table b/definitions/grib2/tables/21/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/21/4.11.table +++ b/definitions/grib2/tables/21/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/21/4.12.table b/definitions/grib2/tables/21/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/21/4.12.table +++ b/definitions/grib2/tables/21/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/4.13.table b/definitions/grib2/tables/21/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/21/4.13.table +++ b/definitions/grib2/tables/21/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/4.14.table b/definitions/grib2/tables/21/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/21/4.14.table +++ b/definitions/grib2/tables/21/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/4.15.table b/definitions/grib2/tables/21/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/21/4.15.table +++ b/definitions/grib2/tables/21/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/21/4.16.table b/definitions/grib2/tables/21/4.16.table index de3feccaf..7d6ae7eca 100644 --- a/definitions/grib2/tables/21/4.16.table +++ b/definitions/grib2/tables/21/4.16.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/21/4.2.0.0.table b/definitions/grib2/tables/21/4.2.0.0.table index 83b3e8ef1..3cd04f347 100644 --- a/definitions/grib2/tables/21/4.2.0.0.table +++ b/definitions/grib2/tables/21/4.2.0.0.table @@ -29,6 +29,4 @@ 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/definitions/grib2/tables/21/4.2.0.1.table b/definitions/grib2/tables/21/4.2.0.1.table index b4c1e8ba3..1a661773a 100644 --- a/definitions/grib2/tables/21/4.2.0.1.table +++ b/definitions/grib2/tables/21/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -121,6 +120,4 @@ 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/definitions/grib2/tables/21/4.2.0.13.table b/definitions/grib2/tables/21/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/21/4.2.0.13.table +++ b/definitions/grib2/tables/21/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/21/4.2.0.14.table b/definitions/grib2/tables/21/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/21/4.2.0.14.table +++ b/definitions/grib2/tables/21/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/4.2.0.15.table b/definitions/grib2/tables/21/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/21/4.2.0.15.table +++ b/definitions/grib2/tables/21/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/21/4.2.0.16.table b/definitions/grib2/tables/21/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/21/4.2.0.16.table +++ b/definitions/grib2/tables/21/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/21/4.2.0.18.table b/definitions/grib2/tables/21/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/21/4.2.0.18.table +++ b/definitions/grib2/tables/21/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/21/4.2.0.19.table b/definitions/grib2/tables/21/4.2.0.19.table index af9648d43..90df2dec1 100644 --- a/definitions/grib2/tables/21/4.2.0.19.table +++ b/definitions/grib2/tables/21/4.2.0.19.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/21/4.2.0.190.table b/definitions/grib2/tables/21/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/21/4.2.0.190.table +++ b/definitions/grib2/tables/21/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/21/4.2.0.191.table b/definitions/grib2/tables/21/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/21/4.2.0.191.table +++ b/definitions/grib2/tables/21/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/21/4.2.0.2.table b/definitions/grib2/tables/21/4.2.0.2.table index 8a70b2591..8651adc7c 100644 --- a/definitions/grib2/tables/21/4.2.0.2.table +++ b/definitions/grib2/tables/21/4.2.0.2.table @@ -46,6 +46,4 @@ 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/definitions/grib2/tables/21/4.2.0.20.table b/definitions/grib2/tables/21/4.2.0.20.table index bbdeef5b1..4392e7b76 100644 --- a/definitions/grib2/tables/21/4.2.0.20.table +++ b/definitions/grib2/tables/21/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -29,7 +28,6 @@ 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) @@ -42,6 +40,4 @@ 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/definitions/grib2/tables/21/4.2.0.3.table b/definitions/grib2/tables/21/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/21/4.2.0.3.table +++ b/definitions/grib2/tables/21/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/21/4.2.0.4.table b/definitions/grib2/tables/21/4.2.0.4.table index f97270456..d5024628b 100644 --- a/definitions/grib2/tables/21/4.2.0.4.table +++ b/definitions/grib2/tables/21/4.2.0.4.table @@ -14,11 +14,8 @@ 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/definitions/grib2/tables/21/4.2.0.5.table b/definitions/grib2/tables/21/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/21/4.2.0.5.table +++ b/definitions/grib2/tables/21/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/21/4.2.0.6.table b/definitions/grib2/tables/21/4.2.0.6.table index 0450ec194..4e5d7ee4c 100644 --- a/definitions/grib2/tables/21/4.2.0.6.table +++ b/definitions/grib2/tables/21/4.2.0.6.table @@ -40,10 +40,7 @@ 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/definitions/grib2/tables/21/4.2.0.7.table b/definitions/grib2/tables/21/4.2.0.7.table index 6289d8b20..2c5b697db 100644 --- a/definitions/grib2/tables/21/4.2.0.7.table +++ b/definitions/grib2/tables/21/4.2.0.7.table @@ -19,6 +19,4 @@ 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/definitions/grib2/tables/21/4.2.1.0.table b/definitions/grib2/tables/21/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/21/4.2.1.0.table +++ b/definitions/grib2/tables/21/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/21/4.2.1.1.table b/definitions/grib2/tables/21/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/21/4.2.1.1.table +++ b/definitions/grib2/tables/21/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/4.2.10.0.table b/definitions/grib2/tables/21/4.2.10.0.table index 3611abd9a..5014980aa 100644 --- a/definitions/grib2/tables/21/4.2.10.0.table +++ b/definitions/grib2/tables/21/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/21/4.2.10.1.table b/definitions/grib2/tables/21/4.2.10.1.table index 237e6865a..926267e52 100644 --- a/definitions/grib2/tables/21/4.2.10.1.table +++ b/definitions/grib2/tables/21/4.2.10.1.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/21/4.2.10.191.table b/definitions/grib2/tables/21/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/21/4.2.10.191.table +++ b/definitions/grib2/tables/21/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/21/4.2.10.2.table b/definitions/grib2/tables/21/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/21/4.2.10.2.table +++ b/definitions/grib2/tables/21/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/21/4.2.10.3.table b/definitions/grib2/tables/21/4.2.10.3.table index b01d7ae46..f6229ac12 100644 --- a/definitions/grib2/tables/21/4.2.10.3.table +++ b/definitions/grib2/tables/21/4.2.10.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/4.2.10.4.table b/definitions/grib2/tables/21/4.2.10.4.table index d5615ae26..15cc8b4b3 100644 --- a/definitions/grib2/tables/21/4.2.10.4.table +++ b/definitions/grib2/tables/21/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/21/4.2.2.0.table b/definitions/grib2/tables/21/4.2.2.0.table index b253cac22..090bbb64a 100644 --- a/definitions/grib2/tables/21/4.2.2.0.table +++ b/definitions/grib2/tables/21/4.2.2.0.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/21/4.2.2.3.table b/definitions/grib2/tables/21/4.2.2.3.table index 2674e9f42..9699073e8 100644 --- a/definitions/grib2/tables/21/4.2.2.3.table +++ b/definitions/grib2/tables/21/4.2.2.3.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/21/4.2.2.4.table b/definitions/grib2/tables/21/4.2.2.4.table index ceb761557..3ee2176f6 100644 --- a/definitions/grib2/tables/21/4.2.2.4.table +++ b/definitions/grib2/tables/21/4.2.2.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/21/4.2.3.0.table b/definitions/grib2/tables/21/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/21/4.2.3.0.table +++ b/definitions/grib2/tables/21/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/21/4.2.3.1.table b/definitions/grib2/tables/21/4.2.3.1.table index 6f24b86ff..603828632 100644 --- a/definitions/grib2/tables/21/4.2.3.1.table +++ b/definitions/grib2/tables/21/4.2.3.1.table @@ -23,10 +23,7 @@ 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/definitions/grib2/tables/21/4.201.table b/definitions/grib2/tables/21/4.201.table index fa173c4e0..7787ce735 100644 --- a/definitions/grib2/tables/21/4.201.table +++ b/definitions/grib2/tables/21/4.201.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/21/4.202.table b/definitions/grib2/tables/21/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/21/4.202.table +++ b/definitions/grib2/tables/21/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/21/4.203.table b/definitions/grib2/tables/21/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/21/4.203.table +++ b/definitions/grib2/tables/21/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/21/4.204.table b/definitions/grib2/tables/21/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/21/4.204.table +++ b/definitions/grib2/tables/21/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/21/4.205.table b/definitions/grib2/tables/21/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/21/4.205.table +++ b/definitions/grib2/tables/21/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/4.206.table b/definitions/grib2/tables/21/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/21/4.206.table +++ b/definitions/grib2/tables/21/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/4.207.table b/definitions/grib2/tables/21/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/21/4.207.table +++ b/definitions/grib2/tables/21/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/21/4.208.table b/definitions/grib2/tables/21/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/21/4.208.table +++ b/definitions/grib2/tables/21/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/21/4.209.table b/definitions/grib2/tables/21/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/21/4.209.table +++ b/definitions/grib2/tables/21/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/21/4.210.table b/definitions/grib2/tables/21/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/21/4.210.table +++ b/definitions/grib2/tables/21/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/4.211.table b/definitions/grib2/tables/21/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/21/4.211.table +++ b/definitions/grib2/tables/21/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/4.212.table b/definitions/grib2/tables/21/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/21/4.212.table +++ b/definitions/grib2/tables/21/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/21/4.213.table b/definitions/grib2/tables/21/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/21/4.213.table +++ b/definitions/grib2/tables/21/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/21/4.215.table b/definitions/grib2/tables/21/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/21/4.215.table +++ b/definitions/grib2/tables/21/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/21/4.216.table b/definitions/grib2/tables/21/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/21/4.216.table +++ b/definitions/grib2/tables/21/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/21/4.217.table b/definitions/grib2/tables/21/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/21/4.217.table +++ b/definitions/grib2/tables/21/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/21/4.218.table b/definitions/grib2/tables/21/4.218.table index b5b15150b..d899242fd 100644 --- a/definitions/grib2/tables/21/4.218.table +++ b/definitions/grib2/tables/21/4.218.table @@ -24,7 +24,6 @@ 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 @@ -39,6 +38,4 @@ 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/definitions/grib2/tables/21/4.219.table b/definitions/grib2/tables/21/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/21/4.219.table +++ b/definitions/grib2/tables/21/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/21/4.220.table b/definitions/grib2/tables/21/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/21/4.220.table +++ b/definitions/grib2/tables/21/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/4.221.table b/definitions/grib2/tables/21/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/21/4.221.table +++ b/definitions/grib2/tables/21/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/4.222.table b/definitions/grib2/tables/21/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/21/4.222.table +++ b/definitions/grib2/tables/21/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/4.224.table b/definitions/grib2/tables/21/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/21/4.224.table +++ b/definitions/grib2/tables/21/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/21/4.227.table b/definitions/grib2/tables/21/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/21/4.227.table +++ b/definitions/grib2/tables/21/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/21/4.230.table b/definitions/grib2/tables/21/4.230.table index 1602eab73..62cd3d888 100644 --- a/definitions/grib2/tables/21/4.230.table +++ b/definitions/grib2/tables/21/4.230.table @@ -38,7 +38,6 @@ 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 @@ -62,9 +61,7 @@ 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 @@ -86,9 +83,7 @@ 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 @@ -374,7 +369,6 @@ 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 @@ -393,7 +387,6 @@ 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 @@ -413,14 +406,12 @@ 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 @@ -436,14 +427,11 @@ 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/definitions/grib2/tables/21/4.233.table b/definitions/grib2/tables/21/4.233.table index eb45c2280..e9d2ed275 100644 --- a/definitions/grib2/tables/21/4.233.table +++ b/definitions/grib2/tables/21/4.233.table @@ -38,7 +38,6 @@ 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 @@ -62,9 +61,7 @@ 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 @@ -86,9 +83,7 @@ 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 @@ -374,7 +369,6 @@ 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 @@ -393,7 +387,6 @@ 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 @@ -413,14 +406,12 @@ 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 @@ -436,14 +427,11 @@ 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/definitions/grib2/tables/21/4.238.table b/definitions/grib2/tables/21/4.238.table index 6fbe5a08c..e5b6476c0 100644 --- a/definitions/grib2/tables/21/4.238.table +++ b/definitions/grib2/tables/21/4.238.table @@ -11,6 +11,4 @@ 9 9 Fossil-fuel 10 10 Wetlands 11 11 Oceans -# 12-191 Reserved -# 192-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/21/4.240.table b/definitions/grib2/tables/21/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/21/4.240.table +++ b/definitions/grib2/tables/21/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/21/4.241.table b/definitions/grib2/tables/21/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/21/4.241.table +++ b/definitions/grib2/tables/21/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/21/4.242.table b/definitions/grib2/tables/21/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/21/4.242.table +++ b/definitions/grib2/tables/21/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/4.243.table b/definitions/grib2/tables/21/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/21/4.243.table +++ b/definitions/grib2/tables/21/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/21/4.244.table b/definitions/grib2/tables/21/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/21/4.244.table +++ b/definitions/grib2/tables/21/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/4.3.table b/definitions/grib2/tables/21/4.3.table index cea1bef4f..8338bbd67 100644 --- a/definitions/grib2/tables/21/4.3.table +++ b/definitions/grib2/tables/21/4.3.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/21/4.4.table b/definitions/grib2/tables/21/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/21/4.4.table +++ b/definitions/grib2/tables/21/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/21/4.5.table b/definitions/grib2/tables/21/4.5.table index 33abd6293..5de5a7be7 100644 --- a/definitions/grib2/tables/21/4.5.table +++ b/definitions/grib2/tables/21/4.5.table @@ -16,13 +16,11 @@ 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) @@ -39,14 +37,11 @@ 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 sfc Lake or river bottom (-) @@ -55,18 +50,14 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -# 168-173 Reserved 174 sfc 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/definitions/grib2/tables/21/4.6.table b/definitions/grib2/tables/21/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/21/4.6.table +++ b/definitions/grib2/tables/21/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/21/4.7.table b/definitions/grib2/tables/21/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/21/4.7.table +++ b/definitions/grib2/tables/21/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/21/4.8.table b/definitions/grib2/tables/21/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/21/4.8.table +++ b/definitions/grib2/tables/21/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/4.9.table b/definitions/grib2/tables/21/4.9.table index 0ce312dd1..a42225b62 100644 --- a/definitions/grib2/tables/21/4.9.table +++ b/definitions/grib2/tables/21/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/21/4.91.table b/definitions/grib2/tables/21/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/21/4.91.table +++ b/definitions/grib2/tables/21/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/21/5.0.table b/definitions/grib2/tables/21/5.0.table index 4d6cc68c8..5447eb3c8 100644 --- a/definitions/grib2/tables/21/5.0.table +++ b/definitions/grib2/tables/21/5.0.table @@ -7,15 +7,10 @@ 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) 42 42 Grid point 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 diff --git a/definitions/grib2/tables/21/5.1.table b/definitions/grib2/tables/21/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/21/5.1.table +++ b/definitions/grib2/tables/21/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/5.2.table b/definitions/grib2/tables/21/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/21/5.2.table +++ b/definitions/grib2/tables/21/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/21/5.3.table b/definitions/grib2/tables/21/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/21/5.3.table +++ b/definitions/grib2/tables/21/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/5.4.table b/definitions/grib2/tables/21/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/21/5.4.table +++ b/definitions/grib2/tables/21/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/21/5.40.table b/definitions/grib2/tables/21/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/21/5.40.table +++ b/definitions/grib2/tables/21/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/21/5.5.table b/definitions/grib2/tables/21/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/21/5.5.table +++ b/definitions/grib2/tables/21/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/5.6.table b/definitions/grib2/tables/21/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/21/5.6.table +++ b/definitions/grib2/tables/21/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/21/5.7.table b/definitions/grib2/tables/21/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/21/5.7.table +++ b/definitions/grib2/tables/21/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/22/0.0.table b/definitions/grib2/tables/22/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/22/0.0.table +++ b/definitions/grib2/tables/22/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/22/1.2.table b/definitions/grib2/tables/22/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/22/1.2.table +++ b/definitions/grib2/tables/22/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/22/1.3.table b/definitions/grib2/tables/22/1.3.table index 5e2e59087..f82841612 100644 --- a/definitions/grib2/tables/22/1.3.table +++ b/definitions/grib2/tables/22/1.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/22/1.4.table b/definitions/grib2/tables/22/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/22/1.4.table +++ b/definitions/grib2/tables/22/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/22/1.5.table b/definitions/grib2/tables/22/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/22/1.5.table +++ b/definitions/grib2/tables/22/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/1.6.table b/definitions/grib2/tables/22/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/22/1.6.table +++ b/definitions/grib2/tables/22/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/22/3.0.table b/definitions/grib2/tables/22/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/22/3.0.table +++ b/definitions/grib2/tables/22/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/3.1.table b/definitions/grib2/tables/22/3.1.table index 41da4c59c..c33ecc3b4 100644 --- a/definitions/grib2/tables/22/3.1.table +++ b/definitions/grib2/tables/22/3.1.table @@ -5,50 +5,31 @@ 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 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/definitions/grib2/tables/22/3.10.table b/definitions/grib2/tables/22/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/22/3.10.table +++ b/definitions/grib2/tables/22/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/22/3.11.table b/definitions/grib2/tables/22/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/22/3.11.table +++ b/definitions/grib2/tables/22/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/22/3.15.table b/definitions/grib2/tables/22/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/22/3.15.table +++ b/definitions/grib2/tables/22/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/22/3.2.table b/definitions/grib2/tables/22/3.2.table index 56ffdc08e..3d47cc431 100644 --- a/definitions/grib2/tables/22/3.2.table +++ b/definitions/grib2/tables/22/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/22/3.20.table b/definitions/grib2/tables/22/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/22/3.20.table +++ b/definitions/grib2/tables/22/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/3.21.table b/definitions/grib2/tables/22/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/22/3.21.table +++ b/definitions/grib2/tables/22/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/22/3.25.table b/definitions/grib2/tables/22/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/22/3.25.table +++ b/definitions/grib2/tables/22/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/22/3.3.table b/definitions/grib2/tables/22/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/22/3.3.table +++ b/definitions/grib2/tables/22/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/22/3.7.table b/definitions/grib2/tables/22/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/22/3.7.table +++ b/definitions/grib2/tables/22/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/22/3.8.table b/definitions/grib2/tables/22/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/22/3.8.table +++ b/definitions/grib2/tables/22/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/3.9.table b/definitions/grib2/tables/22/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/22/3.9.table +++ b/definitions/grib2/tables/22/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/22/4.0.table b/definitions/grib2/tables/22/4.0.table index fb919290d..83aaeeecf 100644 --- a/definitions/grib2/tables/22/4.0.table +++ b/definitions/grib2/tables/22/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -47,29 +42,21 @@ 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/definitions/grib2/tables/22/4.1.0.table b/definitions/grib2/tables/22/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/22/4.1.0.table +++ b/definitions/grib2/tables/22/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/22/4.1.1.table b/definitions/grib2/tables/22/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/22/4.1.1.table +++ b/definitions/grib2/tables/22/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/4.1.10.table b/definitions/grib2/tables/22/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/22/4.1.10.table +++ b/definitions/grib2/tables/22/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/22/4.1.2.table b/definitions/grib2/tables/22/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/22/4.1.2.table +++ b/definitions/grib2/tables/22/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/22/4.1.3.table b/definitions/grib2/tables/22/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/22/4.1.3.table +++ b/definitions/grib2/tables/22/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/22/4.10.table b/definitions/grib2/tables/22/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/22/4.10.table +++ b/definitions/grib2/tables/22/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/22/4.11.table b/definitions/grib2/tables/22/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/22/4.11.table +++ b/definitions/grib2/tables/22/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/22/4.12.table b/definitions/grib2/tables/22/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/22/4.12.table +++ b/definitions/grib2/tables/22/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/4.13.table b/definitions/grib2/tables/22/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/22/4.13.table +++ b/definitions/grib2/tables/22/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/4.14.table b/definitions/grib2/tables/22/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/22/4.14.table +++ b/definitions/grib2/tables/22/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/4.15.table b/definitions/grib2/tables/22/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/22/4.15.table +++ b/definitions/grib2/tables/22/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/22/4.16.table b/definitions/grib2/tables/22/4.16.table index de3feccaf..7d6ae7eca 100644 --- a/definitions/grib2/tables/22/4.16.table +++ b/definitions/grib2/tables/22/4.16.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/22/4.2.0.0.table b/definitions/grib2/tables/22/4.2.0.0.table index 83b3e8ef1..3cd04f347 100644 --- a/definitions/grib2/tables/22/4.2.0.0.table +++ b/definitions/grib2/tables/22/4.2.0.0.table @@ -29,6 +29,4 @@ 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/definitions/grib2/tables/22/4.2.0.1.table b/definitions/grib2/tables/22/4.2.0.1.table index b4c1e8ba3..1a661773a 100644 --- a/definitions/grib2/tables/22/4.2.0.1.table +++ b/definitions/grib2/tables/22/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -121,6 +120,4 @@ 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/definitions/grib2/tables/22/4.2.0.13.table b/definitions/grib2/tables/22/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/22/4.2.0.13.table +++ b/definitions/grib2/tables/22/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/22/4.2.0.14.table b/definitions/grib2/tables/22/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/22/4.2.0.14.table +++ b/definitions/grib2/tables/22/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/4.2.0.15.table b/definitions/grib2/tables/22/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/22/4.2.0.15.table +++ b/definitions/grib2/tables/22/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/22/4.2.0.16.table b/definitions/grib2/tables/22/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/22/4.2.0.16.table +++ b/definitions/grib2/tables/22/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/22/4.2.0.18.table b/definitions/grib2/tables/22/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/22/4.2.0.18.table +++ b/definitions/grib2/tables/22/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/22/4.2.0.19.table b/definitions/grib2/tables/22/4.2.0.19.table index af9648d43..90df2dec1 100644 --- a/definitions/grib2/tables/22/4.2.0.19.table +++ b/definitions/grib2/tables/22/4.2.0.19.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/22/4.2.0.190.table b/definitions/grib2/tables/22/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/22/4.2.0.190.table +++ b/definitions/grib2/tables/22/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/22/4.2.0.191.table b/definitions/grib2/tables/22/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/22/4.2.0.191.table +++ b/definitions/grib2/tables/22/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/22/4.2.0.2.table b/definitions/grib2/tables/22/4.2.0.2.table index 8a70b2591..8651adc7c 100644 --- a/definitions/grib2/tables/22/4.2.0.2.table +++ b/definitions/grib2/tables/22/4.2.0.2.table @@ -46,6 +46,4 @@ 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/definitions/grib2/tables/22/4.2.0.20.table b/definitions/grib2/tables/22/4.2.0.20.table index 214498114..4b311f5b7 100644 --- a/definitions/grib2/tables/22/4.2.0.20.table +++ b/definitions/grib2/tables/22/4.2.0.20.table @@ -17,7 +17,6 @@ 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) @@ -44,7 +43,6 @@ 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) @@ -57,6 +55,4 @@ 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/definitions/grib2/tables/22/4.2.0.3.table b/definitions/grib2/tables/22/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/22/4.2.0.3.table +++ b/definitions/grib2/tables/22/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/22/4.2.0.4.table b/definitions/grib2/tables/22/4.2.0.4.table index f97270456..d5024628b 100644 --- a/definitions/grib2/tables/22/4.2.0.4.table +++ b/definitions/grib2/tables/22/4.2.0.4.table @@ -14,11 +14,8 @@ 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/definitions/grib2/tables/22/4.2.0.5.table b/definitions/grib2/tables/22/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/22/4.2.0.5.table +++ b/definitions/grib2/tables/22/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/22/4.2.0.6.table b/definitions/grib2/tables/22/4.2.0.6.table index 0450ec194..4e5d7ee4c 100644 --- a/definitions/grib2/tables/22/4.2.0.6.table +++ b/definitions/grib2/tables/22/4.2.0.6.table @@ -40,10 +40,7 @@ 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/definitions/grib2/tables/22/4.2.0.7.table b/definitions/grib2/tables/22/4.2.0.7.table index 6289d8b20..2c5b697db 100644 --- a/definitions/grib2/tables/22/4.2.0.7.table +++ b/definitions/grib2/tables/22/4.2.0.7.table @@ -19,6 +19,4 @@ 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/definitions/grib2/tables/22/4.2.1.0.table b/definitions/grib2/tables/22/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/22/4.2.1.0.table +++ b/definitions/grib2/tables/22/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/22/4.2.1.1.table b/definitions/grib2/tables/22/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/22/4.2.1.1.table +++ b/definitions/grib2/tables/22/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/4.2.10.0.table b/definitions/grib2/tables/22/4.2.10.0.table index 41a8c1f41..15f6163cb 100644 --- a/definitions/grib2/tables/22/4.2.10.0.table +++ b/definitions/grib2/tables/22/4.2.10.0.table @@ -55,7 +55,6 @@ 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 (-) @@ -65,6 +64,4 @@ 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/definitions/grib2/tables/22/4.2.10.1.table b/definitions/grib2/tables/22/4.2.10.1.table index 237e6865a..926267e52 100644 --- a/definitions/grib2/tables/22/4.2.10.1.table +++ b/definitions/grib2/tables/22/4.2.10.1.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/22/4.2.10.191.table b/definitions/grib2/tables/22/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/22/4.2.10.191.table +++ b/definitions/grib2/tables/22/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/22/4.2.10.2.table b/definitions/grib2/tables/22/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/22/4.2.10.2.table +++ b/definitions/grib2/tables/22/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/22/4.2.10.3.table b/definitions/grib2/tables/22/4.2.10.3.table index b01d7ae46..f6229ac12 100644 --- a/definitions/grib2/tables/22/4.2.10.3.table +++ b/definitions/grib2/tables/22/4.2.10.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/4.2.10.4.table b/definitions/grib2/tables/22/4.2.10.4.table index 66e9a323c..64c706b14 100644 --- a/definitions/grib2/tables/22/4.2.10.4.table +++ b/definitions/grib2/tables/22/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -19,6 +18,4 @@ 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/definitions/grib2/tables/22/4.2.2.0.table b/definitions/grib2/tables/22/4.2.2.0.table index b253cac22..090bbb64a 100644 --- a/definitions/grib2/tables/22/4.2.2.0.table +++ b/definitions/grib2/tables/22/4.2.2.0.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/22/4.2.2.3.table b/definitions/grib2/tables/22/4.2.2.3.table index 2674e9f42..9699073e8 100644 --- a/definitions/grib2/tables/22/4.2.2.3.table +++ b/definitions/grib2/tables/22/4.2.2.3.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/22/4.2.2.4.table b/definitions/grib2/tables/22/4.2.2.4.table index ceb761557..3ee2176f6 100644 --- a/definitions/grib2/tables/22/4.2.2.4.table +++ b/definitions/grib2/tables/22/4.2.2.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/22/4.2.3.0.table b/definitions/grib2/tables/22/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/22/4.2.3.0.table +++ b/definitions/grib2/tables/22/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/22/4.2.3.1.table b/definitions/grib2/tables/22/4.2.3.1.table index 365e59a22..a46651ebe 100644 --- a/definitions/grib2/tables/22/4.2.3.1.table +++ b/definitions/grib2/tables/22/4.2.3.1.table @@ -23,13 +23,9 @@ 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/definitions/grib2/tables/22/4.201.table b/definitions/grib2/tables/22/4.201.table index 0dca20884..a902d6083 100644 --- a/definitions/grib2/tables/22/4.201.table +++ b/definitions/grib2/tables/22/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/22/4.202.table b/definitions/grib2/tables/22/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/22/4.202.table +++ b/definitions/grib2/tables/22/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/22/4.203.table b/definitions/grib2/tables/22/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/22/4.203.table +++ b/definitions/grib2/tables/22/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/22/4.204.table b/definitions/grib2/tables/22/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/22/4.204.table +++ b/definitions/grib2/tables/22/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/22/4.205.table b/definitions/grib2/tables/22/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/22/4.205.table +++ b/definitions/grib2/tables/22/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/4.206.table b/definitions/grib2/tables/22/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/22/4.206.table +++ b/definitions/grib2/tables/22/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/4.207.table b/definitions/grib2/tables/22/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/22/4.207.table +++ b/definitions/grib2/tables/22/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/22/4.208.table b/definitions/grib2/tables/22/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/22/4.208.table +++ b/definitions/grib2/tables/22/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/22/4.209.table b/definitions/grib2/tables/22/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/22/4.209.table +++ b/definitions/grib2/tables/22/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/22/4.210.table b/definitions/grib2/tables/22/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/22/4.210.table +++ b/definitions/grib2/tables/22/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/4.211.table b/definitions/grib2/tables/22/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/22/4.211.table +++ b/definitions/grib2/tables/22/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/4.212.table b/definitions/grib2/tables/22/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/22/4.212.table +++ b/definitions/grib2/tables/22/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/22/4.213.table b/definitions/grib2/tables/22/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/22/4.213.table +++ b/definitions/grib2/tables/22/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/22/4.215.table b/definitions/grib2/tables/22/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/22/4.215.table +++ b/definitions/grib2/tables/22/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/22/4.216.table b/definitions/grib2/tables/22/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/22/4.216.table +++ b/definitions/grib2/tables/22/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/22/4.217.table b/definitions/grib2/tables/22/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/22/4.217.table +++ b/definitions/grib2/tables/22/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/22/4.218.table b/definitions/grib2/tables/22/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/22/4.218.table +++ b/definitions/grib2/tables/22/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/22/4.219.table b/definitions/grib2/tables/22/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/22/4.219.table +++ b/definitions/grib2/tables/22/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/22/4.220.table b/definitions/grib2/tables/22/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/22/4.220.table +++ b/definitions/grib2/tables/22/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/4.221.table b/definitions/grib2/tables/22/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/22/4.221.table +++ b/definitions/grib2/tables/22/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/4.222.table b/definitions/grib2/tables/22/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/22/4.222.table +++ b/definitions/grib2/tables/22/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/4.224.table b/definitions/grib2/tables/22/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/22/4.224.table +++ b/definitions/grib2/tables/22/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/22/4.227.table b/definitions/grib2/tables/22/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/22/4.227.table +++ b/definitions/grib2/tables/22/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/22/4.230.table b/definitions/grib2/tables/22/4.230.table index 183dff8cb..753454a2e 100644 --- a/definitions/grib2/tables/22/4.230.table +++ b/definitions/grib2/tables/22/4.230.table @@ -46,7 +46,6 @@ 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 @@ -101,10 +100,8 @@ 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 @@ -127,9 +124,7 @@ 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 @@ -417,12 +412,10 @@ 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 @@ -451,7 +444,6 @@ 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 @@ -471,18 +463,14 @@ 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 @@ -498,14 +486,11 @@ 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/definitions/grib2/tables/22/4.233.table b/definitions/grib2/tables/22/4.233.table index 48a9fc4dc..edf262e8d 100644 --- a/definitions/grib2/tables/22/4.233.table +++ b/definitions/grib2/tables/22/4.233.table @@ -46,7 +46,6 @@ 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 @@ -101,10 +100,8 @@ 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 @@ -127,9 +124,7 @@ 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 @@ -417,12 +412,10 @@ 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 @@ -451,7 +444,6 @@ 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 @@ -471,18 +463,14 @@ 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 @@ -498,14 +486,11 @@ 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/definitions/grib2/tables/22/4.240.table b/definitions/grib2/tables/22/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/22/4.240.table +++ b/definitions/grib2/tables/22/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/22/4.241.table b/definitions/grib2/tables/22/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/22/4.241.table +++ b/definitions/grib2/tables/22/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/22/4.242.table b/definitions/grib2/tables/22/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/22/4.242.table +++ b/definitions/grib2/tables/22/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/4.243.table b/definitions/grib2/tables/22/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/22/4.243.table +++ b/definitions/grib2/tables/22/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/22/4.244.table b/definitions/grib2/tables/22/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/22/4.244.table +++ b/definitions/grib2/tables/22/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/4.3.table b/definitions/grib2/tables/22/4.3.table index cea1bef4f..8338bbd67 100644 --- a/definitions/grib2/tables/22/4.3.table +++ b/definitions/grib2/tables/22/4.3.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/22/4.4.table b/definitions/grib2/tables/22/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/22/4.4.table +++ b/definitions/grib2/tables/22/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/22/4.5.table b/definitions/grib2/tables/22/4.5.table index 33abd6293..5de5a7be7 100644 --- a/definitions/grib2/tables/22/4.5.table +++ b/definitions/grib2/tables/22/4.5.table @@ -16,13 +16,11 @@ 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) @@ -39,14 +37,11 @@ 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 sfc Lake or river bottom (-) @@ -55,18 +50,14 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -# 168-173 Reserved 174 sfc 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/definitions/grib2/tables/22/4.6.table b/definitions/grib2/tables/22/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/22/4.6.table +++ b/definitions/grib2/tables/22/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/22/4.7.table b/definitions/grib2/tables/22/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/22/4.7.table +++ b/definitions/grib2/tables/22/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/22/4.8.table b/definitions/grib2/tables/22/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/22/4.8.table +++ b/definitions/grib2/tables/22/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/4.9.table b/definitions/grib2/tables/22/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/22/4.9.table +++ b/definitions/grib2/tables/22/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/22/4.91.table b/definitions/grib2/tables/22/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/22/4.91.table +++ b/definitions/grib2/tables/22/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/22/5.0.table b/definitions/grib2/tables/22/5.0.table index 7fa534a0f..9f412db60 100644 --- a/definitions/grib2/tables/22/5.0.table +++ b/definitions/grib2/tables/22/5.0.table @@ -4,21 +4,14 @@ 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 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 diff --git a/definitions/grib2/tables/22/5.1.table b/definitions/grib2/tables/22/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/22/5.1.table +++ b/definitions/grib2/tables/22/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/5.2.table b/definitions/grib2/tables/22/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/22/5.2.table +++ b/definitions/grib2/tables/22/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/22/5.25.table b/definitions/grib2/tables/22/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/22/5.25.table +++ b/definitions/grib2/tables/22/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/22/5.26.table b/definitions/grib2/tables/22/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/22/5.26.table +++ b/definitions/grib2/tables/22/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/22/5.3.table b/definitions/grib2/tables/22/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/22/5.3.table +++ b/definitions/grib2/tables/22/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/5.4.table b/definitions/grib2/tables/22/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/22/5.4.table +++ b/definitions/grib2/tables/22/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/22/5.40.table b/definitions/grib2/tables/22/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/22/5.40.table +++ b/definitions/grib2/tables/22/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/22/5.5.table b/definitions/grib2/tables/22/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/22/5.5.table +++ b/definitions/grib2/tables/22/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/5.6.table b/definitions/grib2/tables/22/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/22/5.6.table +++ b/definitions/grib2/tables/22/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/22/5.7.table b/definitions/grib2/tables/22/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/22/5.7.table +++ b/definitions/grib2/tables/22/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/23/0.0.table b/definitions/grib2/tables/23/0.0.table index 2c5afceb4..be7284feb 100644 --- a/definitions/grib2/tables/23/0.0.table +++ b/definitions/grib2/tables/23/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/23/1.2.table b/definitions/grib2/tables/23/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/23/1.2.table +++ b/definitions/grib2/tables/23/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/23/1.3.table b/definitions/grib2/tables/23/1.3.table index 5e2e59087..f82841612 100644 --- a/definitions/grib2/tables/23/1.3.table +++ b/definitions/grib2/tables/23/1.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/23/1.4.table b/definitions/grib2/tables/23/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/23/1.4.table +++ b/definitions/grib2/tables/23/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/23/1.5.table b/definitions/grib2/tables/23/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/23/1.5.table +++ b/definitions/grib2/tables/23/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/1.6.table b/definitions/grib2/tables/23/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/23/1.6.table +++ b/definitions/grib2/tables/23/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/23/3.0.table b/definitions/grib2/tables/23/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/23/3.0.table +++ b/definitions/grib2/tables/23/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/3.1.table b/definitions/grib2/tables/23/3.1.table index 41da4c59c..c33ecc3b4 100644 --- a/definitions/grib2/tables/23/3.1.table +++ b/definitions/grib2/tables/23/3.1.table @@ -5,50 +5,31 @@ 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 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/definitions/grib2/tables/23/3.10.table b/definitions/grib2/tables/23/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/23/3.10.table +++ b/definitions/grib2/tables/23/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/23/3.11.table b/definitions/grib2/tables/23/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/23/3.11.table +++ b/definitions/grib2/tables/23/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/23/3.15.table b/definitions/grib2/tables/23/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/23/3.15.table +++ b/definitions/grib2/tables/23/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/23/3.2.table b/definitions/grib2/tables/23/3.2.table index 56ffdc08e..3d47cc431 100644 --- a/definitions/grib2/tables/23/3.2.table +++ b/definitions/grib2/tables/23/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/23/3.20.table b/definitions/grib2/tables/23/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/23/3.20.table +++ b/definitions/grib2/tables/23/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/3.21.table b/definitions/grib2/tables/23/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/23/3.21.table +++ b/definitions/grib2/tables/23/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/23/3.25.table b/definitions/grib2/tables/23/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/23/3.25.table +++ b/definitions/grib2/tables/23/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/23/3.3.table b/definitions/grib2/tables/23/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/23/3.3.table +++ b/definitions/grib2/tables/23/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/23/3.7.table b/definitions/grib2/tables/23/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/23/3.7.table +++ b/definitions/grib2/tables/23/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/23/3.8.table b/definitions/grib2/tables/23/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/23/3.8.table +++ b/definitions/grib2/tables/23/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/3.9.table b/definitions/grib2/tables/23/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/23/3.9.table +++ b/definitions/grib2/tables/23/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/23/4.0.table b/definitions/grib2/tables/23/4.0.table index fb919290d..83aaeeecf 100644 --- a/definitions/grib2/tables/23/4.0.table +++ b/definitions/grib2/tables/23/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -47,29 +42,21 @@ 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/definitions/grib2/tables/23/4.1.0.table b/definitions/grib2/tables/23/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/23/4.1.0.table +++ b/definitions/grib2/tables/23/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/23/4.1.1.table b/definitions/grib2/tables/23/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/23/4.1.1.table +++ b/definitions/grib2/tables/23/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/4.1.10.table b/definitions/grib2/tables/23/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/23/4.1.10.table +++ b/definitions/grib2/tables/23/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/23/4.1.2.table b/definitions/grib2/tables/23/4.1.2.table index e74126645..4444f8d72 100644 --- a/definitions/grib2/tables/23/4.1.2.table +++ b/definitions/grib2/tables/23/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/23/4.1.3.table b/definitions/grib2/tables/23/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/23/4.1.3.table +++ b/definitions/grib2/tables/23/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/23/4.10.table b/definitions/grib2/tables/23/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/23/4.10.table +++ b/definitions/grib2/tables/23/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/23/4.11.table b/definitions/grib2/tables/23/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/23/4.11.table +++ b/definitions/grib2/tables/23/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/23/4.12.table b/definitions/grib2/tables/23/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/23/4.12.table +++ b/definitions/grib2/tables/23/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/4.13.table b/definitions/grib2/tables/23/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/23/4.13.table +++ b/definitions/grib2/tables/23/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/4.14.table b/definitions/grib2/tables/23/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/23/4.14.table +++ b/definitions/grib2/tables/23/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/4.15.table b/definitions/grib2/tables/23/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/23/4.15.table +++ b/definitions/grib2/tables/23/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/23/4.16.table b/definitions/grib2/tables/23/4.16.table index de3feccaf..7d6ae7eca 100644 --- a/definitions/grib2/tables/23/4.16.table +++ b/definitions/grib2/tables/23/4.16.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/23/4.2.0.0.table b/definitions/grib2/tables/23/4.2.0.0.table index 83b3e8ef1..3cd04f347 100644 --- a/definitions/grib2/tables/23/4.2.0.0.table +++ b/definitions/grib2/tables/23/4.2.0.0.table @@ -29,6 +29,4 @@ 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/definitions/grib2/tables/23/4.2.0.1.table b/definitions/grib2/tables/23/4.2.0.1.table index b4c1e8ba3..1a661773a 100644 --- a/definitions/grib2/tables/23/4.2.0.1.table +++ b/definitions/grib2/tables/23/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -121,6 +120,4 @@ 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/definitions/grib2/tables/23/4.2.0.13.table b/definitions/grib2/tables/23/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/23/4.2.0.13.table +++ b/definitions/grib2/tables/23/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/23/4.2.0.14.table b/definitions/grib2/tables/23/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/23/4.2.0.14.table +++ b/definitions/grib2/tables/23/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/4.2.0.15.table b/definitions/grib2/tables/23/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/23/4.2.0.15.table +++ b/definitions/grib2/tables/23/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/23/4.2.0.16.table b/definitions/grib2/tables/23/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/23/4.2.0.16.table +++ b/definitions/grib2/tables/23/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/23/4.2.0.18.table b/definitions/grib2/tables/23/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/23/4.2.0.18.table +++ b/definitions/grib2/tables/23/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/23/4.2.0.19.table b/definitions/grib2/tables/23/4.2.0.19.table index af9648d43..90df2dec1 100644 --- a/definitions/grib2/tables/23/4.2.0.19.table +++ b/definitions/grib2/tables/23/4.2.0.19.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/23/4.2.0.190.table b/definitions/grib2/tables/23/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/23/4.2.0.190.table +++ b/definitions/grib2/tables/23/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/23/4.2.0.191.table b/definitions/grib2/tables/23/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/23/4.2.0.191.table +++ b/definitions/grib2/tables/23/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/23/4.2.0.2.table b/definitions/grib2/tables/23/4.2.0.2.table index 8a70b2591..8651adc7c 100644 --- a/definitions/grib2/tables/23/4.2.0.2.table +++ b/definitions/grib2/tables/23/4.2.0.2.table @@ -46,6 +46,4 @@ 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/definitions/grib2/tables/23/4.2.0.20.table b/definitions/grib2/tables/23/4.2.0.20.table index 214498114..4b311f5b7 100644 --- a/definitions/grib2/tables/23/4.2.0.20.table +++ b/definitions/grib2/tables/23/4.2.0.20.table @@ -17,7 +17,6 @@ 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) @@ -44,7 +43,6 @@ 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) @@ -57,6 +55,4 @@ 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/definitions/grib2/tables/23/4.2.0.3.table b/definitions/grib2/tables/23/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/23/4.2.0.3.table +++ b/definitions/grib2/tables/23/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/23/4.2.0.4.table b/definitions/grib2/tables/23/4.2.0.4.table index f97270456..d5024628b 100644 --- a/definitions/grib2/tables/23/4.2.0.4.table +++ b/definitions/grib2/tables/23/4.2.0.4.table @@ -14,11 +14,8 @@ 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/definitions/grib2/tables/23/4.2.0.5.table b/definitions/grib2/tables/23/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/23/4.2.0.5.table +++ b/definitions/grib2/tables/23/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/23/4.2.0.6.table b/definitions/grib2/tables/23/4.2.0.6.table index 0450ec194..4e5d7ee4c 100644 --- a/definitions/grib2/tables/23/4.2.0.6.table +++ b/definitions/grib2/tables/23/4.2.0.6.table @@ -40,10 +40,7 @@ 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/definitions/grib2/tables/23/4.2.0.7.table b/definitions/grib2/tables/23/4.2.0.7.table index 6289d8b20..2c5b697db 100644 --- a/definitions/grib2/tables/23/4.2.0.7.table +++ b/definitions/grib2/tables/23/4.2.0.7.table @@ -19,6 +19,4 @@ 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/definitions/grib2/tables/23/4.2.1.0.table b/definitions/grib2/tables/23/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/23/4.2.1.0.table +++ b/definitions/grib2/tables/23/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/23/4.2.1.1.table b/definitions/grib2/tables/23/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/23/4.2.1.1.table +++ b/definitions/grib2/tables/23/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/4.2.10.0.table b/definitions/grib2/tables/23/4.2.10.0.table index 41a8c1f41..15f6163cb 100644 --- a/definitions/grib2/tables/23/4.2.10.0.table +++ b/definitions/grib2/tables/23/4.2.10.0.table @@ -55,7 +55,6 @@ 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 (-) @@ -65,6 +64,4 @@ 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/definitions/grib2/tables/23/4.2.10.1.table b/definitions/grib2/tables/23/4.2.10.1.table index 237e6865a..926267e52 100644 --- a/definitions/grib2/tables/23/4.2.10.1.table +++ b/definitions/grib2/tables/23/4.2.10.1.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/23/4.2.10.191.table b/definitions/grib2/tables/23/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/23/4.2.10.191.table +++ b/definitions/grib2/tables/23/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/23/4.2.10.2.table b/definitions/grib2/tables/23/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/23/4.2.10.2.table +++ b/definitions/grib2/tables/23/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/23/4.2.10.3.table b/definitions/grib2/tables/23/4.2.10.3.table index b01d7ae46..f6229ac12 100644 --- a/definitions/grib2/tables/23/4.2.10.3.table +++ b/definitions/grib2/tables/23/4.2.10.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/4.2.10.4.table b/definitions/grib2/tables/23/4.2.10.4.table index 66e9a323c..64c706b14 100644 --- a/definitions/grib2/tables/23/4.2.10.4.table +++ b/definitions/grib2/tables/23/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -19,6 +18,4 @@ 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/definitions/grib2/tables/23/4.2.2.0.table b/definitions/grib2/tables/23/4.2.2.0.table index b253cac22..090bbb64a 100644 --- a/definitions/grib2/tables/23/4.2.2.0.table +++ b/definitions/grib2/tables/23/4.2.2.0.table @@ -38,6 +38,4 @@ 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/definitions/grib2/tables/23/4.2.2.3.table b/definitions/grib2/tables/23/4.2.2.3.table index 2674e9f42..9699073e8 100644 --- a/definitions/grib2/tables/23/4.2.2.3.table +++ b/definitions/grib2/tables/23/4.2.2.3.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/23/4.2.2.4.table b/definitions/grib2/tables/23/4.2.2.4.table index ceb761557..3ee2176f6 100644 --- a/definitions/grib2/tables/23/4.2.2.4.table +++ b/definitions/grib2/tables/23/4.2.2.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/23/4.2.3.0.table b/definitions/grib2/tables/23/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/23/4.2.3.0.table +++ b/definitions/grib2/tables/23/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/23/4.2.3.1.table b/definitions/grib2/tables/23/4.2.3.1.table index 365e59a22..a46651ebe 100644 --- a/definitions/grib2/tables/23/4.2.3.1.table +++ b/definitions/grib2/tables/23/4.2.3.1.table @@ -23,13 +23,9 @@ 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/definitions/grib2/tables/23/4.201.table b/definitions/grib2/tables/23/4.201.table index 0dca20884..a902d6083 100644 --- a/definitions/grib2/tables/23/4.201.table +++ b/definitions/grib2/tables/23/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/23/4.202.table b/definitions/grib2/tables/23/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/23/4.202.table +++ b/definitions/grib2/tables/23/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/23/4.203.table b/definitions/grib2/tables/23/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/23/4.203.table +++ b/definitions/grib2/tables/23/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/23/4.204.table b/definitions/grib2/tables/23/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/23/4.204.table +++ b/definitions/grib2/tables/23/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/23/4.205.table b/definitions/grib2/tables/23/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/23/4.205.table +++ b/definitions/grib2/tables/23/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/4.206.table b/definitions/grib2/tables/23/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/23/4.206.table +++ b/definitions/grib2/tables/23/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/4.207.table b/definitions/grib2/tables/23/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/23/4.207.table +++ b/definitions/grib2/tables/23/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/23/4.208.table b/definitions/grib2/tables/23/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/23/4.208.table +++ b/definitions/grib2/tables/23/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/23/4.209.table b/definitions/grib2/tables/23/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/23/4.209.table +++ b/definitions/grib2/tables/23/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/23/4.210.table b/definitions/grib2/tables/23/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/23/4.210.table +++ b/definitions/grib2/tables/23/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/4.211.table b/definitions/grib2/tables/23/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/23/4.211.table +++ b/definitions/grib2/tables/23/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/4.212.table b/definitions/grib2/tables/23/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/23/4.212.table +++ b/definitions/grib2/tables/23/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/23/4.213.table b/definitions/grib2/tables/23/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/23/4.213.table +++ b/definitions/grib2/tables/23/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/23/4.215.table b/definitions/grib2/tables/23/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/23/4.215.table +++ b/definitions/grib2/tables/23/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/23/4.216.table b/definitions/grib2/tables/23/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/23/4.216.table +++ b/definitions/grib2/tables/23/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/23/4.217.table b/definitions/grib2/tables/23/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/23/4.217.table +++ b/definitions/grib2/tables/23/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/23/4.218.table b/definitions/grib2/tables/23/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/23/4.218.table +++ b/definitions/grib2/tables/23/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/23/4.219.table b/definitions/grib2/tables/23/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/23/4.219.table +++ b/definitions/grib2/tables/23/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/23/4.220.table b/definitions/grib2/tables/23/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/23/4.220.table +++ b/definitions/grib2/tables/23/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/4.221.table b/definitions/grib2/tables/23/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/23/4.221.table +++ b/definitions/grib2/tables/23/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/4.222.table b/definitions/grib2/tables/23/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/23/4.222.table +++ b/definitions/grib2/tables/23/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/4.224.table b/definitions/grib2/tables/23/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/23/4.224.table +++ b/definitions/grib2/tables/23/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/23/4.227.table b/definitions/grib2/tables/23/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/23/4.227.table +++ b/definitions/grib2/tables/23/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/23/4.230.table b/definitions/grib2/tables/23/4.230.table index 94f24dc6a..26a988fbf 100644 --- a/definitions/grib2/tables/23/4.230.table +++ b/definitions/grib2/tables/23/4.230.table @@ -46,7 +46,6 @@ 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 @@ -101,10 +100,8 @@ 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 @@ -127,9 +124,7 @@ 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 @@ -417,12 +412,10 @@ 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 @@ -451,7 +444,6 @@ 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 @@ -471,18 +463,14 @@ 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 @@ -498,14 +486,11 @@ 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/definitions/grib2/tables/23/4.233.table b/definitions/grib2/tables/23/4.233.table index 6c30833ac..1f3bc4048 100644 --- a/definitions/grib2/tables/23/4.233.table +++ b/definitions/grib2/tables/23/4.233.table @@ -46,7 +46,6 @@ 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 @@ -101,10 +100,8 @@ 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 @@ -127,9 +124,7 @@ 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 @@ -417,12 +412,10 @@ 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 @@ -451,7 +444,6 @@ 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 @@ -471,18 +463,14 @@ 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 @@ -498,14 +486,11 @@ 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/definitions/grib2/tables/23/4.240.table b/definitions/grib2/tables/23/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/23/4.240.table +++ b/definitions/grib2/tables/23/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/23/4.241.table b/definitions/grib2/tables/23/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/23/4.241.table +++ b/definitions/grib2/tables/23/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/23/4.242.table b/definitions/grib2/tables/23/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/23/4.242.table +++ b/definitions/grib2/tables/23/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/4.243.table b/definitions/grib2/tables/23/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/23/4.243.table +++ b/definitions/grib2/tables/23/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/23/4.244.table b/definitions/grib2/tables/23/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/23/4.244.table +++ b/definitions/grib2/tables/23/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/4.3.table b/definitions/grib2/tables/23/4.3.table index cea1bef4f..8338bbd67 100644 --- a/definitions/grib2/tables/23/4.3.table +++ b/definitions/grib2/tables/23/4.3.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/23/4.4.table b/definitions/grib2/tables/23/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/23/4.4.table +++ b/definitions/grib2/tables/23/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/23/4.5.table b/definitions/grib2/tables/23/4.5.table index 638258422..318270c10 100644 --- a/definitions/grib2/tables/23/4.5.table +++ b/definitions/grib2/tables/23/4.5.table @@ -16,14 +16,12 @@ 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) @@ -40,14 +38,11 @@ 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 sfc Lake or river bottom (-) @@ -56,18 +51,14 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -# 168-173 Reserved 174 sfc 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/definitions/grib2/tables/23/4.6.table b/definitions/grib2/tables/23/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/23/4.6.table +++ b/definitions/grib2/tables/23/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/23/4.7.table b/definitions/grib2/tables/23/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/23/4.7.table +++ b/definitions/grib2/tables/23/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/23/4.8.table b/definitions/grib2/tables/23/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/23/4.8.table +++ b/definitions/grib2/tables/23/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/4.9.table b/definitions/grib2/tables/23/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/23/4.9.table +++ b/definitions/grib2/tables/23/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/23/4.91.table b/definitions/grib2/tables/23/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/23/4.91.table +++ b/definitions/grib2/tables/23/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/23/5.0.table b/definitions/grib2/tables/23/5.0.table index 7fa534a0f..9f412db60 100644 --- a/definitions/grib2/tables/23/5.0.table +++ b/definitions/grib2/tables/23/5.0.table @@ -4,21 +4,14 @@ 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 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 diff --git a/definitions/grib2/tables/23/5.1.table b/definitions/grib2/tables/23/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/23/5.1.table +++ b/definitions/grib2/tables/23/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/5.2.table b/definitions/grib2/tables/23/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/23/5.2.table +++ b/definitions/grib2/tables/23/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/23/5.25.table b/definitions/grib2/tables/23/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/23/5.25.table +++ b/definitions/grib2/tables/23/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/23/5.26.table b/definitions/grib2/tables/23/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/23/5.26.table +++ b/definitions/grib2/tables/23/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/23/5.3.table b/definitions/grib2/tables/23/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/23/5.3.table +++ b/definitions/grib2/tables/23/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/5.4.table b/definitions/grib2/tables/23/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/23/5.4.table +++ b/definitions/grib2/tables/23/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/23/5.40.table b/definitions/grib2/tables/23/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/23/5.40.table +++ b/definitions/grib2/tables/23/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/23/5.5.table b/definitions/grib2/tables/23/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/23/5.5.table +++ b/definitions/grib2/tables/23/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/5.6.table b/definitions/grib2/tables/23/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/23/5.6.table +++ b/definitions/grib2/tables/23/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/23/5.7.table b/definitions/grib2/tables/23/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/23/5.7.table +++ b/definitions/grib2/tables/23/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/24/0.0.table b/definitions/grib2/tables/24/0.0.table index cb9de8e80..8ddfa4380 100644 --- a/definitions/grib2/tables/24/0.0.table +++ b/definitions/grib2/tables/24/0.0.table @@ -4,8 +4,5 @@ 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/definitions/grib2/tables/24/1.2.table b/definitions/grib2/tables/24/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/24/1.2.table +++ b/definitions/grib2/tables/24/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/24/1.3.table b/definitions/grib2/tables/24/1.3.table index 5e2e59087..f82841612 100644 --- a/definitions/grib2/tables/24/1.3.table +++ b/definitions/grib2/tables/24/1.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/24/1.4.table b/definitions/grib2/tables/24/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/24/1.4.table +++ b/definitions/grib2/tables/24/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/24/1.5.table b/definitions/grib2/tables/24/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/24/1.5.table +++ b/definitions/grib2/tables/24/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/1.6.table b/definitions/grib2/tables/24/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/24/1.6.table +++ b/definitions/grib2/tables/24/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/24/3.0.table b/definitions/grib2/tables/24/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/24/3.0.table +++ b/definitions/grib2/tables/24/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/3.1.table b/definitions/grib2/tables/24/3.1.table index 41da4c59c..c33ecc3b4 100644 --- a/definitions/grib2/tables/24/3.1.table +++ b/definitions/grib2/tables/24/3.1.table @@ -5,50 +5,31 @@ 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 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/definitions/grib2/tables/24/3.10.table b/definitions/grib2/tables/24/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/24/3.10.table +++ b/definitions/grib2/tables/24/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/24/3.11.table b/definitions/grib2/tables/24/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/24/3.11.table +++ b/definitions/grib2/tables/24/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/24/3.15.table b/definitions/grib2/tables/24/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/24/3.15.table +++ b/definitions/grib2/tables/24/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/24/3.2.table b/definitions/grib2/tables/24/3.2.table index 56ffdc08e..3d47cc431 100644 --- a/definitions/grib2/tables/24/3.2.table +++ b/definitions/grib2/tables/24/3.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/24/3.20.table b/definitions/grib2/tables/24/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/24/3.20.table +++ b/definitions/grib2/tables/24/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/3.21.table b/definitions/grib2/tables/24/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/24/3.21.table +++ b/definitions/grib2/tables/24/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/24/3.25.table b/definitions/grib2/tables/24/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/24/3.25.table +++ b/definitions/grib2/tables/24/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/24/3.3.table b/definitions/grib2/tables/24/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/24/3.3.table +++ b/definitions/grib2/tables/24/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/24/3.7.table b/definitions/grib2/tables/24/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/24/3.7.table +++ b/definitions/grib2/tables/24/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/24/3.8.table b/definitions/grib2/tables/24/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/24/3.8.table +++ b/definitions/grib2/tables/24/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/3.9.table b/definitions/grib2/tables/24/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/24/3.9.table +++ b/definitions/grib2/tables/24/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/24/4.0.table b/definitions/grib2/tables/24/4.0.table index 0ea0af4ec..fc4d5172a 100644 --- a/definitions/grib2/tables/24/4.0.table +++ b/definitions/grib2/tables/24/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -49,15 +44,12 @@ 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 @@ -66,21 +58,15 @@ 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/definitions/grib2/tables/24/4.1.0.table b/definitions/grib2/tables/24/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/24/4.1.0.table +++ b/definitions/grib2/tables/24/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/24/4.1.1.table b/definitions/grib2/tables/24/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/24/4.1.1.table +++ b/definitions/grib2/tables/24/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/4.1.10.table b/definitions/grib2/tables/24/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/24/4.1.10.table +++ b/definitions/grib2/tables/24/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/24/4.1.2.table b/definitions/grib2/tables/24/4.1.2.table index 046689b83..52d43c5d3 100644 --- a/definitions/grib2/tables/24/4.1.2.table +++ b/definitions/grib2/tables/24/4.1.2.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/24/4.1.3.table b/definitions/grib2/tables/24/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/24/4.1.3.table +++ b/definitions/grib2/tables/24/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/24/4.10.table b/definitions/grib2/tables/24/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/24/4.10.table +++ b/definitions/grib2/tables/24/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/24/4.11.table b/definitions/grib2/tables/24/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/24/4.11.table +++ b/definitions/grib2/tables/24/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/24/4.12.table b/definitions/grib2/tables/24/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/24/4.12.table +++ b/definitions/grib2/tables/24/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/4.13.table b/definitions/grib2/tables/24/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/24/4.13.table +++ b/definitions/grib2/tables/24/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/4.14.table b/definitions/grib2/tables/24/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/24/4.14.table +++ b/definitions/grib2/tables/24/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/4.15.table b/definitions/grib2/tables/24/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/24/4.15.table +++ b/definitions/grib2/tables/24/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/24/4.16.table b/definitions/grib2/tables/24/4.16.table index de3feccaf..7d6ae7eca 100644 --- a/definitions/grib2/tables/24/4.16.table +++ b/definitions/grib2/tables/24/4.16.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/24/4.2.0.0.table b/definitions/grib2/tables/24/4.2.0.0.table index 83b3e8ef1..3cd04f347 100644 --- a/definitions/grib2/tables/24/4.2.0.0.table +++ b/definitions/grib2/tables/24/4.2.0.0.table @@ -29,6 +29,4 @@ 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/definitions/grib2/tables/24/4.2.0.1.table b/definitions/grib2/tables/24/4.2.0.1.table index 46f83bce9..c13590bab 100644 --- a/definitions/grib2/tables/24/4.2.0.1.table +++ b/definitions/grib2/tables/24/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -121,7 +120,6 @@ 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) @@ -136,6 +134,4 @@ 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/definitions/grib2/tables/24/4.2.0.13.table b/definitions/grib2/tables/24/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/24/4.2.0.13.table +++ b/definitions/grib2/tables/24/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/24/4.2.0.14.table b/definitions/grib2/tables/24/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/24/4.2.0.14.table +++ b/definitions/grib2/tables/24/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/4.2.0.15.table b/definitions/grib2/tables/24/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/24/4.2.0.15.table +++ b/definitions/grib2/tables/24/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/24/4.2.0.16.table b/definitions/grib2/tables/24/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/24/4.2.0.16.table +++ b/definitions/grib2/tables/24/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/24/4.2.0.18.table b/definitions/grib2/tables/24/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/24/4.2.0.18.table +++ b/definitions/grib2/tables/24/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/24/4.2.0.19.table b/definitions/grib2/tables/24/4.2.0.19.table index ac03c2f37..76e3f102f 100644 --- a/definitions/grib2/tables/24/4.2.0.19.table +++ b/definitions/grib2/tables/24/4.2.0.19.table @@ -36,6 +36,4 @@ 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/definitions/grib2/tables/24/4.2.0.190.table b/definitions/grib2/tables/24/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/24/4.2.0.190.table +++ b/definitions/grib2/tables/24/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/24/4.2.0.191.table b/definitions/grib2/tables/24/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/24/4.2.0.191.table +++ b/definitions/grib2/tables/24/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/24/4.2.0.2.table b/definitions/grib2/tables/24/4.2.0.2.table index 8a70b2591..8651adc7c 100644 --- a/definitions/grib2/tables/24/4.2.0.2.table +++ b/definitions/grib2/tables/24/4.2.0.2.table @@ -46,6 +46,4 @@ 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/definitions/grib2/tables/24/4.2.0.20.table b/definitions/grib2/tables/24/4.2.0.20.table index 9b0170f5c..d799ca11e 100644 --- a/definitions/grib2/tables/24/4.2.0.20.table +++ b/definitions/grib2/tables/24/4.2.0.20.table @@ -17,7 +17,6 @@ 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) @@ -46,7 +45,6 @@ 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) @@ -59,6 +57,4 @@ 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/definitions/grib2/tables/24/4.2.0.3.table b/definitions/grib2/tables/24/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/24/4.2.0.3.table +++ b/definitions/grib2/tables/24/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/24/4.2.0.4.table b/definitions/grib2/tables/24/4.2.0.4.table index f97270456..d5024628b 100644 --- a/definitions/grib2/tables/24/4.2.0.4.table +++ b/definitions/grib2/tables/24/4.2.0.4.table @@ -14,11 +14,8 @@ 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/definitions/grib2/tables/24/4.2.0.5.table b/definitions/grib2/tables/24/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/24/4.2.0.5.table +++ b/definitions/grib2/tables/24/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/24/4.2.0.6.table b/definitions/grib2/tables/24/4.2.0.6.table index 0450ec194..4e5d7ee4c 100644 --- a/definitions/grib2/tables/24/4.2.0.6.table +++ b/definitions/grib2/tables/24/4.2.0.6.table @@ -40,10 +40,7 @@ 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/definitions/grib2/tables/24/4.2.0.7.table b/definitions/grib2/tables/24/4.2.0.7.table index 6289d8b20..2c5b697db 100644 --- a/definitions/grib2/tables/24/4.2.0.7.table +++ b/definitions/grib2/tables/24/4.2.0.7.table @@ -19,6 +19,4 @@ 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/definitions/grib2/tables/24/4.2.1.0.table b/definitions/grib2/tables/24/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/24/4.2.1.0.table +++ b/definitions/grib2/tables/24/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/24/4.2.1.1.table b/definitions/grib2/tables/24/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/24/4.2.1.1.table +++ b/definitions/grib2/tables/24/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/4.2.10.0.table b/definitions/grib2/tables/24/4.2.10.0.table index c35e2abfd..15f6163cb 100644 --- a/definitions/grib2/tables/24/4.2.10.0.table +++ b/definitions/grib2/tables/24/4.2.10.0.table @@ -64,6 +64,4 @@ 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/definitions/grib2/tables/24/4.2.10.1.table b/definitions/grib2/tables/24/4.2.10.1.table index 237e6865a..926267e52 100644 --- a/definitions/grib2/tables/24/4.2.10.1.table +++ b/definitions/grib2/tables/24/4.2.10.1.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/24/4.2.10.191.table b/definitions/grib2/tables/24/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/24/4.2.10.191.table +++ b/definitions/grib2/tables/24/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/24/4.2.10.2.table b/definitions/grib2/tables/24/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/24/4.2.10.2.table +++ b/definitions/grib2/tables/24/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/24/4.2.10.3.table b/definitions/grib2/tables/24/4.2.10.3.table index ac1603ecc..ba65a71f8 100644 --- a/definitions/grib2/tables/24/4.2.10.3.table +++ b/definitions/grib2/tables/24/4.2.10.3.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/24/4.2.10.4.table b/definitions/grib2/tables/24/4.2.10.4.table index 66e9a323c..64c706b14 100644 --- a/definitions/grib2/tables/24/4.2.10.4.table +++ b/definitions/grib2/tables/24/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -19,6 +18,4 @@ 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/definitions/grib2/tables/24/4.2.2.0.table b/definitions/grib2/tables/24/4.2.2.0.table index bcfc982b7..137c8deb2 100644 --- a/definitions/grib2/tables/24/4.2.2.0.table +++ b/definitions/grib2/tables/24/4.2.2.0.table @@ -39,6 +39,4 @@ 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/definitions/grib2/tables/24/4.2.2.3.table b/definitions/grib2/tables/24/4.2.2.3.table index 2674e9f42..9699073e8 100644 --- a/definitions/grib2/tables/24/4.2.2.3.table +++ b/definitions/grib2/tables/24/4.2.2.3.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/24/4.2.2.4.table b/definitions/grib2/tables/24/4.2.2.4.table index ceb761557..3ee2176f6 100644 --- a/definitions/grib2/tables/24/4.2.2.4.table +++ b/definitions/grib2/tables/24/4.2.2.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/24/4.2.3.0.table b/definitions/grib2/tables/24/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/24/4.2.3.0.table +++ b/definitions/grib2/tables/24/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/24/4.2.3.1.table b/definitions/grib2/tables/24/4.2.3.1.table index 365e59a22..a46651ebe 100644 --- a/definitions/grib2/tables/24/4.2.3.1.table +++ b/definitions/grib2/tables/24/4.2.3.1.table @@ -23,13 +23,9 @@ 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/definitions/grib2/tables/24/4.201.table b/definitions/grib2/tables/24/4.201.table index 0dca20884..a902d6083 100644 --- a/definitions/grib2/tables/24/4.201.table +++ b/definitions/grib2/tables/24/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/24/4.202.table b/definitions/grib2/tables/24/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/24/4.202.table +++ b/definitions/grib2/tables/24/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/24/4.203.table b/definitions/grib2/tables/24/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/24/4.203.table +++ b/definitions/grib2/tables/24/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/24/4.204.table b/definitions/grib2/tables/24/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/24/4.204.table +++ b/definitions/grib2/tables/24/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/24/4.205.table b/definitions/grib2/tables/24/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/24/4.205.table +++ b/definitions/grib2/tables/24/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/4.206.table b/definitions/grib2/tables/24/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/24/4.206.table +++ b/definitions/grib2/tables/24/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/4.207.table b/definitions/grib2/tables/24/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/24/4.207.table +++ b/definitions/grib2/tables/24/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/24/4.208.table b/definitions/grib2/tables/24/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/24/4.208.table +++ b/definitions/grib2/tables/24/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/24/4.209.table b/definitions/grib2/tables/24/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/24/4.209.table +++ b/definitions/grib2/tables/24/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/24/4.210.table b/definitions/grib2/tables/24/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/24/4.210.table +++ b/definitions/grib2/tables/24/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/4.211.table b/definitions/grib2/tables/24/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/24/4.211.table +++ b/definitions/grib2/tables/24/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/4.212.table b/definitions/grib2/tables/24/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/24/4.212.table +++ b/definitions/grib2/tables/24/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/24/4.213.table b/definitions/grib2/tables/24/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/24/4.213.table +++ b/definitions/grib2/tables/24/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/24/4.215.table b/definitions/grib2/tables/24/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/24/4.215.table +++ b/definitions/grib2/tables/24/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/24/4.216.table b/definitions/grib2/tables/24/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/24/4.216.table +++ b/definitions/grib2/tables/24/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/24/4.217.table b/definitions/grib2/tables/24/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/24/4.217.table +++ b/definitions/grib2/tables/24/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/24/4.218.table b/definitions/grib2/tables/24/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/24/4.218.table +++ b/definitions/grib2/tables/24/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/24/4.219.table b/definitions/grib2/tables/24/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/24/4.219.table +++ b/definitions/grib2/tables/24/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/24/4.220.table b/definitions/grib2/tables/24/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/24/4.220.table +++ b/definitions/grib2/tables/24/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/4.221.table b/definitions/grib2/tables/24/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/24/4.221.table +++ b/definitions/grib2/tables/24/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/4.222.table b/definitions/grib2/tables/24/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/24/4.222.table +++ b/definitions/grib2/tables/24/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/4.224.table b/definitions/grib2/tables/24/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/24/4.224.table +++ b/definitions/grib2/tables/24/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/24/4.227.table b/definitions/grib2/tables/24/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/24/4.227.table +++ b/definitions/grib2/tables/24/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/24/4.230.table b/definitions/grib2/tables/24/4.230.table index 6159d2aad..e89e48f82 100644 --- a/definitions/grib2/tables/24/4.230.table +++ b/definitions/grib2/tables/24/4.230.table @@ -46,7 +46,6 @@ 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 @@ -101,10 +100,8 @@ 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 @@ -127,9 +124,7 @@ 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 @@ -417,12 +412,10 @@ 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 @@ -451,7 +444,6 @@ 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 @@ -471,18 +463,14 @@ 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 @@ -498,15 +486,12 @@ 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/definitions/grib2/tables/24/4.233.table b/definitions/grib2/tables/24/4.233.table index d60790f5a..9995155e3 100644 --- a/definitions/grib2/tables/24/4.233.table +++ b/definitions/grib2/tables/24/4.233.table @@ -46,7 +46,6 @@ 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 @@ -101,10 +100,8 @@ 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 @@ -127,9 +124,7 @@ 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 @@ -417,12 +412,10 @@ 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 @@ -451,7 +444,6 @@ 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 @@ -471,18 +463,14 @@ 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 @@ -498,15 +486,12 @@ 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/definitions/grib2/tables/24/4.238.table b/definitions/grib2/tables/24/4.238.table index 84ae04c80..b5f56d292 100644 --- a/definitions/grib2/tables/24/4.238.table +++ b/definitions/grib2/tables/24/4.238.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/24/4.240.table b/definitions/grib2/tables/24/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/24/4.240.table +++ b/definitions/grib2/tables/24/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/24/4.241.table b/definitions/grib2/tables/24/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/24/4.241.table +++ b/definitions/grib2/tables/24/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/24/4.242.table b/definitions/grib2/tables/24/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/24/4.242.table +++ b/definitions/grib2/tables/24/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/4.243.table b/definitions/grib2/tables/24/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/24/4.243.table +++ b/definitions/grib2/tables/24/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/24/4.244.table b/definitions/grib2/tables/24/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/24/4.244.table +++ b/definitions/grib2/tables/24/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/4.3.table b/definitions/grib2/tables/24/4.3.table index cea1bef4f..8338bbd67 100644 --- a/definitions/grib2/tables/24/4.3.table +++ b/definitions/grib2/tables/24/4.3.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/24/4.4.table b/definitions/grib2/tables/24/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/24/4.4.table +++ b/definitions/grib2/tables/24/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/24/4.5.table b/definitions/grib2/tables/24/4.5.table index 338a39b6a..fca425eba 100644 --- a/definitions/grib2/tables/24/4.5.table +++ b/definitions/grib2/tables/24/4.5.table @@ -16,14 +16,12 @@ 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) @@ -40,14 +38,11 @@ 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 o2d Depth below sea level (m) 161 161 Depth below water surface (m) 162 sfc Lake or river bottom (-) @@ -59,18 +54,14 @@ 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 sfc 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/definitions/grib2/tables/24/4.6.table b/definitions/grib2/tables/24/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/24/4.6.table +++ b/definitions/grib2/tables/24/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/24/4.7.table b/definitions/grib2/tables/24/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/24/4.7.table +++ b/definitions/grib2/tables/24/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/24/4.8.table b/definitions/grib2/tables/24/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/24/4.8.table +++ b/definitions/grib2/tables/24/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/4.9.table b/definitions/grib2/tables/24/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/24/4.9.table +++ b/definitions/grib2/tables/24/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/24/4.91.table b/definitions/grib2/tables/24/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/24/4.91.table +++ b/definitions/grib2/tables/24/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/24/5.0.table b/definitions/grib2/tables/24/5.0.table index 7fa534a0f..9f412db60 100644 --- a/definitions/grib2/tables/24/5.0.table +++ b/definitions/grib2/tables/24/5.0.table @@ -4,21 +4,14 @@ 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 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 diff --git a/definitions/grib2/tables/24/5.1.table b/definitions/grib2/tables/24/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/24/5.1.table +++ b/definitions/grib2/tables/24/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/5.2.table b/definitions/grib2/tables/24/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/24/5.2.table +++ b/definitions/grib2/tables/24/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/24/5.25.table b/definitions/grib2/tables/24/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/24/5.25.table +++ b/definitions/grib2/tables/24/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/24/5.26.table b/definitions/grib2/tables/24/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/24/5.26.table +++ b/definitions/grib2/tables/24/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/24/5.3.table b/definitions/grib2/tables/24/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/24/5.3.table +++ b/definitions/grib2/tables/24/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/5.4.table b/definitions/grib2/tables/24/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/24/5.4.table +++ b/definitions/grib2/tables/24/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/24/5.40.table b/definitions/grib2/tables/24/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/24/5.40.table +++ b/definitions/grib2/tables/24/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/24/5.5.table b/definitions/grib2/tables/24/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/24/5.5.table +++ b/definitions/grib2/tables/24/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/5.6.table b/definitions/grib2/tables/24/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/24/5.6.table +++ b/definitions/grib2/tables/24/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/24/5.7.table b/definitions/grib2/tables/24/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/24/5.7.table +++ b/definitions/grib2/tables/24/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/25/0.0.table b/definitions/grib2/tables/25/0.0.table index a8542e94f..a54c35af2 100644 --- a/definitions/grib2/tables/25/0.0.table +++ b/definitions/grib2/tables/25/0.0.table @@ -4,10 +4,6 @@ 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/definitions/grib2/tables/25/1.2.table b/definitions/grib2/tables/25/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/25/1.2.table +++ b/definitions/grib2/tables/25/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/25/1.3.table b/definitions/grib2/tables/25/1.3.table index 5e2e59087..f82841612 100644 --- a/definitions/grib2/tables/25/1.3.table +++ b/definitions/grib2/tables/25/1.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/25/1.4.table b/definitions/grib2/tables/25/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/25/1.4.table +++ b/definitions/grib2/tables/25/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/25/1.5.table b/definitions/grib2/tables/25/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/25/1.5.table +++ b/definitions/grib2/tables/25/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/1.6.table b/definitions/grib2/tables/25/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/25/1.6.table +++ b/definitions/grib2/tables/25/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/25/3.0.table b/definitions/grib2/tables/25/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/25/3.0.table +++ b/definitions/grib2/tables/25/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/3.1.table b/definitions/grib2/tables/25/3.1.table index 41da4c59c..c33ecc3b4 100644 --- a/definitions/grib2/tables/25/3.1.table +++ b/definitions/grib2/tables/25/3.1.table @@ -5,50 +5,31 @@ 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 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/definitions/grib2/tables/25/3.10.table b/definitions/grib2/tables/25/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/25/3.10.table +++ b/definitions/grib2/tables/25/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/25/3.11.table b/definitions/grib2/tables/25/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/25/3.11.table +++ b/definitions/grib2/tables/25/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/25/3.15.table b/definitions/grib2/tables/25/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/25/3.15.table +++ b/definitions/grib2/tables/25/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/25/3.2.table b/definitions/grib2/tables/25/3.2.table index 3b6046969..d4ff95174 100644 --- a/definitions/grib2/tables/25/3.2.table +++ b/definitions/grib2/tables/25/3.2.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/25/3.20.table b/definitions/grib2/tables/25/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/25/3.20.table +++ b/definitions/grib2/tables/25/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/3.21.table b/definitions/grib2/tables/25/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/25/3.21.table +++ b/definitions/grib2/tables/25/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/25/3.25.table b/definitions/grib2/tables/25/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/25/3.25.table +++ b/definitions/grib2/tables/25/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/25/3.3.table b/definitions/grib2/tables/25/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/25/3.3.table +++ b/definitions/grib2/tables/25/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/25/3.7.table b/definitions/grib2/tables/25/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/25/3.7.table +++ b/definitions/grib2/tables/25/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/25/3.8.table b/definitions/grib2/tables/25/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/25/3.8.table +++ b/definitions/grib2/tables/25/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/3.9.table b/definitions/grib2/tables/25/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/25/3.9.table +++ b/definitions/grib2/tables/25/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/25/4.0.table b/definitions/grib2/tables/25/4.0.table index 0ea0af4ec..fc4d5172a 100644 --- a/definitions/grib2/tables/25/4.0.table +++ b/definitions/grib2/tables/25/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -49,15 +44,12 @@ 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 @@ -66,21 +58,15 @@ 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/definitions/grib2/tables/25/4.1.0.table b/definitions/grib2/tables/25/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/25/4.1.0.table +++ b/definitions/grib2/tables/25/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/25/4.1.1.table b/definitions/grib2/tables/25/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/25/4.1.1.table +++ b/definitions/grib2/tables/25/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/4.1.10.table b/definitions/grib2/tables/25/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/25/4.1.10.table +++ b/definitions/grib2/tables/25/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/25/4.1.2.table b/definitions/grib2/tables/25/4.1.2.table index 046689b83..52d43c5d3 100644 --- a/definitions/grib2/tables/25/4.1.2.table +++ b/definitions/grib2/tables/25/4.1.2.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/25/4.1.20.table b/definitions/grib2/tables/25/4.1.20.table index fe4362b3c..e896462dc 100644 --- a/definitions/grib2/tables/25/4.1.20.table +++ b/definitions/grib2/tables/25/4.1.20.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/4.1.3.table b/definitions/grib2/tables/25/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/25/4.1.3.table +++ b/definitions/grib2/tables/25/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/25/4.1.4.table b/definitions/grib2/tables/25/4.1.4.table index 792feca5b..ba580bad0 100644 --- a/definitions/grib2/tables/25/4.1.4.table +++ b/definitions/grib2/tables/25/4.1.4.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/25/4.10.table b/definitions/grib2/tables/25/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/25/4.10.table +++ b/definitions/grib2/tables/25/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/25/4.11.table b/definitions/grib2/tables/25/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/25/4.11.table +++ b/definitions/grib2/tables/25/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/25/4.12.table b/definitions/grib2/tables/25/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/25/4.12.table +++ b/definitions/grib2/tables/25/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/4.13.table b/definitions/grib2/tables/25/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/25/4.13.table +++ b/definitions/grib2/tables/25/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.14.table b/definitions/grib2/tables/25/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/25/4.14.table +++ b/definitions/grib2/tables/25/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.15.table b/definitions/grib2/tables/25/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/25/4.15.table +++ b/definitions/grib2/tables/25/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/25/4.16.table b/definitions/grib2/tables/25/4.16.table index de3feccaf..7d6ae7eca 100644 --- a/definitions/grib2/tables/25/4.16.table +++ b/definitions/grib2/tables/25/4.16.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/25/4.2.0.0.table b/definitions/grib2/tables/25/4.2.0.0.table index 83b3e8ef1..3cd04f347 100644 --- a/definitions/grib2/tables/25/4.2.0.0.table +++ b/definitions/grib2/tables/25/4.2.0.0.table @@ -29,6 +29,4 @@ 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/definitions/grib2/tables/25/4.2.0.1.table b/definitions/grib2/tables/25/4.2.0.1.table index 46f83bce9..c13590bab 100644 --- a/definitions/grib2/tables/25/4.2.0.1.table +++ b/definitions/grib2/tables/25/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -121,7 +120,6 @@ 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) @@ -136,6 +134,4 @@ 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/definitions/grib2/tables/25/4.2.0.13.table b/definitions/grib2/tables/25/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/25/4.2.0.13.table +++ b/definitions/grib2/tables/25/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/25/4.2.0.14.table b/definitions/grib2/tables/25/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/25/4.2.0.14.table +++ b/definitions/grib2/tables/25/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/4.2.0.15.table b/definitions/grib2/tables/25/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/25/4.2.0.15.table +++ b/definitions/grib2/tables/25/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/25/4.2.0.16.table b/definitions/grib2/tables/25/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/25/4.2.0.16.table +++ b/definitions/grib2/tables/25/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/25/4.2.0.18.table b/definitions/grib2/tables/25/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/25/4.2.0.18.table +++ b/definitions/grib2/tables/25/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/25/4.2.0.19.table b/definitions/grib2/tables/25/4.2.0.19.table index d06ffc13b..d583f720f 100644 --- a/definitions/grib2/tables/25/4.2.0.19.table +++ b/definitions/grib2/tables/25/4.2.0.19.table @@ -37,6 +37,4 @@ 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/definitions/grib2/tables/25/4.2.0.190.table b/definitions/grib2/tables/25/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/25/4.2.0.190.table +++ b/definitions/grib2/tables/25/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/25/4.2.0.191.table b/definitions/grib2/tables/25/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/25/4.2.0.191.table +++ b/definitions/grib2/tables/25/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/25/4.2.0.2.table b/definitions/grib2/tables/25/4.2.0.2.table index 8a70b2591..8651adc7c 100644 --- a/definitions/grib2/tables/25/4.2.0.2.table +++ b/definitions/grib2/tables/25/4.2.0.2.table @@ -46,6 +46,4 @@ 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/definitions/grib2/tables/25/4.2.0.20.table b/definitions/grib2/tables/25/4.2.0.20.table index 9b0170f5c..d799ca11e 100644 --- a/definitions/grib2/tables/25/4.2.0.20.table +++ b/definitions/grib2/tables/25/4.2.0.20.table @@ -17,7 +17,6 @@ 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) @@ -46,7 +45,6 @@ 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) @@ -59,6 +57,4 @@ 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/definitions/grib2/tables/25/4.2.0.3.table b/definitions/grib2/tables/25/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/25/4.2.0.3.table +++ b/definitions/grib2/tables/25/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/25/4.2.0.4.table b/definitions/grib2/tables/25/4.2.0.4.table index f97270456..d5024628b 100644 --- a/definitions/grib2/tables/25/4.2.0.4.table +++ b/definitions/grib2/tables/25/4.2.0.4.table @@ -14,11 +14,8 @@ 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/definitions/grib2/tables/25/4.2.0.5.table b/definitions/grib2/tables/25/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/25/4.2.0.5.table +++ b/definitions/grib2/tables/25/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/25/4.2.0.6.table b/definitions/grib2/tables/25/4.2.0.6.table index 0450ec194..4e5d7ee4c 100644 --- a/definitions/grib2/tables/25/4.2.0.6.table +++ b/definitions/grib2/tables/25/4.2.0.6.table @@ -40,10 +40,7 @@ 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/definitions/grib2/tables/25/4.2.0.7.table b/definitions/grib2/tables/25/4.2.0.7.table index 6289d8b20..2c5b697db 100644 --- a/definitions/grib2/tables/25/4.2.0.7.table +++ b/definitions/grib2/tables/25/4.2.0.7.table @@ -19,6 +19,4 @@ 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/definitions/grib2/tables/25/4.2.1.0.table b/definitions/grib2/tables/25/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/25/4.2.1.0.table +++ b/definitions/grib2/tables/25/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/25/4.2.1.1.table b/definitions/grib2/tables/25/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/25/4.2.1.1.table +++ b/definitions/grib2/tables/25/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/4.2.10.0.table b/definitions/grib2/tables/25/4.2.10.0.table index c35e2abfd..15f6163cb 100644 --- a/definitions/grib2/tables/25/4.2.10.0.table +++ b/definitions/grib2/tables/25/4.2.10.0.table @@ -64,6 +64,4 @@ 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/definitions/grib2/tables/25/4.2.10.1.table b/definitions/grib2/tables/25/4.2.10.1.table index 237e6865a..926267e52 100644 --- a/definitions/grib2/tables/25/4.2.10.1.table +++ b/definitions/grib2/tables/25/4.2.10.1.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/25/4.2.10.191.table b/definitions/grib2/tables/25/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/25/4.2.10.191.table +++ b/definitions/grib2/tables/25/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/25/4.2.10.2.table b/definitions/grib2/tables/25/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/25/4.2.10.2.table +++ b/definitions/grib2/tables/25/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/25/4.2.10.3.table b/definitions/grib2/tables/25/4.2.10.3.table index ac1603ecc..ba65a71f8 100644 --- a/definitions/grib2/tables/25/4.2.10.3.table +++ b/definitions/grib2/tables/25/4.2.10.3.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/25/4.2.10.4.table b/definitions/grib2/tables/25/4.2.10.4.table index 66e9a323c..64c706b14 100644 --- a/definitions/grib2/tables/25/4.2.10.4.table +++ b/definitions/grib2/tables/25/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -19,6 +18,4 @@ 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/definitions/grib2/tables/25/4.2.2.0.table b/definitions/grib2/tables/25/4.2.2.0.table index bcfc982b7..137c8deb2 100644 --- a/definitions/grib2/tables/25/4.2.2.0.table +++ b/definitions/grib2/tables/25/4.2.2.0.table @@ -39,6 +39,4 @@ 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/definitions/grib2/tables/25/4.2.2.3.table b/definitions/grib2/tables/25/4.2.2.3.table index cb2cb71d0..45db96b6e 100644 --- a/definitions/grib2/tables/25/4.2.2.3.table +++ b/definitions/grib2/tables/25/4.2.2.3.table @@ -28,6 +28,4 @@ 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/definitions/grib2/tables/25/4.2.2.4.table b/definitions/grib2/tables/25/4.2.2.4.table index 8dcaa509a..68c492ed6 100644 --- a/definitions/grib2/tables/25/4.2.2.4.table +++ b/definitions/grib2/tables/25/4.2.2.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/25/4.2.2.5.table b/definitions/grib2/tables/25/4.2.2.5.table index a5a71dcd1..476893691 100644 --- a/definitions/grib2/tables/25/4.2.2.5.table +++ b/definitions/grib2/tables/25/4.2.2.5.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.2.20.0.table b/definitions/grib2/tables/25/4.2.20.0.table index cf842f6ea..5ba472f7d 100644 --- a/definitions/grib2/tables/25/4.2.20.0.table +++ b/definitions/grib2/tables/25/4.2.20.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.2.20.1.table b/definitions/grib2/tables/25/4.2.20.1.table index 3c94cdf17..130e49bd2 100644 --- a/definitions/grib2/tables/25/4.2.20.1.table +++ b/definitions/grib2/tables/25/4.2.20.1.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/25/4.2.20.2.table b/definitions/grib2/tables/25/4.2.20.2.table index 8a937c0d1..cc0ec086d 100644 --- a/definitions/grib2/tables/25/4.2.20.2.table +++ b/definitions/grib2/tables/25/4.2.20.2.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/25/4.2.3.0.table b/definitions/grib2/tables/25/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/25/4.2.3.0.table +++ b/definitions/grib2/tables/25/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/25/4.2.3.1.table b/definitions/grib2/tables/25/4.2.3.1.table index 365e59a22..a46651ebe 100644 --- a/definitions/grib2/tables/25/4.2.3.1.table +++ b/definitions/grib2/tables/25/4.2.3.1.table @@ -23,13 +23,9 @@ 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/definitions/grib2/tables/25/4.2.4.0.table b/definitions/grib2/tables/25/4.2.4.0.table index f89f1fee8..9799f20e7 100644 --- a/definitions/grib2/tables/25/4.2.4.0.table +++ b/definitions/grib2/tables/25/4.2.4.0.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/25/4.2.4.1.table b/definitions/grib2/tables/25/4.2.4.1.table index de1bb48b1..4a40748fd 100644 --- a/definitions/grib2/tables/25/4.2.4.1.table +++ b/definitions/grib2/tables/25/4.2.4.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/25/4.2.4.10.table b/definitions/grib2/tables/25/4.2.4.10.table index dade20fca..60e6de862 100644 --- a/definitions/grib2/tables/25/4.2.4.10.table +++ b/definitions/grib2/tables/25/4.2.4.10.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/25/4.2.4.2.table b/definitions/grib2/tables/25/4.2.4.2.table index 0ab69cf2c..9016955af 100644 --- a/definitions/grib2/tables/25/4.2.4.2.table +++ b/definitions/grib2/tables/25/4.2.4.2.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/25/4.2.4.3.table b/definitions/grib2/tables/25/4.2.4.3.table index 943251fca..127ecebd8 100644 --- a/definitions/grib2/tables/25/4.2.4.3.table +++ b/definitions/grib2/tables/25/4.2.4.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/25/4.2.4.4.table b/definitions/grib2/tables/25/4.2.4.4.table index 991faa417..049cfb8b3 100644 --- a/definitions/grib2/tables/25/4.2.4.4.table +++ b/definitions/grib2/tables/25/4.2.4.4.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/25/4.2.4.5.table b/definitions/grib2/tables/25/4.2.4.5.table index e4aae61da..83b377187 100644 --- a/definitions/grib2/tables/25/4.2.4.5.table +++ b/definitions/grib2/tables/25/4.2.4.5.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/25/4.2.4.6.table b/definitions/grib2/tables/25/4.2.4.6.table index 64dccb947..298ef881f 100644 --- a/definitions/grib2/tables/25/4.2.4.6.table +++ b/definitions/grib2/tables/25/4.2.4.6.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/25/4.2.4.7.table b/definitions/grib2/tables/25/4.2.4.7.table index 98dd1d649..bd90b12b5 100644 --- a/definitions/grib2/tables/25/4.2.4.7.table +++ b/definitions/grib2/tables/25/4.2.4.7.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/25/4.2.4.8.table b/definitions/grib2/tables/25/4.2.4.8.table index 3c7834a9a..c6ab1f271 100644 --- a/definitions/grib2/tables/25/4.2.4.8.table +++ b/definitions/grib2/tables/25/4.2.4.8.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/25/4.2.4.9.table b/definitions/grib2/tables/25/4.2.4.9.table index df8ceaac2..148c54692 100644 --- a/definitions/grib2/tables/25/4.2.4.9.table +++ b/definitions/grib2/tables/25/4.2.4.9.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/4.201.table b/definitions/grib2/tables/25/4.201.table index 0dca20884..a902d6083 100644 --- a/definitions/grib2/tables/25/4.201.table +++ b/definitions/grib2/tables/25/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/25/4.202.table b/definitions/grib2/tables/25/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/25/4.202.table +++ b/definitions/grib2/tables/25/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/25/4.203.table b/definitions/grib2/tables/25/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/25/4.203.table +++ b/definitions/grib2/tables/25/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/25/4.204.table b/definitions/grib2/tables/25/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/25/4.204.table +++ b/definitions/grib2/tables/25/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/25/4.205.table b/definitions/grib2/tables/25/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/25/4.205.table +++ b/definitions/grib2/tables/25/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.206.table b/definitions/grib2/tables/25/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/25/4.206.table +++ b/definitions/grib2/tables/25/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.207.table b/definitions/grib2/tables/25/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/25/4.207.table +++ b/definitions/grib2/tables/25/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/25/4.208.table b/definitions/grib2/tables/25/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/25/4.208.table +++ b/definitions/grib2/tables/25/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/25/4.209.table b/definitions/grib2/tables/25/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/25/4.209.table +++ b/definitions/grib2/tables/25/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/25/4.210.table b/definitions/grib2/tables/25/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/25/4.210.table +++ b/definitions/grib2/tables/25/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.211.table b/definitions/grib2/tables/25/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/25/4.211.table +++ b/definitions/grib2/tables/25/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/4.212.table b/definitions/grib2/tables/25/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/25/4.212.table +++ b/definitions/grib2/tables/25/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/25/4.213.table b/definitions/grib2/tables/25/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/25/4.213.table +++ b/definitions/grib2/tables/25/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/25/4.215.table b/definitions/grib2/tables/25/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/25/4.215.table +++ b/definitions/grib2/tables/25/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/25/4.216.table b/definitions/grib2/tables/25/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/25/4.216.table +++ b/definitions/grib2/tables/25/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/25/4.217.table b/definitions/grib2/tables/25/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/25/4.217.table +++ b/definitions/grib2/tables/25/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/25/4.218.table b/definitions/grib2/tables/25/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/25/4.218.table +++ b/definitions/grib2/tables/25/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/25/4.219.table b/definitions/grib2/tables/25/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/25/4.219.table +++ b/definitions/grib2/tables/25/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/25/4.220.table b/definitions/grib2/tables/25/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/25/4.220.table +++ b/definitions/grib2/tables/25/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.221.table b/definitions/grib2/tables/25/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/25/4.221.table +++ b/definitions/grib2/tables/25/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.222.table b/definitions/grib2/tables/25/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/25/4.222.table +++ b/definitions/grib2/tables/25/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.224.table b/definitions/grib2/tables/25/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/25/4.224.table +++ b/definitions/grib2/tables/25/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/25/4.227.table b/definitions/grib2/tables/25/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/25/4.227.table +++ b/definitions/grib2/tables/25/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/25/4.228.table b/definitions/grib2/tables/25/4.228.table index 048a69f0b..88c3dd87c 100644 --- a/definitions/grib2/tables/25/4.228.table +++ b/definitions/grib2/tables/25/4.228.table @@ -4,5 +4,4 @@ 2 2 Light 3 3 Moderate 4 4 Severe -# 5-254 Reserved 255 255 Missing value diff --git a/definitions/grib2/tables/25/4.230.table b/definitions/grib2/tables/25/4.230.table index 6159d2aad..e89e48f82 100644 --- a/definitions/grib2/tables/25/4.230.table +++ b/definitions/grib2/tables/25/4.230.table @@ -46,7 +46,6 @@ 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 @@ -101,10 +100,8 @@ 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 @@ -127,9 +124,7 @@ 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 @@ -417,12 +412,10 @@ 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 @@ -451,7 +444,6 @@ 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 @@ -471,18 +463,14 @@ 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 @@ -498,15 +486,12 @@ 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/definitions/grib2/tables/25/4.233.table b/definitions/grib2/tables/25/4.233.table index d60790f5a..9995155e3 100644 --- a/definitions/grib2/tables/25/4.233.table +++ b/definitions/grib2/tables/25/4.233.table @@ -46,7 +46,6 @@ 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 @@ -101,10 +100,8 @@ 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 @@ -127,9 +124,7 @@ 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 @@ -417,12 +412,10 @@ 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 @@ -451,7 +444,6 @@ 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 @@ -471,18 +463,14 @@ 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 @@ -498,15 +486,12 @@ 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/definitions/grib2/tables/25/4.238.table b/definitions/grib2/tables/25/4.238.table index 84ae04c80..b5f56d292 100644 --- a/definitions/grib2/tables/25/4.238.table +++ b/definitions/grib2/tables/25/4.238.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/25/4.240.table b/definitions/grib2/tables/25/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/25/4.240.table +++ b/definitions/grib2/tables/25/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/25/4.241.table b/definitions/grib2/tables/25/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/25/4.241.table +++ b/definitions/grib2/tables/25/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/25/4.242.table b/definitions/grib2/tables/25/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/25/4.242.table +++ b/definitions/grib2/tables/25/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/4.243.table b/definitions/grib2/tables/25/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/25/4.243.table +++ b/definitions/grib2/tables/25/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/25/4.244.table b/definitions/grib2/tables/25/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/25/4.244.table +++ b/definitions/grib2/tables/25/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/4.3.table b/definitions/grib2/tables/25/4.3.table index cea1bef4f..8338bbd67 100644 --- a/definitions/grib2/tables/25/4.3.table +++ b/definitions/grib2/tables/25/4.3.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/25/4.4.table b/definitions/grib2/tables/25/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/25/4.4.table +++ b/definitions/grib2/tables/25/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/25/4.5.table b/definitions/grib2/tables/25/4.5.table index 9813bf777..4ce5f3178 100644 --- a/definitions/grib2/tables/25/4.5.table +++ b/definitions/grib2/tables/25/4.5.table @@ -16,21 +16,18 @@ 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) @@ -47,15 +44,12 @@ 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 sfc Lake or river bottom (-) @@ -67,18 +61,14 @@ 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 sfc 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/definitions/grib2/tables/25/4.6.table b/definitions/grib2/tables/25/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/25/4.6.table +++ b/definitions/grib2/tables/25/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/25/4.7.table b/definitions/grib2/tables/25/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/25/4.7.table +++ b/definitions/grib2/tables/25/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/25/4.8.table b/definitions/grib2/tables/25/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/25/4.8.table +++ b/definitions/grib2/tables/25/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/4.9.table b/definitions/grib2/tables/25/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/25/4.9.table +++ b/definitions/grib2/tables/25/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/25/4.91.table b/definitions/grib2/tables/25/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/25/4.91.table +++ b/definitions/grib2/tables/25/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/25/5.0.table b/definitions/grib2/tables/25/5.0.table index bf17dd722..be5eb0dbb 100644 --- a/definitions/grib2/tables/25/5.0.table +++ b/definitions/grib2/tables/25/5.0.table @@ -4,21 +4,14 @@ 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 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 diff --git a/definitions/grib2/tables/25/5.1.table b/definitions/grib2/tables/25/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/25/5.1.table +++ b/definitions/grib2/tables/25/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/5.2.table b/definitions/grib2/tables/25/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/25/5.2.table +++ b/definitions/grib2/tables/25/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/25/5.25.table b/definitions/grib2/tables/25/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/25/5.25.table +++ b/definitions/grib2/tables/25/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/25/5.26.table b/definitions/grib2/tables/25/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/25/5.26.table +++ b/definitions/grib2/tables/25/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/25/5.3.table b/definitions/grib2/tables/25/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/25/5.3.table +++ b/definitions/grib2/tables/25/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/5.4.table b/definitions/grib2/tables/25/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/25/5.4.table +++ b/definitions/grib2/tables/25/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/25/5.40.table b/definitions/grib2/tables/25/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/25/5.40.table +++ b/definitions/grib2/tables/25/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/25/5.5.table b/definitions/grib2/tables/25/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/25/5.5.table +++ b/definitions/grib2/tables/25/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/5.6.table b/definitions/grib2/tables/25/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/25/5.6.table +++ b/definitions/grib2/tables/25/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/25/5.7.table b/definitions/grib2/tables/25/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/25/5.7.table +++ b/definitions/grib2/tables/25/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/26/0.0.table b/definitions/grib2/tables/26/0.0.table index a8542e94f..a54c35af2 100644 --- a/definitions/grib2/tables/26/0.0.table +++ b/definitions/grib2/tables/26/0.0.table @@ -4,10 +4,6 @@ 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/definitions/grib2/tables/26/1.2.table b/definitions/grib2/tables/26/1.2.table index 638f1efbb..116bad779 100644 --- a/definitions/grib2/tables/26/1.2.table +++ b/definitions/grib2/tables/26/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/26/1.3.table b/definitions/grib2/tables/26/1.3.table index 5e2e59087..f82841612 100644 --- a/definitions/grib2/tables/26/1.3.table +++ b/definitions/grib2/tables/26/1.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/26/1.4.table b/definitions/grib2/tables/26/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/26/1.4.table +++ b/definitions/grib2/tables/26/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/26/1.5.table b/definitions/grib2/tables/26/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/26/1.5.table +++ b/definitions/grib2/tables/26/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/1.6.table b/definitions/grib2/tables/26/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/26/1.6.table +++ b/definitions/grib2/tables/26/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/26/3.0.table b/definitions/grib2/tables/26/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/26/3.0.table +++ b/definitions/grib2/tables/26/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/3.1.table b/definitions/grib2/tables/26/3.1.table index 41da4c59c..c33ecc3b4 100644 --- a/definitions/grib2/tables/26/3.1.table +++ b/definitions/grib2/tables/26/3.1.table @@ -5,50 +5,31 @@ 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 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/definitions/grib2/tables/26/3.10.table b/definitions/grib2/tables/26/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/26/3.10.table +++ b/definitions/grib2/tables/26/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/26/3.11.table b/definitions/grib2/tables/26/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/26/3.11.table +++ b/definitions/grib2/tables/26/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/26/3.15.table b/definitions/grib2/tables/26/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/26/3.15.table +++ b/definitions/grib2/tables/26/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/26/3.2.table b/definitions/grib2/tables/26/3.2.table index 3b6046969..d4ff95174 100644 --- a/definitions/grib2/tables/26/3.2.table +++ b/definitions/grib2/tables/26/3.2.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/26/3.20.table b/definitions/grib2/tables/26/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/26/3.20.table +++ b/definitions/grib2/tables/26/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/3.21.table b/definitions/grib2/tables/26/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/26/3.21.table +++ b/definitions/grib2/tables/26/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/26/3.25.table b/definitions/grib2/tables/26/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/26/3.25.table +++ b/definitions/grib2/tables/26/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/26/3.3.table b/definitions/grib2/tables/26/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/26/3.3.table +++ b/definitions/grib2/tables/26/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/26/3.7.table b/definitions/grib2/tables/26/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/26/3.7.table +++ b/definitions/grib2/tables/26/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/26/3.8.table b/definitions/grib2/tables/26/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/26/3.8.table +++ b/definitions/grib2/tables/26/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/3.9.table b/definitions/grib2/tables/26/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/26/3.9.table +++ b/definitions/grib2/tables/26/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/26/4.0.table b/definitions/grib2/tables/26/4.0.table index f364b851b..3c01a7476 100644 --- a/definitions/grib2/tables/26/4.0.table +++ b/definitions/grib2/tables/26/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -49,15 +44,12 @@ 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 @@ -68,17 +60,11 @@ 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/definitions/grib2/tables/26/4.1.0.table b/definitions/grib2/tables/26/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/26/4.1.0.table +++ b/definitions/grib2/tables/26/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/26/4.1.1.table b/definitions/grib2/tables/26/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/26/4.1.1.table +++ b/definitions/grib2/tables/26/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/4.1.10.table b/definitions/grib2/tables/26/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/26/4.1.10.table +++ b/definitions/grib2/tables/26/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/26/4.1.2.table b/definitions/grib2/tables/26/4.1.2.table index 046689b83..52d43c5d3 100644 --- a/definitions/grib2/tables/26/4.1.2.table +++ b/definitions/grib2/tables/26/4.1.2.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/26/4.1.20.table b/definitions/grib2/tables/26/4.1.20.table index fe4362b3c..e896462dc 100644 --- a/definitions/grib2/tables/26/4.1.20.table +++ b/definitions/grib2/tables/26/4.1.20.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/4.1.3.table b/definitions/grib2/tables/26/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/26/4.1.3.table +++ b/definitions/grib2/tables/26/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/26/4.1.4.table b/definitions/grib2/tables/26/4.1.4.table index 792feca5b..ba580bad0 100644 --- a/definitions/grib2/tables/26/4.1.4.table +++ b/definitions/grib2/tables/26/4.1.4.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/26/4.10.table b/definitions/grib2/tables/26/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/26/4.10.table +++ b/definitions/grib2/tables/26/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/26/4.11.table b/definitions/grib2/tables/26/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/26/4.11.table +++ b/definitions/grib2/tables/26/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/26/4.12.table b/definitions/grib2/tables/26/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/26/4.12.table +++ b/definitions/grib2/tables/26/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/4.13.table b/definitions/grib2/tables/26/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/26/4.13.table +++ b/definitions/grib2/tables/26/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.14.table b/definitions/grib2/tables/26/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/26/4.14.table +++ b/definitions/grib2/tables/26/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.15.table b/definitions/grib2/tables/26/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/26/4.15.table +++ b/definitions/grib2/tables/26/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/26/4.16.table b/definitions/grib2/tables/26/4.16.table index 5b9f6fd73..2e0c69752 100644 --- a/definitions/grib2/tables/26/4.16.table +++ b/definitions/grib2/tables/26/4.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/26/4.2.0.0.table b/definitions/grib2/tables/26/4.2.0.0.table index ec0a88ce8..abcc6952f 100644 --- a/definitions/grib2/tables/26/4.2.0.0.table +++ b/definitions/grib2/tables/26/4.2.0.0.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/26/4.2.0.1.table b/definitions/grib2/tables/26/4.2.0.1.table index 7e35d7d3c..f366a053c 100644 --- a/definitions/grib2/tables/26/4.2.0.1.table +++ b/definitions/grib2/tables/26/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -145,6 +144,4 @@ 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/definitions/grib2/tables/26/4.2.0.13.table b/definitions/grib2/tables/26/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/26/4.2.0.13.table +++ b/definitions/grib2/tables/26/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/26/4.2.0.14.table b/definitions/grib2/tables/26/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/26/4.2.0.14.table +++ b/definitions/grib2/tables/26/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/4.2.0.15.table b/definitions/grib2/tables/26/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/26/4.2.0.15.table +++ b/definitions/grib2/tables/26/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/26/4.2.0.16.table b/definitions/grib2/tables/26/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/26/4.2.0.16.table +++ b/definitions/grib2/tables/26/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/26/4.2.0.18.table b/definitions/grib2/tables/26/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/26/4.2.0.18.table +++ b/definitions/grib2/tables/26/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/26/4.2.0.19.table b/definitions/grib2/tables/26/4.2.0.19.table index a20afbfdc..9d0706c79 100644 --- a/definitions/grib2/tables/26/4.2.0.19.table +++ b/definitions/grib2/tables/26/4.2.0.19.table @@ -40,6 +40,4 @@ 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/definitions/grib2/tables/26/4.2.0.190.table b/definitions/grib2/tables/26/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/26/4.2.0.190.table +++ b/definitions/grib2/tables/26/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/26/4.2.0.191.table b/definitions/grib2/tables/26/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/26/4.2.0.191.table +++ b/definitions/grib2/tables/26/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/26/4.2.0.2.table b/definitions/grib2/tables/26/4.2.0.2.table index 8a70b2591..8651adc7c 100644 --- a/definitions/grib2/tables/26/4.2.0.2.table +++ b/definitions/grib2/tables/26/4.2.0.2.table @@ -46,6 +46,4 @@ 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/definitions/grib2/tables/26/4.2.0.20.table b/definitions/grib2/tables/26/4.2.0.20.table index 9b0170f5c..d799ca11e 100644 --- a/definitions/grib2/tables/26/4.2.0.20.table +++ b/definitions/grib2/tables/26/4.2.0.20.table @@ -17,7 +17,6 @@ 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) @@ -46,7 +45,6 @@ 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) @@ -59,6 +57,4 @@ 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/definitions/grib2/tables/26/4.2.0.3.table b/definitions/grib2/tables/26/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/26/4.2.0.3.table +++ b/definitions/grib2/tables/26/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/26/4.2.0.4.table b/definitions/grib2/tables/26/4.2.0.4.table index 226b1e23b..d852be811 100644 --- a/definitions/grib2/tables/26/4.2.0.4.table +++ b/definitions/grib2/tables/26/4.2.0.4.table @@ -14,12 +14,9 @@ 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/definitions/grib2/tables/26/4.2.0.5.table b/definitions/grib2/tables/26/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/26/4.2.0.5.table +++ b/definitions/grib2/tables/26/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/26/4.2.0.6.table b/definitions/grib2/tables/26/4.2.0.6.table index 35f7b5dca..df9eca404 100644 --- a/definitions/grib2/tables/26/4.2.0.6.table +++ b/definitions/grib2/tables/26/4.2.0.6.table @@ -40,11 +40,8 @@ 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/definitions/grib2/tables/26/4.2.0.7.table b/definitions/grib2/tables/26/4.2.0.7.table index e9aa4e39b..312885ef6 100644 --- a/definitions/grib2/tables/26/4.2.0.7.table +++ b/definitions/grib2/tables/26/4.2.0.7.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/26/4.2.1.0.table b/definitions/grib2/tables/26/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/26/4.2.1.0.table +++ b/definitions/grib2/tables/26/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/26/4.2.1.1.table b/definitions/grib2/tables/26/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/26/4.2.1.1.table +++ b/definitions/grib2/tables/26/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/4.2.10.0.table b/definitions/grib2/tables/26/4.2.10.0.table index 0ddb10c2b..3b946f594 100644 --- a/definitions/grib2/tables/26/4.2.10.0.table +++ b/definitions/grib2/tables/26/4.2.10.0.table @@ -64,6 +64,4 @@ 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/definitions/grib2/tables/26/4.2.10.1.table b/definitions/grib2/tables/26/4.2.10.1.table index 237e6865a..926267e52 100644 --- a/definitions/grib2/tables/26/4.2.10.1.table +++ b/definitions/grib2/tables/26/4.2.10.1.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/26/4.2.10.191.table b/definitions/grib2/tables/26/4.2.10.191.table index 1ebf85006..042104fec 100644 --- a/definitions/grib2/tables/26/4.2.10.191.table +++ b/definitions/grib2/tables/26/4.2.10.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/26/4.2.10.2.table b/definitions/grib2/tables/26/4.2.10.2.table index 4633bad4f..d293c3cbb 100644 --- a/definitions/grib2/tables/26/4.2.10.2.table +++ b/definitions/grib2/tables/26/4.2.10.2.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/26/4.2.10.3.table b/definitions/grib2/tables/26/4.2.10.3.table index ac1603ecc..ba65a71f8 100644 --- a/definitions/grib2/tables/26/4.2.10.3.table +++ b/definitions/grib2/tables/26/4.2.10.3.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/26/4.2.10.4.table b/definitions/grib2/tables/26/4.2.10.4.table index 66e9a323c..64c706b14 100644 --- a/definitions/grib2/tables/26/4.2.10.4.table +++ b/definitions/grib2/tables/26/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -19,6 +18,4 @@ 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/definitions/grib2/tables/26/4.2.2.0.table b/definitions/grib2/tables/26/4.2.2.0.table index bcfc982b7..137c8deb2 100644 --- a/definitions/grib2/tables/26/4.2.2.0.table +++ b/definitions/grib2/tables/26/4.2.2.0.table @@ -39,6 +39,4 @@ 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/definitions/grib2/tables/26/4.2.2.3.table b/definitions/grib2/tables/26/4.2.2.3.table index cb2cb71d0..45db96b6e 100644 --- a/definitions/grib2/tables/26/4.2.2.3.table +++ b/definitions/grib2/tables/26/4.2.2.3.table @@ -28,6 +28,4 @@ 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/definitions/grib2/tables/26/4.2.2.4.table b/definitions/grib2/tables/26/4.2.2.4.table index 5598e5775..4cabab901 100644 --- a/definitions/grib2/tables/26/4.2.2.4.table +++ b/definitions/grib2/tables/26/4.2.2.4.table @@ -19,6 +19,4 @@ 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/definitions/grib2/tables/26/4.2.2.5.table b/definitions/grib2/tables/26/4.2.2.5.table index a5a71dcd1..476893691 100644 --- a/definitions/grib2/tables/26/4.2.2.5.table +++ b/definitions/grib2/tables/26/4.2.2.5.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.2.20.0.table b/definitions/grib2/tables/26/4.2.20.0.table index cf842f6ea..5ba472f7d 100644 --- a/definitions/grib2/tables/26/4.2.20.0.table +++ b/definitions/grib2/tables/26/4.2.20.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.2.20.1.table b/definitions/grib2/tables/26/4.2.20.1.table index 3c94cdf17..130e49bd2 100644 --- a/definitions/grib2/tables/26/4.2.20.1.table +++ b/definitions/grib2/tables/26/4.2.20.1.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/26/4.2.20.2.table b/definitions/grib2/tables/26/4.2.20.2.table index 8a937c0d1..cc0ec086d 100644 --- a/definitions/grib2/tables/26/4.2.20.2.table +++ b/definitions/grib2/tables/26/4.2.20.2.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/26/4.2.3.0.table b/definitions/grib2/tables/26/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/26/4.2.3.0.table +++ b/definitions/grib2/tables/26/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/26/4.2.3.1.table b/definitions/grib2/tables/26/4.2.3.1.table index 365e59a22..a46651ebe 100644 --- a/definitions/grib2/tables/26/4.2.3.1.table +++ b/definitions/grib2/tables/26/4.2.3.1.table @@ -23,13 +23,9 @@ 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/definitions/grib2/tables/26/4.2.4.0.table b/definitions/grib2/tables/26/4.2.4.0.table index f89f1fee8..9799f20e7 100644 --- a/definitions/grib2/tables/26/4.2.4.0.table +++ b/definitions/grib2/tables/26/4.2.4.0.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/26/4.2.4.1.table b/definitions/grib2/tables/26/4.2.4.1.table index de1bb48b1..4a40748fd 100644 --- a/definitions/grib2/tables/26/4.2.4.1.table +++ b/definitions/grib2/tables/26/4.2.4.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/26/4.2.4.10.table b/definitions/grib2/tables/26/4.2.4.10.table index dade20fca..60e6de862 100644 --- a/definitions/grib2/tables/26/4.2.4.10.table +++ b/definitions/grib2/tables/26/4.2.4.10.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/26/4.2.4.2.table b/definitions/grib2/tables/26/4.2.4.2.table index 0ab69cf2c..9016955af 100644 --- a/definitions/grib2/tables/26/4.2.4.2.table +++ b/definitions/grib2/tables/26/4.2.4.2.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/26/4.2.4.3.table b/definitions/grib2/tables/26/4.2.4.3.table index 943251fca..127ecebd8 100644 --- a/definitions/grib2/tables/26/4.2.4.3.table +++ b/definitions/grib2/tables/26/4.2.4.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/26/4.2.4.4.table b/definitions/grib2/tables/26/4.2.4.4.table index 991faa417..049cfb8b3 100644 --- a/definitions/grib2/tables/26/4.2.4.4.table +++ b/definitions/grib2/tables/26/4.2.4.4.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/26/4.2.4.5.table b/definitions/grib2/tables/26/4.2.4.5.table index e4aae61da..83b377187 100644 --- a/definitions/grib2/tables/26/4.2.4.5.table +++ b/definitions/grib2/tables/26/4.2.4.5.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/26/4.2.4.6.table b/definitions/grib2/tables/26/4.2.4.6.table index 64dccb947..298ef881f 100644 --- a/definitions/grib2/tables/26/4.2.4.6.table +++ b/definitions/grib2/tables/26/4.2.4.6.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/26/4.2.4.7.table b/definitions/grib2/tables/26/4.2.4.7.table index 98dd1d649..bd90b12b5 100644 --- a/definitions/grib2/tables/26/4.2.4.7.table +++ b/definitions/grib2/tables/26/4.2.4.7.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/26/4.2.4.8.table b/definitions/grib2/tables/26/4.2.4.8.table index 3c7834a9a..c6ab1f271 100644 --- a/definitions/grib2/tables/26/4.2.4.8.table +++ b/definitions/grib2/tables/26/4.2.4.8.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/26/4.2.4.9.table b/definitions/grib2/tables/26/4.2.4.9.table index df8ceaac2..148c54692 100644 --- a/definitions/grib2/tables/26/4.2.4.9.table +++ b/definitions/grib2/tables/26/4.2.4.9.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/4.201.table b/definitions/grib2/tables/26/4.201.table index 0dca20884..a902d6083 100644 --- a/definitions/grib2/tables/26/4.201.table +++ b/definitions/grib2/tables/26/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/26/4.202.table b/definitions/grib2/tables/26/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/26/4.202.table +++ b/definitions/grib2/tables/26/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.203.table b/definitions/grib2/tables/26/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/26/4.203.table +++ b/definitions/grib2/tables/26/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/26/4.204.table b/definitions/grib2/tables/26/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/26/4.204.table +++ b/definitions/grib2/tables/26/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/26/4.205.table b/definitions/grib2/tables/26/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/26/4.205.table +++ b/definitions/grib2/tables/26/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.206.table b/definitions/grib2/tables/26/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/26/4.206.table +++ b/definitions/grib2/tables/26/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.207.table b/definitions/grib2/tables/26/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/26/4.207.table +++ b/definitions/grib2/tables/26/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.208.table b/definitions/grib2/tables/26/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/26/4.208.table +++ b/definitions/grib2/tables/26/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.209.table b/definitions/grib2/tables/26/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/26/4.209.table +++ b/definitions/grib2/tables/26/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/26/4.210.table b/definitions/grib2/tables/26/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/26/4.210.table +++ b/definitions/grib2/tables/26/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.211.table b/definitions/grib2/tables/26/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/26/4.211.table +++ b/definitions/grib2/tables/26/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/4.212.table b/definitions/grib2/tables/26/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/26/4.212.table +++ b/definitions/grib2/tables/26/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/26/4.213.table b/definitions/grib2/tables/26/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/26/4.213.table +++ b/definitions/grib2/tables/26/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/26/4.214.table b/definitions/grib2/tables/26/4.214.table index b08860ce0..c0eaeda75 100644 --- a/definitions/grib2/tables/26/4.214.table +++ b/definitions/grib2/tables/26/4.214.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/26/4.215.table b/definitions/grib2/tables/26/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/26/4.215.table +++ b/definitions/grib2/tables/26/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/26/4.216.table b/definitions/grib2/tables/26/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/26/4.216.table +++ b/definitions/grib2/tables/26/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/26/4.217.table b/definitions/grib2/tables/26/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/26/4.217.table +++ b/definitions/grib2/tables/26/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/26/4.218.table b/definitions/grib2/tables/26/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/26/4.218.table +++ b/definitions/grib2/tables/26/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/26/4.219.table b/definitions/grib2/tables/26/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/26/4.219.table +++ b/definitions/grib2/tables/26/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/26/4.220.table b/definitions/grib2/tables/26/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/26/4.220.table +++ b/definitions/grib2/tables/26/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.221.table b/definitions/grib2/tables/26/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/26/4.221.table +++ b/definitions/grib2/tables/26/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.222.table b/definitions/grib2/tables/26/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/26/4.222.table +++ b/definitions/grib2/tables/26/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.224.table b/definitions/grib2/tables/26/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/26/4.224.table +++ b/definitions/grib2/tables/26/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/26/4.227.table b/definitions/grib2/tables/26/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/26/4.227.table +++ b/definitions/grib2/tables/26/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/26/4.228.table b/definitions/grib2/tables/26/4.228.table index 048a69f0b..88c3dd87c 100644 --- a/definitions/grib2/tables/26/4.228.table +++ b/definitions/grib2/tables/26/4.228.table @@ -4,5 +4,4 @@ 2 2 Light 3 3 Moderate 4 4 Severe -# 5-254 Reserved 255 255 Missing value diff --git a/definitions/grib2/tables/26/4.230.table b/definitions/grib2/tables/26/4.230.table index ebeec9e62..c26de613f 100644 --- a/definitions/grib2/tables/26/4.230.table +++ b/definitions/grib2/tables/26/4.230.table @@ -46,7 +46,6 @@ 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 @@ -106,10 +105,8 @@ 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 @@ -132,9 +129,7 @@ 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 @@ -422,12 +417,10 @@ 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 @@ -461,7 +454,6 @@ 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 @@ -481,22 +473,18 @@ 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 @@ -513,15 +501,12 @@ 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/definitions/grib2/tables/26/4.233.table b/definitions/grib2/tables/26/4.233.table index 7d8c2ec2f..3c421212e 100644 --- a/definitions/grib2/tables/26/4.233.table +++ b/definitions/grib2/tables/26/4.233.table @@ -46,7 +46,6 @@ 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 @@ -106,10 +105,8 @@ 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 @@ -132,9 +129,7 @@ 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 @@ -422,12 +417,10 @@ 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 @@ -461,7 +454,6 @@ 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 @@ -481,22 +473,18 @@ 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 @@ -513,15 +501,12 @@ 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/definitions/grib2/tables/26/4.238.table b/definitions/grib2/tables/26/4.238.table index be5be3a90..abd570100 100644 --- a/definitions/grib2/tables/26/4.238.table +++ b/definitions/grib2/tables/26/4.238.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/26/4.240.table b/definitions/grib2/tables/26/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/26/4.240.table +++ b/definitions/grib2/tables/26/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/26/4.241.table b/definitions/grib2/tables/26/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/26/4.241.table +++ b/definitions/grib2/tables/26/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/26/4.242.table b/definitions/grib2/tables/26/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/26/4.242.table +++ b/definitions/grib2/tables/26/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/4.243.table b/definitions/grib2/tables/26/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/26/4.243.table +++ b/definitions/grib2/tables/26/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/26/4.244.table b/definitions/grib2/tables/26/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/26/4.244.table +++ b/definitions/grib2/tables/26/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/4.246.table b/definitions/grib2/tables/26/4.246.table index 0ca9c0c98..74c16312c 100644 --- a/definitions/grib2/tables/26/4.246.table +++ b/definitions/grib2/tables/26/4.246.table @@ -3,5 +3,4 @@ 1 1 Weak thunderstorm 2 2 Moderate thunderstorm 3 3 Severe thunderstorm -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/26/4.247.table b/definitions/grib2/tables/26/4.247.table index 6da16e396..5a55bf127 100644 --- a/definitions/grib2/tables/26/4.247.table +++ b/definitions/grib2/tables/26/4.247.table @@ -3,5 +3,4 @@ 1 1 Light precipitation 2 2 Moderate precipitation 3 3 Heavy precipitation -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/26/4.3.table b/definitions/grib2/tables/26/4.3.table index cea1bef4f..8338bbd67 100644 --- a/definitions/grib2/tables/26/4.3.table +++ b/definitions/grib2/tables/26/4.3.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/26/4.4.table b/definitions/grib2/tables/26/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/26/4.4.table +++ b/definitions/grib2/tables/26/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/26/4.5.table b/definitions/grib2/tables/26/4.5.table index 4ecc8e6a6..9d247e599 100644 --- a/definitions/grib2/tables/26/4.5.table +++ b/definitions/grib2/tables/26/4.5.table @@ -18,21 +18,18 @@ 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) @@ -49,15 +46,12 @@ 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 sfc Lake or river bottom (-) @@ -69,18 +63,14 @@ 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 sfc 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/definitions/grib2/tables/26/4.6.table b/definitions/grib2/tables/26/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/26/4.6.table +++ b/definitions/grib2/tables/26/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/26/4.7.table b/definitions/grib2/tables/26/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/26/4.7.table +++ b/definitions/grib2/tables/26/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/26/4.8.table b/definitions/grib2/tables/26/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/26/4.8.table +++ b/definitions/grib2/tables/26/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/4.9.table b/definitions/grib2/tables/26/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/26/4.9.table +++ b/definitions/grib2/tables/26/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/26/4.91.table b/definitions/grib2/tables/26/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/26/4.91.table +++ b/definitions/grib2/tables/26/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/26/5.0.table b/definitions/grib2/tables/26/5.0.table index 5e00004b0..115b708f2 100644 --- a/definitions/grib2/tables/26/5.0.table +++ b/definitions/grib2/tables/26/5.0.table @@ -4,19 +4,12 @@ 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 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/definitions/grib2/tables/26/5.1.table b/definitions/grib2/tables/26/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/26/5.1.table +++ b/definitions/grib2/tables/26/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/5.2.table b/definitions/grib2/tables/26/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/26/5.2.table +++ b/definitions/grib2/tables/26/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/26/5.25.table b/definitions/grib2/tables/26/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/26/5.25.table +++ b/definitions/grib2/tables/26/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/26/5.26.table b/definitions/grib2/tables/26/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/26/5.26.table +++ b/definitions/grib2/tables/26/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/26/5.3.table b/definitions/grib2/tables/26/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/26/5.3.table +++ b/definitions/grib2/tables/26/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/5.4.table b/definitions/grib2/tables/26/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/26/5.4.table +++ b/definitions/grib2/tables/26/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/26/5.40.table b/definitions/grib2/tables/26/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/26/5.40.table +++ b/definitions/grib2/tables/26/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/26/5.5.table b/definitions/grib2/tables/26/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/26/5.5.table +++ b/definitions/grib2/tables/26/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/5.6.table b/definitions/grib2/tables/26/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/26/5.6.table +++ b/definitions/grib2/tables/26/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/26/5.7.table b/definitions/grib2/tables/26/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/26/5.7.table +++ b/definitions/grib2/tables/26/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/27/0.0.table b/definitions/grib2/tables/27/0.0.table index a8542e94f..a54c35af2 100644 --- a/definitions/grib2/tables/27/0.0.table +++ b/definitions/grib2/tables/27/0.0.table @@ -4,10 +4,6 @@ 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/definitions/grib2/tables/27/1.2.table b/definitions/grib2/tables/27/1.2.table index 77f96637a..5371406eb 100644 --- a/definitions/grib2/tables/27/1.2.table +++ b/definitions/grib2/tables/27/1.2.table @@ -4,6 +4,4 @@ 2 2 Verifying time of forecast 3 3 Observation time 4 4 Local time -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/1.3.table b/definitions/grib2/tables/27/1.3.table index 5e2e59087..f82841612 100644 --- a/definitions/grib2/tables/27/1.3.table +++ b/definitions/grib2/tables/27/1.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/27/1.4.table b/definitions/grib2/tables/27/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/27/1.4.table +++ b/definitions/grib2/tables/27/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/27/1.5.table b/definitions/grib2/tables/27/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/27/1.5.table +++ b/definitions/grib2/tables/27/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/1.6.table b/definitions/grib2/tables/27/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/27/1.6.table +++ b/definitions/grib2/tables/27/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/27/3.0.table b/definitions/grib2/tables/27/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/27/3.0.table +++ b/definitions/grib2/tables/27/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/3.1.table b/definitions/grib2/tables/27/3.1.table index 41da4c59c..c33ecc3b4 100644 --- a/definitions/grib2/tables/27/3.1.table +++ b/definitions/grib2/tables/27/3.1.table @@ -5,50 +5,31 @@ 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 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/definitions/grib2/tables/27/3.10.table b/definitions/grib2/tables/27/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/27/3.10.table +++ b/definitions/grib2/tables/27/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/27/3.11.table b/definitions/grib2/tables/27/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/27/3.11.table +++ b/definitions/grib2/tables/27/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/27/3.15.table b/definitions/grib2/tables/27/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/27/3.15.table +++ b/definitions/grib2/tables/27/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/27/3.2.table b/definitions/grib2/tables/27/3.2.table index 3b6046969..d4ff95174 100644 --- a/definitions/grib2/tables/27/3.2.table +++ b/definitions/grib2/tables/27/3.2.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/27/3.20.table b/definitions/grib2/tables/27/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/27/3.20.table +++ b/definitions/grib2/tables/27/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/3.21.table b/definitions/grib2/tables/27/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/27/3.21.table +++ b/definitions/grib2/tables/27/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/27/3.25.table b/definitions/grib2/tables/27/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/27/3.25.table +++ b/definitions/grib2/tables/27/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/27/3.3.table b/definitions/grib2/tables/27/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/27/3.3.table +++ b/definitions/grib2/tables/27/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/27/3.7.table b/definitions/grib2/tables/27/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/27/3.7.table +++ b/definitions/grib2/tables/27/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/27/3.8.table b/definitions/grib2/tables/27/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/27/3.8.table +++ b/definitions/grib2/tables/27/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/3.9.table b/definitions/grib2/tables/27/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/27/3.9.table +++ b/definitions/grib2/tables/27/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/27/4.0.table b/definitions/grib2/tables/27/4.0.table index 480c65e95..7020470b2 100644 --- a/definitions/grib2/tables/27/4.0.table +++ b/definitions/grib2/tables/27/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -49,15 +44,12 @@ 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 @@ -71,17 +63,11 @@ 86 86 Quantile forecasts at a horizontal level or in a horizontal layer at a point in time 87 87 Quantile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval 88 88 Analysis or forecast at a horizontal level or in a horizontal layer at a specified local time -# 89-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/definitions/grib2/tables/27/4.1.0.table b/definitions/grib2/tables/27/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/27/4.1.0.table +++ b/definitions/grib2/tables/27/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/27/4.1.1.table b/definitions/grib2/tables/27/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/27/4.1.1.table +++ b/definitions/grib2/tables/27/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/4.1.10.table b/definitions/grib2/tables/27/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/27/4.1.10.table +++ b/definitions/grib2/tables/27/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/27/4.1.2.table b/definitions/grib2/tables/27/4.1.2.table index 046689b83..52d43c5d3 100644 --- a/definitions/grib2/tables/27/4.1.2.table +++ b/definitions/grib2/tables/27/4.1.2.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/27/4.1.20.table b/definitions/grib2/tables/27/4.1.20.table index fe4362b3c..e896462dc 100644 --- a/definitions/grib2/tables/27/4.1.20.table +++ b/definitions/grib2/tables/27/4.1.20.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/4.1.3.table b/definitions/grib2/tables/27/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/27/4.1.3.table +++ b/definitions/grib2/tables/27/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/27/4.1.4.table b/definitions/grib2/tables/27/4.1.4.table index 792feca5b..ba580bad0 100644 --- a/definitions/grib2/tables/27/4.1.4.table +++ b/definitions/grib2/tables/27/4.1.4.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/27/4.10.table b/definitions/grib2/tables/27/4.10.table index 8a390e4be..66119b866 100644 --- a/definitions/grib2/tables/27/4.10.table +++ b/definitions/grib2/tables/27/4.10.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/27/4.11.table b/definitions/grib2/tables/27/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/27/4.11.table +++ b/definitions/grib2/tables/27/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/27/4.12.table b/definitions/grib2/tables/27/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/27/4.12.table +++ b/definitions/grib2/tables/27/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/4.13.table b/definitions/grib2/tables/27/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/27/4.13.table +++ b/definitions/grib2/tables/27/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.14.table b/definitions/grib2/tables/27/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/27/4.14.table +++ b/definitions/grib2/tables/27/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.15.table b/definitions/grib2/tables/27/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/27/4.15.table +++ b/definitions/grib2/tables/27/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/27/4.16.table b/definitions/grib2/tables/27/4.16.table index 5b9f6fd73..2e0c69752 100644 --- a/definitions/grib2/tables/27/4.16.table +++ b/definitions/grib2/tables/27/4.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/27/4.2.0.0.table b/definitions/grib2/tables/27/4.2.0.0.table index ec0a88ce8..abcc6952f 100644 --- a/definitions/grib2/tables/27/4.2.0.0.table +++ b/definitions/grib2/tables/27/4.2.0.0.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/27/4.2.0.1.table b/definitions/grib2/tables/27/4.2.0.1.table index 146ec4124..02da5aaa2 100644 --- a/definitions/grib2/tables/27/4.2.0.1.table +++ b/definitions/grib2/tables/27/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -146,6 +145,4 @@ 144 144 Specific rain water content (convective) (kg kg-1) 145 145 Specific snow water content (convective) (kg kg-1) 146 146 Cloud ice precipitation rate (kg m-2 s-1) -# 147-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.13.table b/definitions/grib2/tables/27/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/27/4.2.0.13.table +++ b/definitions/grib2/tables/27/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/27/4.2.0.14.table b/definitions/grib2/tables/27/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/27/4.2.0.14.table +++ b/definitions/grib2/tables/27/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/4.2.0.15.table b/definitions/grib2/tables/27/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/27/4.2.0.15.table +++ b/definitions/grib2/tables/27/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/27/4.2.0.16.table b/definitions/grib2/tables/27/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/27/4.2.0.16.table +++ b/definitions/grib2/tables/27/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/27/4.2.0.18.table b/definitions/grib2/tables/27/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/27/4.2.0.18.table +++ b/definitions/grib2/tables/27/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/27/4.2.0.19.table b/definitions/grib2/tables/27/4.2.0.19.table index 1ae94c6e6..a602d20e3 100644 --- a/definitions/grib2/tables/27/4.2.0.19.table +++ b/definitions/grib2/tables/27/4.2.0.19.table @@ -40,6 +40,4 @@ 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/definitions/grib2/tables/27/4.2.0.190.table b/definitions/grib2/tables/27/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/27/4.2.0.190.table +++ b/definitions/grib2/tables/27/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/27/4.2.0.191.table b/definitions/grib2/tables/27/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/27/4.2.0.191.table +++ b/definitions/grib2/tables/27/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/27/4.2.0.2.table b/definitions/grib2/tables/27/4.2.0.2.table index 8a70b2591..8651adc7c 100644 --- a/definitions/grib2/tables/27/4.2.0.2.table +++ b/definitions/grib2/tables/27/4.2.0.2.table @@ -46,6 +46,4 @@ 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/definitions/grib2/tables/27/4.2.0.20.table b/definitions/grib2/tables/27/4.2.0.20.table index 9b0170f5c..d799ca11e 100644 --- a/definitions/grib2/tables/27/4.2.0.20.table +++ b/definitions/grib2/tables/27/4.2.0.20.table @@ -17,7 +17,6 @@ 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) @@ -46,7 +45,6 @@ 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) @@ -59,6 +57,4 @@ 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/definitions/grib2/tables/27/4.2.0.3.table b/definitions/grib2/tables/27/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/27/4.2.0.3.table +++ b/definitions/grib2/tables/27/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/27/4.2.0.4.table b/definitions/grib2/tables/27/4.2.0.4.table index 226b1e23b..d852be811 100644 --- a/definitions/grib2/tables/27/4.2.0.4.table +++ b/definitions/grib2/tables/27/4.2.0.4.table @@ -14,12 +14,9 @@ 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/definitions/grib2/tables/27/4.2.0.5.table b/definitions/grib2/tables/27/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/27/4.2.0.5.table +++ b/definitions/grib2/tables/27/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/27/4.2.0.6.table b/definitions/grib2/tables/27/4.2.0.6.table index 35f7b5dca..df9eca404 100644 --- a/definitions/grib2/tables/27/4.2.0.6.table +++ b/definitions/grib2/tables/27/4.2.0.6.table @@ -40,11 +40,8 @@ 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/definitions/grib2/tables/27/4.2.0.7.table b/definitions/grib2/tables/27/4.2.0.7.table index e9aa4e39b..312885ef6 100644 --- a/definitions/grib2/tables/27/4.2.0.7.table +++ b/definitions/grib2/tables/27/4.2.0.7.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/27/4.2.1.0.table b/definitions/grib2/tables/27/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/27/4.2.1.0.table +++ b/definitions/grib2/tables/27/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/27/4.2.1.1.table b/definitions/grib2/tables/27/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/27/4.2.1.1.table +++ b/definitions/grib2/tables/27/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/4.2.1.2.table b/definitions/grib2/tables/27/4.2.1.2.table index 84844b25a..5990036cb 100644 --- a/definitions/grib2/tables/27/4.2.1.2.table +++ b/definitions/grib2/tables/27/4.2.1.2.table @@ -14,6 +14,4 @@ 12 12 Salinity (kg/kg) 13 13 Cross-sectional area of flow in channel (m2) 14 14 Snow temperature (K) -# 15-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.0.table b/definitions/grib2/tables/27/4.2.10.0.table index db25b251f..cb0363b6d 100644 --- a/definitions/grib2/tables/27/4.2.10.0.table +++ b/definitions/grib2/tables/27/4.2.10.0.table @@ -71,6 +71,4 @@ 69 69 Peak wave direction of second swell partition (degree true) 70 70 Peak wave direction of third swell partition (degree true) 71 71 Peak direction of wind waves (degree true) -# 72-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.1.table b/definitions/grib2/tables/27/4.2.10.1.table index 237e6865a..926267e52 100644 --- a/definitions/grib2/tables/27/4.2.10.1.table +++ b/definitions/grib2/tables/27/4.2.10.1.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/27/4.2.10.191.table b/definitions/grib2/tables/27/4.2.10.191.table index fe90ab6aa..a38a452bd 100644 --- a/definitions/grib2/tables/27/4.2.10.191.table +++ b/definitions/grib2/tables/27/4.2.10.191.table @@ -4,6 +4,4 @@ 2 2 Reserved 3 3 Days since last observation (d) 4 4 Barotropic stream function (m3 s-1) -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.2.table b/definitions/grib2/tables/27/4.2.10.2.table index 6fbb95a65..2fa06dc3c 100644 --- a/definitions/grib2/tables/27/4.2.10.2.table +++ b/definitions/grib2/tables/27/4.2.10.2.table @@ -13,6 +13,4 @@ 11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) 12 12 Compressive ice strength (N/m) 13 13 Snow temperature (over sea ice) (K) -# 14-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.3.table b/definitions/grib2/tables/27/4.2.10.3.table index a922ee799..8c360ba0a 100644 --- a/definitions/grib2/tables/27/4.2.10.3.table +++ b/definitions/grib2/tables/27/4.2.10.3.table @@ -11,6 +11,4 @@ 9 9 Thermosteric change in sea surface height (m) 10 10 Halosteric change in sea surface height (m) 11 11 Steric change in sea surface height (m) -# 12-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.4.table b/definitions/grib2/tables/27/4.2.10.4.table index 677cbbcb0..1904b97c4 100644 --- a/definitions/grib2/tables/27/4.2.10.4.table +++ b/definitions/grib2/tables/27/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -25,6 +24,4 @@ 25 25 x-component water velocity (m s-1) 26 26 y-component water velocity (m s-1) 27 27 Upward water velocity (m s-1) -# 28-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.0.table b/definitions/grib2/tables/27/4.2.2.0.table index 4ffd25ae9..214227958 100644 --- a/definitions/grib2/tables/27/4.2.2.0.table +++ b/definitions/grib2/tables/27/4.2.2.0.table @@ -40,6 +40,4 @@ 38 38 Soil volumetric ice content (water equivalent) (m3 m-3) 39 39 Evapotranspiration rate (kg m-2 s-1) 40 40 Potential evapotranspiration rate (kg m-2 s-1) -# 41-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.3.table b/definitions/grib2/tables/27/4.2.2.3.table index d5540f48b..a2f48a7d9 100644 --- a/definitions/grib2/tables/27/4.2.2.3.table +++ b/definitions/grib2/tables/27/4.2.2.3.table @@ -29,6 +29,4 @@ 27 27 Soil depth (m) 28 28 Snow temperature (K) 29 29 Ice temperature (K) -# 30-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.4.table b/definitions/grib2/tables/27/4.2.2.4.table index 5bc0b0b70..a7ff17739 100644 --- a/definitions/grib2/tables/27/4.2.2.4.table +++ b/definitions/grib2/tables/27/4.2.2.4.table @@ -19,6 +19,4 @@ 17 17 Burning index (as defined by the US Forest Service National Fire Danger Rating System) (Numeric) 18 18 Ignition component (as defined by the US Forest Service National Fire Danger Rating System) (%) 19 19 Energy release component (as defined by the US Forest Service National Fire Danger Rating System) (Joule/m2) -# 20-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.5.table b/definitions/grib2/tables/27/4.2.2.5.table index a5a71dcd1..476893691 100644 --- a/definitions/grib2/tables/27/4.2.2.5.table +++ b/definitions/grib2/tables/27/4.2.2.5.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.2.20.0.table b/definitions/grib2/tables/27/4.2.20.0.table index cf842f6ea..5ba472f7d 100644 --- a/definitions/grib2/tables/27/4.2.20.0.table +++ b/definitions/grib2/tables/27/4.2.20.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.2.20.1.table b/definitions/grib2/tables/27/4.2.20.1.table index 3c94cdf17..130e49bd2 100644 --- a/definitions/grib2/tables/27/4.2.20.1.table +++ b/definitions/grib2/tables/27/4.2.20.1.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/27/4.2.20.2.table b/definitions/grib2/tables/27/4.2.20.2.table index 8a937c0d1..cc0ec086d 100644 --- a/definitions/grib2/tables/27/4.2.20.2.table +++ b/definitions/grib2/tables/27/4.2.20.2.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/27/4.2.3.0.table b/definitions/grib2/tables/27/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/27/4.2.3.0.table +++ b/definitions/grib2/tables/27/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/27/4.2.3.1.table b/definitions/grib2/tables/27/4.2.3.1.table index 365e59a22..a46651ebe 100644 --- a/definitions/grib2/tables/27/4.2.3.1.table +++ b/definitions/grib2/tables/27/4.2.3.1.table @@ -23,13 +23,9 @@ 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/definitions/grib2/tables/27/4.2.4.0.table b/definitions/grib2/tables/27/4.2.4.0.table index f89f1fee8..9799f20e7 100644 --- a/definitions/grib2/tables/27/4.2.4.0.table +++ b/definitions/grib2/tables/27/4.2.4.0.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/27/4.2.4.1.table b/definitions/grib2/tables/27/4.2.4.1.table index de1bb48b1..4a40748fd 100644 --- a/definitions/grib2/tables/27/4.2.4.1.table +++ b/definitions/grib2/tables/27/4.2.4.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/27/4.2.4.10.table b/definitions/grib2/tables/27/4.2.4.10.table index dade20fca..60e6de862 100644 --- a/definitions/grib2/tables/27/4.2.4.10.table +++ b/definitions/grib2/tables/27/4.2.4.10.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/27/4.2.4.2.table b/definitions/grib2/tables/27/4.2.4.2.table index 0ab69cf2c..9016955af 100644 --- a/definitions/grib2/tables/27/4.2.4.2.table +++ b/definitions/grib2/tables/27/4.2.4.2.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/27/4.2.4.3.table b/definitions/grib2/tables/27/4.2.4.3.table index 943251fca..127ecebd8 100644 --- a/definitions/grib2/tables/27/4.2.4.3.table +++ b/definitions/grib2/tables/27/4.2.4.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/27/4.2.4.4.table b/definitions/grib2/tables/27/4.2.4.4.table index 991faa417..049cfb8b3 100644 --- a/definitions/grib2/tables/27/4.2.4.4.table +++ b/definitions/grib2/tables/27/4.2.4.4.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/27/4.2.4.5.table b/definitions/grib2/tables/27/4.2.4.5.table index e4aae61da..83b377187 100644 --- a/definitions/grib2/tables/27/4.2.4.5.table +++ b/definitions/grib2/tables/27/4.2.4.5.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/27/4.2.4.6.table b/definitions/grib2/tables/27/4.2.4.6.table index 64dccb947..298ef881f 100644 --- a/definitions/grib2/tables/27/4.2.4.6.table +++ b/definitions/grib2/tables/27/4.2.4.6.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/27/4.2.4.7.table b/definitions/grib2/tables/27/4.2.4.7.table index 98dd1d649..bd90b12b5 100644 --- a/definitions/grib2/tables/27/4.2.4.7.table +++ b/definitions/grib2/tables/27/4.2.4.7.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/27/4.2.4.8.table b/definitions/grib2/tables/27/4.2.4.8.table index 3c7834a9a..c6ab1f271 100644 --- a/definitions/grib2/tables/27/4.2.4.8.table +++ b/definitions/grib2/tables/27/4.2.4.8.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/27/4.2.4.9.table b/definitions/grib2/tables/27/4.2.4.9.table index df8ceaac2..148c54692 100644 --- a/definitions/grib2/tables/27/4.2.4.9.table +++ b/definitions/grib2/tables/27/4.2.4.9.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/4.201.table b/definitions/grib2/tables/27/4.201.table index 0dca20884..a902d6083 100644 --- a/definitions/grib2/tables/27/4.201.table +++ b/definitions/grib2/tables/27/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/27/4.202.table b/definitions/grib2/tables/27/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/27/4.202.table +++ b/definitions/grib2/tables/27/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.203.table b/definitions/grib2/tables/27/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/27/4.203.table +++ b/definitions/grib2/tables/27/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/27/4.204.table b/definitions/grib2/tables/27/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/27/4.204.table +++ b/definitions/grib2/tables/27/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/27/4.205.table b/definitions/grib2/tables/27/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/27/4.205.table +++ b/definitions/grib2/tables/27/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.206.table b/definitions/grib2/tables/27/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/27/4.206.table +++ b/definitions/grib2/tables/27/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.207.table b/definitions/grib2/tables/27/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/27/4.207.table +++ b/definitions/grib2/tables/27/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.208.table b/definitions/grib2/tables/27/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/27/4.208.table +++ b/definitions/grib2/tables/27/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.209.table b/definitions/grib2/tables/27/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/27/4.209.table +++ b/definitions/grib2/tables/27/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/27/4.210.table b/definitions/grib2/tables/27/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/27/4.210.table +++ b/definitions/grib2/tables/27/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.211.table b/definitions/grib2/tables/27/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/27/4.211.table +++ b/definitions/grib2/tables/27/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/4.212.table b/definitions/grib2/tables/27/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/27/4.212.table +++ b/definitions/grib2/tables/27/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/27/4.213.table b/definitions/grib2/tables/27/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/27/4.213.table +++ b/definitions/grib2/tables/27/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/27/4.214.table b/definitions/grib2/tables/27/4.214.table index b08860ce0..c0eaeda75 100644 --- a/definitions/grib2/tables/27/4.214.table +++ b/definitions/grib2/tables/27/4.214.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/27/4.215.table b/definitions/grib2/tables/27/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/27/4.215.table +++ b/definitions/grib2/tables/27/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/27/4.216.table b/definitions/grib2/tables/27/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/27/4.216.table +++ b/definitions/grib2/tables/27/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/27/4.217.table b/definitions/grib2/tables/27/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/27/4.217.table +++ b/definitions/grib2/tables/27/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/27/4.218.table b/definitions/grib2/tables/27/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/27/4.218.table +++ b/definitions/grib2/tables/27/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/27/4.219.table b/definitions/grib2/tables/27/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/27/4.219.table +++ b/definitions/grib2/tables/27/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/27/4.220.table b/definitions/grib2/tables/27/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/27/4.220.table +++ b/definitions/grib2/tables/27/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.221.table b/definitions/grib2/tables/27/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/27/4.221.table +++ b/definitions/grib2/tables/27/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.222.table b/definitions/grib2/tables/27/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/27/4.222.table +++ b/definitions/grib2/tables/27/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.224.table b/definitions/grib2/tables/27/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/27/4.224.table +++ b/definitions/grib2/tables/27/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/27/4.227.table b/definitions/grib2/tables/27/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/27/4.227.table +++ b/definitions/grib2/tables/27/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/27/4.228.table b/definitions/grib2/tables/27/4.228.table index 048a69f0b..88c3dd87c 100644 --- a/definitions/grib2/tables/27/4.228.table +++ b/definitions/grib2/tables/27/4.228.table @@ -4,5 +4,4 @@ 2 2 Light 3 3 Moderate 4 4 Severe -# 5-254 Reserved 255 255 Missing value diff --git a/definitions/grib2/tables/27/4.230.table b/definitions/grib2/tables/27/4.230.table index ebeec9e62..c26de613f 100644 --- a/definitions/grib2/tables/27/4.230.table +++ b/definitions/grib2/tables/27/4.230.table @@ -46,7 +46,6 @@ 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 @@ -106,10 +105,8 @@ 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 @@ -132,9 +129,7 @@ 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 @@ -422,12 +417,10 @@ 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 @@ -461,7 +454,6 @@ 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 @@ -481,22 +473,18 @@ 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 @@ -513,15 +501,12 @@ 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/definitions/grib2/tables/27/4.233.table b/definitions/grib2/tables/27/4.233.table index 7d8c2ec2f..3c421212e 100644 --- a/definitions/grib2/tables/27/4.233.table +++ b/definitions/grib2/tables/27/4.233.table @@ -46,7 +46,6 @@ 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 @@ -106,10 +105,8 @@ 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 @@ -132,9 +129,7 @@ 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 @@ -422,12 +417,10 @@ 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 @@ -461,7 +454,6 @@ 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 @@ -481,22 +473,18 @@ 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 @@ -513,15 +501,12 @@ 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/definitions/grib2/tables/27/4.238.table b/definitions/grib2/tables/27/4.238.table index be5be3a90..abd570100 100644 --- a/definitions/grib2/tables/27/4.238.table +++ b/definitions/grib2/tables/27/4.238.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/27/4.240.table b/definitions/grib2/tables/27/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/27/4.240.table +++ b/definitions/grib2/tables/27/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/27/4.241.table b/definitions/grib2/tables/27/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/27/4.241.table +++ b/definitions/grib2/tables/27/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/27/4.242.table b/definitions/grib2/tables/27/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/27/4.242.table +++ b/definitions/grib2/tables/27/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/4.243.table b/definitions/grib2/tables/27/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/27/4.243.table +++ b/definitions/grib2/tables/27/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/27/4.244.table b/definitions/grib2/tables/27/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/27/4.244.table +++ b/definitions/grib2/tables/27/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/4.246.table b/definitions/grib2/tables/27/4.246.table index 0ca9c0c98..74c16312c 100644 --- a/definitions/grib2/tables/27/4.246.table +++ b/definitions/grib2/tables/27/4.246.table @@ -3,5 +3,4 @@ 1 1 Weak thunderstorm 2 2 Moderate thunderstorm 3 3 Severe thunderstorm -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/27/4.247.table b/definitions/grib2/tables/27/4.247.table index 6da16e396..5a55bf127 100644 --- a/definitions/grib2/tables/27/4.247.table +++ b/definitions/grib2/tables/27/4.247.table @@ -3,5 +3,4 @@ 1 1 Light precipitation 2 2 Moderate precipitation 3 3 Heavy precipitation -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/27/4.248.table b/definitions/grib2/tables/27/4.248.table index 04e365c97..ae4965d8d 100644 --- a/definitions/grib2/tables/27/4.248.table +++ b/definitions/grib2/tables/27/4.248.table @@ -1,6 +1,4 @@ # Code table 4.248 - Method used to derive data values for a given local time 0 0 Nearest forecast or analysis time to specified local time 1 1 Interpolated to be valid at the specified local time -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.3.table b/definitions/grib2/tables/27/4.3.table index 8ae36efc3..5d9191ff8 100644 --- a/definitions/grib2/tables/27/4.3.table +++ b/definitions/grib2/tables/27/4.3.table @@ -21,6 +21,4 @@ 19 19 First guess 20 20 Analysis increment 21 21 Initialization increment for analysis -# 22-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.4.table b/definitions/grib2/tables/27/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/27/4.4.table +++ b/definitions/grib2/tables/27/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/27/4.5.table b/definitions/grib2/tables/27/4.5.table index a1084729a..e22d353fe 100644 --- a/definitions/grib2/tables/27/4.5.table +++ b/definitions/grib2/tables/27/4.5.table @@ -18,21 +18,18 @@ 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) @@ -49,15 +46,12 @@ 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 sfc Lake or river bottom (-) @@ -69,18 +63,14 @@ 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 sfc 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/definitions/grib2/tables/27/4.6.table b/definitions/grib2/tables/27/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/27/4.6.table +++ b/definitions/grib2/tables/27/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/27/4.7.table b/definitions/grib2/tables/27/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/27/4.7.table +++ b/definitions/grib2/tables/27/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/27/4.8.table b/definitions/grib2/tables/27/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/27/4.8.table +++ b/definitions/grib2/tables/27/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/4.9.table b/definitions/grib2/tables/27/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/27/4.9.table +++ b/definitions/grib2/tables/27/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/27/4.91.table b/definitions/grib2/tables/27/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/27/4.91.table +++ b/definitions/grib2/tables/27/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/27/5.0.table b/definitions/grib2/tables/27/5.0.table index 5e00004b0..115b708f2 100644 --- a/definitions/grib2/tables/27/5.0.table +++ b/definitions/grib2/tables/27/5.0.table @@ -4,19 +4,12 @@ 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 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/definitions/grib2/tables/27/5.1.table b/definitions/grib2/tables/27/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/27/5.1.table +++ b/definitions/grib2/tables/27/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/5.2.table b/definitions/grib2/tables/27/5.2.table index d77fdf4e7..0f51965f3 100644 --- a/definitions/grib2/tables/27/5.2.table +++ b/definitions/grib2/tables/27/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/27/5.25.table b/definitions/grib2/tables/27/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/27/5.25.table +++ b/definitions/grib2/tables/27/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/27/5.26.table b/definitions/grib2/tables/27/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/27/5.26.table +++ b/definitions/grib2/tables/27/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/27/5.3.table b/definitions/grib2/tables/27/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/27/5.3.table +++ b/definitions/grib2/tables/27/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/5.4.table b/definitions/grib2/tables/27/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/27/5.4.table +++ b/definitions/grib2/tables/27/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/27/5.40.table b/definitions/grib2/tables/27/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/27/5.40.table +++ b/definitions/grib2/tables/27/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/27/5.5.table b/definitions/grib2/tables/27/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/27/5.5.table +++ b/definitions/grib2/tables/27/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/5.6.table b/definitions/grib2/tables/27/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/27/5.6.table +++ b/definitions/grib2/tables/27/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/27/5.7.table b/definitions/grib2/tables/27/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/27/5.7.table +++ b/definitions/grib2/tables/27/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/28/0.0.table b/definitions/grib2/tables/28/0.0.table index a8542e94f..a54c35af2 100644 --- a/definitions/grib2/tables/28/0.0.table +++ b/definitions/grib2/tables/28/0.0.table @@ -4,10 +4,6 @@ 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/definitions/grib2/tables/28/1.2.table b/definitions/grib2/tables/28/1.2.table index 77f96637a..5371406eb 100644 --- a/definitions/grib2/tables/28/1.2.table +++ b/definitions/grib2/tables/28/1.2.table @@ -4,6 +4,4 @@ 2 2 Verifying time of forecast 3 3 Observation time 4 4 Local time -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/1.3.table b/definitions/grib2/tables/28/1.3.table index 5e2e59087..f82841612 100644 --- a/definitions/grib2/tables/28/1.3.table +++ b/definitions/grib2/tables/28/1.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/28/1.4.table b/definitions/grib2/tables/28/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/28/1.4.table +++ b/definitions/grib2/tables/28/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/28/1.5.table b/definitions/grib2/tables/28/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/28/1.5.table +++ b/definitions/grib2/tables/28/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/1.6.table b/definitions/grib2/tables/28/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/28/1.6.table +++ b/definitions/grib2/tables/28/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/28/3.0.table b/definitions/grib2/tables/28/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/28/3.0.table +++ b/definitions/grib2/tables/28/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/3.1.table b/definitions/grib2/tables/28/3.1.table index 7d372ddaf..2d50f176a 100644 --- a/definitions/grib2/tables/28/3.1.table +++ b/definitions/grib2/tables/28/3.1.table @@ -5,51 +5,32 @@ 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 Reserved 12 12 Transverse Mercator 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 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/definitions/grib2/tables/28/3.10.table b/definitions/grib2/tables/28/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/28/3.10.table +++ b/definitions/grib2/tables/28/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/28/3.11.table b/definitions/grib2/tables/28/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/28/3.11.table +++ b/definitions/grib2/tables/28/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/28/3.15.table b/definitions/grib2/tables/28/3.15.table index 6087902a3..e9722738a 100644 --- a/definitions/grib2/tables/28/3.15.table +++ b/definitions/grib2/tables/28/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/28/3.2.table b/definitions/grib2/tables/28/3.2.table index 3b6046969..d4ff95174 100644 --- a/definitions/grib2/tables/28/3.2.table +++ b/definitions/grib2/tables/28/3.2.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/28/3.20.table b/definitions/grib2/tables/28/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/28/3.20.table +++ b/definitions/grib2/tables/28/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/3.21.table b/definitions/grib2/tables/28/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/28/3.21.table +++ b/definitions/grib2/tables/28/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/28/3.25.table b/definitions/grib2/tables/28/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/28/3.25.table +++ b/definitions/grib2/tables/28/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/28/3.3.table b/definitions/grib2/tables/28/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/28/3.3.table +++ b/definitions/grib2/tables/28/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/28/3.7.table b/definitions/grib2/tables/28/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/28/3.7.table +++ b/definitions/grib2/tables/28/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/28/3.8.table b/definitions/grib2/tables/28/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/28/3.8.table +++ b/definitions/grib2/tables/28/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/3.9.table b/definitions/grib2/tables/28/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/28/3.9.table +++ b/definitions/grib2/tables/28/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/28/4.0.table b/definitions/grib2/tables/28/4.0.table index 47aa74902..fcd070c9a 100644 --- a/definitions/grib2/tables/28/4.0.table +++ b/definitions/grib2/tables/28/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -49,15 +44,12 @@ 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 @@ -71,7 +63,6 @@ 86 86 Quantile forecasts at a horizontal level or in a horizontal layer at a point in time 87 87 Quantile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval 88 88 Analysis or forecast at a horizontal level or in a horizontal layer at a specified local time -# 89-90 Reserved 91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval 92 92 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a specified local time 93 93 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a specified local time @@ -80,15 +71,10 @@ 96 96 Average, accumulation, extreme values or other statistically processed values of an individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a specified local time 97 97 Average, accumulation, extreme values or other statistically processed values of post-processing analysis or forecast at a horizontal level or in a horizontal layer at a specified local time 98 98 Average, accumulation, extreme values or other statistically processed values of a post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a specified local time -# 99-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/definitions/grib2/tables/28/4.1.0.table b/definitions/grib2/tables/28/4.1.0.table index df58636d6..0a30461d4 100644 --- a/definitions/grib2/tables/28/4.1.0.table +++ b/definitions/grib2/tables/28/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/28/4.1.1.table b/definitions/grib2/tables/28/4.1.1.table index 05a854da0..fb2b93fea 100644 --- a/definitions/grib2/tables/28/4.1.1.table +++ b/definitions/grib2/tables/28/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/4.1.10.table b/definitions/grib2/tables/28/4.1.10.table index 88d3c8743..d0df7ab1c 100644 --- a/definitions/grib2/tables/28/4.1.10.table +++ b/definitions/grib2/tables/28/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/28/4.1.2.table b/definitions/grib2/tables/28/4.1.2.table index 046689b83..52d43c5d3 100644 --- a/definitions/grib2/tables/28/4.1.2.table +++ b/definitions/grib2/tables/28/4.1.2.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/28/4.1.20.table b/definitions/grib2/tables/28/4.1.20.table index fe4362b3c..e896462dc 100644 --- a/definitions/grib2/tables/28/4.1.20.table +++ b/definitions/grib2/tables/28/4.1.20.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/4.1.3.table b/definitions/grib2/tables/28/4.1.3.table index ba38c9301..0eb4d28ce 100644 --- a/definitions/grib2/tables/28/4.1.3.table +++ b/definitions/grib2/tables/28/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/28/4.1.4.table b/definitions/grib2/tables/28/4.1.4.table index 792feca5b..ba580bad0 100644 --- a/definitions/grib2/tables/28/4.1.4.table +++ b/definitions/grib2/tables/28/4.1.4.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/28/4.10.table b/definitions/grib2/tables/28/4.10.table index 593b052a5..1bc4b2d4c 100644 --- a/definitions/grib2/tables/28/4.10.table +++ b/definitions/grib2/tables/28/4.10.table @@ -11,9 +11,6 @@ 9 ratio Ratio 10 10 Standardized anomaly 11 11 Summation -# 12-99 Reserved 100 100 Severity 101 101 Mode -# 102-191 Reserved -# 192-254 Reserved for local use 255 missing Missing diff --git a/definitions/grib2/tables/28/4.11.table b/definitions/grib2/tables/28/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/28/4.11.table +++ b/definitions/grib2/tables/28/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/28/4.12.table b/definitions/grib2/tables/28/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/28/4.12.table +++ b/definitions/grib2/tables/28/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/4.13.table b/definitions/grib2/tables/28/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/28/4.13.table +++ b/definitions/grib2/tables/28/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/4.14.table b/definitions/grib2/tables/28/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/28/4.14.table +++ b/definitions/grib2/tables/28/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/4.15.table b/definitions/grib2/tables/28/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/28/4.15.table +++ b/definitions/grib2/tables/28/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/28/4.16.table b/definitions/grib2/tables/28/4.16.table index 5b9f6fd73..2e0c69752 100644 --- a/definitions/grib2/tables/28/4.16.table +++ b/definitions/grib2/tables/28/4.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/28/4.2.0.0.table b/definitions/grib2/tables/28/4.2.0.0.table index aed766618..08929dcfe 100644 --- a/definitions/grib2/tables/28/4.2.0.0.table +++ b/definitions/grib2/tables/28/4.2.0.0.table @@ -32,6 +32,4 @@ 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 32 Wet-bulb potential temperature (K) -# 33-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.0.1.table b/definitions/grib2/tables/28/4.2.0.1.table index 4336975e6..cfee58d6e 100644 --- a/definitions/grib2/tables/28/4.2.0.1.table +++ b/definitions/grib2/tables/28/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -149,6 +148,4 @@ 147 147 Character of precipitation (Code table 4.249) 148 148 Snow evaporation rate (kg m-2 s-1) 149 149 Cloud water mixing ratio (kg kg-1) -# 149-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.0.13.table b/definitions/grib2/tables/28/4.2.0.13.table index 3f5c30675..6310baaf2 100644 --- a/definitions/grib2/tables/28/4.2.0.13.table +++ b/definitions/grib2/tables/28/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/28/4.2.0.14.table b/definitions/grib2/tables/28/4.2.0.14.table index 97fb38c8b..1bbc63297 100644 --- a/definitions/grib2/tables/28/4.2.0.14.table +++ b/definitions/grib2/tables/28/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/4.2.0.15.table b/definitions/grib2/tables/28/4.2.0.15.table index 8df082466..b2d09f714 100644 --- a/definitions/grib2/tables/28/4.2.0.15.table +++ b/definitions/grib2/tables/28/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/28/4.2.0.16.table b/definitions/grib2/tables/28/4.2.0.16.table index 9499d9333..40e76d3f3 100644 --- a/definitions/grib2/tables/28/4.2.0.16.table +++ b/definitions/grib2/tables/28/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/28/4.2.0.18.table b/definitions/grib2/tables/28/4.2.0.18.table index 9ca6db61e..6672fc465 100644 --- a/definitions/grib2/tables/28/4.2.0.18.table +++ b/definitions/grib2/tables/28/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/28/4.2.0.19.table b/definitions/grib2/tables/28/4.2.0.19.table index 1ae94c6e6..a602d20e3 100644 --- a/definitions/grib2/tables/28/4.2.0.19.table +++ b/definitions/grib2/tables/28/4.2.0.19.table @@ -40,6 +40,4 @@ 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/definitions/grib2/tables/28/4.2.0.190.table b/definitions/grib2/tables/28/4.2.0.190.table index a0d6ba0ac..961c8e9b2 100644 --- a/definitions/grib2/tables/28/4.2.0.190.table +++ b/definitions/grib2/tables/28/4.2.0.190.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/28/4.2.0.191.table b/definitions/grib2/tables/28/4.2.0.191.table index b3a7092ea..76ea0abf0 100644 --- a/definitions/grib2/tables/28/4.2.0.191.table +++ b/definitions/grib2/tables/28/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/28/4.2.0.2.table b/definitions/grib2/tables/28/4.2.0.2.table index 0edea5399..6ca652ea2 100644 --- a/definitions/grib2/tables/28/4.2.0.2.table +++ b/definitions/grib2/tables/28/4.2.0.2.table @@ -48,6 +48,4 @@ 46 46 Vorticity advection (s-2) 47 47 Surface roughness for heat (m) 48 48 Surface roughness for moisture (m) -# 49-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.0.20.table b/definitions/grib2/tables/28/4.2.0.20.table index 9b0170f5c..d799ca11e 100644 --- a/definitions/grib2/tables/28/4.2.0.20.table +++ b/definitions/grib2/tables/28/4.2.0.20.table @@ -17,7 +17,6 @@ 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) @@ -46,7 +45,6 @@ 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) @@ -59,6 +57,4 @@ 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/definitions/grib2/tables/28/4.2.0.3.table b/definitions/grib2/tables/28/4.2.0.3.table index 52c421b97..ee642b144 100644 --- a/definitions/grib2/tables/28/4.2.0.3.table +++ b/definitions/grib2/tables/28/4.2.0.3.table @@ -31,6 +31,4 @@ 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/definitions/grib2/tables/28/4.2.0.4.table b/definitions/grib2/tables/28/4.2.0.4.table index 6880f659b..596a9b8bf 100644 --- a/definitions/grib2/tables/28/4.2.0.4.table +++ b/definitions/grib2/tables/28/4.2.0.4.table @@ -15,12 +15,9 @@ 13 13 Direct short-wave radiation flux (W m-2) 14 14 Diffuse short-wave radiation flux (W m-2) 15 15 Upward UV radiation emitted / reflected from the Earth surface (W m-2) -# 16-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/definitions/grib2/tables/28/4.2.0.5.table b/definitions/grib2/tables/28/4.2.0.5.table index ddfa634ce..5cc04f2c5 100644 --- a/definitions/grib2/tables/28/4.2.0.5.table +++ b/definitions/grib2/tables/28/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/28/4.2.0.6.table b/definitions/grib2/tables/28/4.2.0.6.table index 35f7b5dca..df9eca404 100644 --- a/definitions/grib2/tables/28/4.2.0.6.table +++ b/definitions/grib2/tables/28/4.2.0.6.table @@ -40,11 +40,8 @@ 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/definitions/grib2/tables/28/4.2.0.7.table b/definitions/grib2/tables/28/4.2.0.7.table index e9aa4e39b..312885ef6 100644 --- a/definitions/grib2/tables/28/4.2.0.7.table +++ b/definitions/grib2/tables/28/4.2.0.7.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/28/4.2.1.0.table b/definitions/grib2/tables/28/4.2.1.0.table index a2660f4f3..f9cc7bb8e 100644 --- a/definitions/grib2/tables/28/4.2.1.0.table +++ b/definitions/grib2/tables/28/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/28/4.2.1.1.table b/definitions/grib2/tables/28/4.2.1.1.table index 171da3958..adc57ef8b 100644 --- a/definitions/grib2/tables/28/4.2.1.1.table +++ b/definitions/grib2/tables/28/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/4.2.1.2.table b/definitions/grib2/tables/28/4.2.1.2.table index 84844b25a..5990036cb 100644 --- a/definitions/grib2/tables/28/4.2.1.2.table +++ b/definitions/grib2/tables/28/4.2.1.2.table @@ -14,6 +14,4 @@ 12 12 Salinity (kg/kg) 13 13 Cross-sectional area of flow in channel (m2) 14 14 Snow temperature (K) -# 15-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.10.0.table b/definitions/grib2/tables/28/4.2.10.0.table index db25b251f..cb0363b6d 100644 --- a/definitions/grib2/tables/28/4.2.10.0.table +++ b/definitions/grib2/tables/28/4.2.10.0.table @@ -71,6 +71,4 @@ 69 69 Peak wave direction of second swell partition (degree true) 70 70 Peak wave direction of third swell partition (degree true) 71 71 Peak direction of wind waves (degree true) -# 72-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.10.1.table b/definitions/grib2/tables/28/4.2.10.1.table index 237e6865a..926267e52 100644 --- a/definitions/grib2/tables/28/4.2.10.1.table +++ b/definitions/grib2/tables/28/4.2.10.1.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/28/4.2.10.191.table b/definitions/grib2/tables/28/4.2.10.191.table index fe90ab6aa..a38a452bd 100644 --- a/definitions/grib2/tables/28/4.2.10.191.table +++ b/definitions/grib2/tables/28/4.2.10.191.table @@ -4,6 +4,4 @@ 2 2 Reserved 3 3 Days since last observation (d) 4 4 Barotropic stream function (m3 s-1) -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.10.2.table b/definitions/grib2/tables/28/4.2.10.2.table index b3278eb93..e7074cf97 100644 --- a/definitions/grib2/tables/28/4.2.10.2.table +++ b/definitions/grib2/tables/28/4.2.10.2.table @@ -14,6 +14,4 @@ 12 12 Compressive ice strength (N/m) 13 13 Snow temperature (over sea ice) (K) 14 14 Albedo (Numeric) -# 15-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.10.3.table b/definitions/grib2/tables/28/4.2.10.3.table index 55dfcc3ed..8876ad0db 100644 --- a/definitions/grib2/tables/28/4.2.10.3.table +++ b/definitions/grib2/tables/28/4.2.10.3.table @@ -12,6 +12,4 @@ 10 10 Halosteric change in sea surface height (m) 11 11 Steric change in sea surface height (m) 12 12 Sea salt flux (kg m-2 s-1) -# 13-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.10.4.table b/definitions/grib2/tables/28/4.2.10.4.table index 029d20d07..7d1e1a435 100644 --- a/definitions/grib2/tables/28/4.2.10.4.table +++ b/definitions/grib2/tables/28/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -26,6 +25,4 @@ 26 26 y-component water velocity (m s-1) 27 27 Upward water velocity (m s-1) 28 28 Vertical eddy diffusivity (m2 s-1) -# 29-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.2.0.table b/definitions/grib2/tables/28/4.2.2.0.table index dee2ed824..9eccadfd2 100644 --- a/definitions/grib2/tables/28/4.2.2.0.table +++ b/definitions/grib2/tables/28/4.2.2.0.table @@ -42,6 +42,4 @@ 40 40 Potential evapotranspiration rate (kg m-2 s-1) 41 41 Snow melt rate (kg m-2 s-1) 42 42 Water runoff and drainage rate (kg m-2 s-1) -# 43-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.2.3.table b/definitions/grib2/tables/28/4.2.2.3.table index d5540f48b..a2f48a7d9 100644 --- a/definitions/grib2/tables/28/4.2.2.3.table +++ b/definitions/grib2/tables/28/4.2.2.3.table @@ -29,6 +29,4 @@ 27 27 Soil depth (m) 28 28 Snow temperature (K) 29 29 Ice temperature (K) -# 30-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.2.4.table b/definitions/grib2/tables/28/4.2.2.4.table index 5bc0b0b70..a7ff17739 100644 --- a/definitions/grib2/tables/28/4.2.2.4.table +++ b/definitions/grib2/tables/28/4.2.2.4.table @@ -19,6 +19,4 @@ 17 17 Burning index (as defined by the US Forest Service National Fire Danger Rating System) (Numeric) 18 18 Ignition component (as defined by the US Forest Service National Fire Danger Rating System) (%) 19 19 Energy release component (as defined by the US Forest Service National Fire Danger Rating System) (Joule/m2) -# 20-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.2.5.table b/definitions/grib2/tables/28/4.2.2.5.table index a5a71dcd1..476893691 100644 --- a/definitions/grib2/tables/28/4.2.2.5.table +++ b/definitions/grib2/tables/28/4.2.2.5.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/4.2.20.0.table b/definitions/grib2/tables/28/4.2.20.0.table index d2010755e..8d7d8792d 100644 --- a/definitions/grib2/tables/28/4.2.20.0.table +++ b/definitions/grib2/tables/28/4.2.20.0.table @@ -2,6 +2,4 @@ 0 0 Universal thermal climate index (K) 1 1 Mean radiant temperature (K) 2 2 Wet-bulb globe temperature (K) -# 3-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.20.1.table b/definitions/grib2/tables/28/4.2.20.1.table index 3c94cdf17..130e49bd2 100644 --- a/definitions/grib2/tables/28/4.2.20.1.table +++ b/definitions/grib2/tables/28/4.2.20.1.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/28/4.2.20.2.table b/definitions/grib2/tables/28/4.2.20.2.table index 8a937c0d1..cc0ec086d 100644 --- a/definitions/grib2/tables/28/4.2.20.2.table +++ b/definitions/grib2/tables/28/4.2.20.2.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/28/4.2.3.0.table b/definitions/grib2/tables/28/4.2.3.0.table index 80a829673..f63a000ae 100644 --- a/definitions/grib2/tables/28/4.2.3.0.table +++ b/definitions/grib2/tables/28/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/28/4.2.3.1.table b/definitions/grib2/tables/28/4.2.3.1.table index 365e59a22..a46651ebe 100644 --- a/definitions/grib2/tables/28/4.2.3.1.table +++ b/definitions/grib2/tables/28/4.2.3.1.table @@ -23,13 +23,9 @@ 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/definitions/grib2/tables/28/4.2.4.0.table b/definitions/grib2/tables/28/4.2.4.0.table index f89f1fee8..9799f20e7 100644 --- a/definitions/grib2/tables/28/4.2.4.0.table +++ b/definitions/grib2/tables/28/4.2.4.0.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/28/4.2.4.1.table b/definitions/grib2/tables/28/4.2.4.1.table index de1bb48b1..4a40748fd 100644 --- a/definitions/grib2/tables/28/4.2.4.1.table +++ b/definitions/grib2/tables/28/4.2.4.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/28/4.2.4.10.table b/definitions/grib2/tables/28/4.2.4.10.table index dade20fca..60e6de862 100644 --- a/definitions/grib2/tables/28/4.2.4.10.table +++ b/definitions/grib2/tables/28/4.2.4.10.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/28/4.2.4.2.table b/definitions/grib2/tables/28/4.2.4.2.table index 0ab69cf2c..9016955af 100644 --- a/definitions/grib2/tables/28/4.2.4.2.table +++ b/definitions/grib2/tables/28/4.2.4.2.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/28/4.2.4.3.table b/definitions/grib2/tables/28/4.2.4.3.table index 943251fca..127ecebd8 100644 --- a/definitions/grib2/tables/28/4.2.4.3.table +++ b/definitions/grib2/tables/28/4.2.4.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/28/4.2.4.4.table b/definitions/grib2/tables/28/4.2.4.4.table index 991faa417..049cfb8b3 100644 --- a/definitions/grib2/tables/28/4.2.4.4.table +++ b/definitions/grib2/tables/28/4.2.4.4.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/28/4.2.4.5.table b/definitions/grib2/tables/28/4.2.4.5.table index e4aae61da..83b377187 100644 --- a/definitions/grib2/tables/28/4.2.4.5.table +++ b/definitions/grib2/tables/28/4.2.4.5.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/28/4.2.4.6.table b/definitions/grib2/tables/28/4.2.4.6.table index 64dccb947..298ef881f 100644 --- a/definitions/grib2/tables/28/4.2.4.6.table +++ b/definitions/grib2/tables/28/4.2.4.6.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/28/4.2.4.7.table b/definitions/grib2/tables/28/4.2.4.7.table index 98dd1d649..bd90b12b5 100644 --- a/definitions/grib2/tables/28/4.2.4.7.table +++ b/definitions/grib2/tables/28/4.2.4.7.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/28/4.2.4.8.table b/definitions/grib2/tables/28/4.2.4.8.table index 3d6e81e60..6e970f6af 100644 --- a/definitions/grib2/tables/28/4.2.4.8.table +++ b/definitions/grib2/tables/28/4.2.4.8.table @@ -8,6 +8,4 @@ 6 6 Heliospheric radiance (W sr-1 m-2) 7 7 Thematic mask (Numeric) 8 8 Solar induced chlorophyll fluorescence (W m-2 sr-1 m-1) -# 9-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.2.4.9.table b/definitions/grib2/tables/28/4.2.4.9.table index df8ceaac2..148c54692 100644 --- a/definitions/grib2/tables/28/4.2.4.9.table +++ b/definitions/grib2/tables/28/4.2.4.9.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/4.201.table b/definitions/grib2/tables/28/4.201.table index 0dca20884..a902d6083 100644 --- a/definitions/grib2/tables/28/4.201.table +++ b/definitions/grib2/tables/28/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/28/4.202.table b/definitions/grib2/tables/28/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/28/4.202.table +++ b/definitions/grib2/tables/28/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.203.table b/definitions/grib2/tables/28/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/28/4.203.table +++ b/definitions/grib2/tables/28/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/28/4.204.table b/definitions/grib2/tables/28/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/28/4.204.table +++ b/definitions/grib2/tables/28/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/28/4.205.table b/definitions/grib2/tables/28/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/28/4.205.table +++ b/definitions/grib2/tables/28/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/4.206.table b/definitions/grib2/tables/28/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/28/4.206.table +++ b/definitions/grib2/tables/28/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/4.207.table b/definitions/grib2/tables/28/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/28/4.207.table +++ b/definitions/grib2/tables/28/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.208.table b/definitions/grib2/tables/28/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/28/4.208.table +++ b/definitions/grib2/tables/28/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.209.table b/definitions/grib2/tables/28/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/28/4.209.table +++ b/definitions/grib2/tables/28/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/28/4.210.table b/definitions/grib2/tables/28/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/28/4.210.table +++ b/definitions/grib2/tables/28/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/4.211.table b/definitions/grib2/tables/28/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/28/4.211.table +++ b/definitions/grib2/tables/28/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/4.212.table b/definitions/grib2/tables/28/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/28/4.212.table +++ b/definitions/grib2/tables/28/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/28/4.213.table b/definitions/grib2/tables/28/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/28/4.213.table +++ b/definitions/grib2/tables/28/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/28/4.214.table b/definitions/grib2/tables/28/4.214.table index b08860ce0..c0eaeda75 100644 --- a/definitions/grib2/tables/28/4.214.table +++ b/definitions/grib2/tables/28/4.214.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/28/4.215.table b/definitions/grib2/tables/28/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/28/4.215.table +++ b/definitions/grib2/tables/28/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/28/4.216.table b/definitions/grib2/tables/28/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/28/4.216.table +++ b/definitions/grib2/tables/28/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/28/4.217.table b/definitions/grib2/tables/28/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/28/4.217.table +++ b/definitions/grib2/tables/28/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/28/4.218.table b/definitions/grib2/tables/28/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/28/4.218.table +++ b/definitions/grib2/tables/28/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/28/4.219.table b/definitions/grib2/tables/28/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/28/4.219.table +++ b/definitions/grib2/tables/28/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/28/4.220.table b/definitions/grib2/tables/28/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/28/4.220.table +++ b/definitions/grib2/tables/28/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/4.221.table b/definitions/grib2/tables/28/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/28/4.221.table +++ b/definitions/grib2/tables/28/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/4.222.table b/definitions/grib2/tables/28/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/28/4.222.table +++ b/definitions/grib2/tables/28/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/4.224.table b/definitions/grib2/tables/28/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/28/4.224.table +++ b/definitions/grib2/tables/28/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/28/4.227.table b/definitions/grib2/tables/28/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/28/4.227.table +++ b/definitions/grib2/tables/28/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/28/4.228.table b/definitions/grib2/tables/28/4.228.table index 048a69f0b..88c3dd87c 100644 --- a/definitions/grib2/tables/28/4.228.table +++ b/definitions/grib2/tables/28/4.228.table @@ -4,5 +4,4 @@ 2 2 Light 3 3 Moderate 4 4 Severe -# 5-254 Reserved 255 255 Missing value diff --git a/definitions/grib2/tables/28/4.230.table b/definitions/grib2/tables/28/4.230.table index d872ebbec..e5d8ba229 100644 --- a/definitions/grib2/tables/28/4.230.table +++ b/definitions/grib2/tables/28/4.230.table @@ -46,7 +46,6 @@ 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 @@ -106,10 +105,8 @@ 10057 10057 2-lambda^1-oxidanyloxy-3-methylbut-3-en-1-ol (2-hydroxy-1-isopropenylethylperoxy radical) HOCH2CH(OO*)C(CH3)CH2 10058 10058 (Z)-4-hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH3)CHO 10059 10059 (Z)-4-hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH3)CHCHO -# 10060-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, etc.) 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 @@ -132,9 +129,7 @@ 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 @@ -422,12 +417,10 @@ 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 @@ -463,7 +456,6 @@ 60032 60032 All hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O2 ISOPOOH 60033 60033 Anthropogenic volatile organic compounds aVOC 60034 60034 Biomass burning volatile organic compounds bbVOC -# 60035-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -483,22 +475,18 @@ 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 @@ -515,15 +503,12 @@ 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/definitions/grib2/tables/28/4.233.table b/definitions/grib2/tables/28/4.233.table index 7c19bbac0..076194957 100644 --- a/definitions/grib2/tables/28/4.233.table +++ b/definitions/grib2/tables/28/4.233.table @@ -46,7 +46,6 @@ 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 @@ -106,10 +105,8 @@ 10057 10057 2-lambda^1-oxidanyloxy-3-methylbut-3-en-1-ol (2-hydroxy-1-isopropenylethylperoxy radical) HOCH2CH(OO*)C(CH3)CH2 10058 10058 (Z)-4-hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH3)CHO 10059 10059 (Z)-4-hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH3)CHCHO -# 10060-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, etc.) 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 @@ -132,9 +129,7 @@ 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 @@ -422,12 +417,10 @@ 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 @@ -463,7 +456,6 @@ 60032 60032 All hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O2 ISOPOOH 60033 60033 Anthropogenic volatile organic compounds aVOC 60034 60034 Biomass burning volatile organic compounds bbVOC -# 60035-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -483,22 +475,18 @@ 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 @@ -515,15 +503,12 @@ 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/definitions/grib2/tables/28/4.238.table b/definitions/grib2/tables/28/4.238.table index be5be3a90..abd570100 100644 --- a/definitions/grib2/tables/28/4.238.table +++ b/definitions/grib2/tables/28/4.238.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/28/4.240.table b/definitions/grib2/tables/28/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/28/4.240.table +++ b/definitions/grib2/tables/28/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/28/4.241.table b/definitions/grib2/tables/28/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/28/4.241.table +++ b/definitions/grib2/tables/28/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/28/4.242.table b/definitions/grib2/tables/28/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/28/4.242.table +++ b/definitions/grib2/tables/28/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/4.243.table b/definitions/grib2/tables/28/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/28/4.243.table +++ b/definitions/grib2/tables/28/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/28/4.244.table b/definitions/grib2/tables/28/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/28/4.244.table +++ b/definitions/grib2/tables/28/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/4.246.table b/definitions/grib2/tables/28/4.246.table index 0ca9c0c98..74c16312c 100644 --- a/definitions/grib2/tables/28/4.246.table +++ b/definitions/grib2/tables/28/4.246.table @@ -3,5 +3,4 @@ 1 1 Weak thunderstorm 2 2 Moderate thunderstorm 3 3 Severe thunderstorm -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/28/4.247.table b/definitions/grib2/tables/28/4.247.table index 6da16e396..5a55bf127 100644 --- a/definitions/grib2/tables/28/4.247.table +++ b/definitions/grib2/tables/28/4.247.table @@ -3,5 +3,4 @@ 1 1 Light precipitation 2 2 Moderate precipitation 3 3 Heavy precipitation -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/28/4.248.table b/definitions/grib2/tables/28/4.248.table index 04e365c97..ae4965d8d 100644 --- a/definitions/grib2/tables/28/4.248.table +++ b/definitions/grib2/tables/28/4.248.table @@ -1,6 +1,4 @@ # Code table 4.248 - Method used to derive data values for a given local time 0 0 Nearest forecast or analysis time to specified local time 1 1 Interpolated to be valid at the specified local time -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.249.table b/definitions/grib2/tables/28/4.249.table index bd1c944c4..93137b15b 100644 --- a/definitions/grib2/tables/28/4.249.table +++ b/definitions/grib2/tables/28/4.249.table @@ -3,5 +3,4 @@ 1 1 Showers 2 2 Intermittent 3 3 Continuous -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/28/4.3.table b/definitions/grib2/tables/28/4.3.table index 8ae36efc3..5d9191ff8 100644 --- a/definitions/grib2/tables/28/4.3.table +++ b/definitions/grib2/tables/28/4.3.table @@ -21,6 +21,4 @@ 19 19 First guess 20 20 Analysis increment 21 21 Initialization increment for analysis -# 22-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/28/4.4.table b/definitions/grib2/tables/28/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/28/4.4.table +++ b/definitions/grib2/tables/28/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/28/4.5.table b/definitions/grib2/tables/28/4.5.table index 5eaa05d69..4669e248e 100644 --- a/definitions/grib2/tables/28/4.5.table +++ b/definitions/grib2/tables/28/4.5.table @@ -18,7 +18,6 @@ 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) @@ -27,14 +26,12 @@ 25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) 26 26 Convective cloud layer base (m) 27 27 Convective cloud layer top (m) -# 28-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) @@ -51,15 +48,12 @@ 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 sfc Lake or river bottom (-) @@ -72,18 +66,14 @@ 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 171 Ocean level defined by vertical eddy diffusivity difference from near-surface to level (m2 s-1) -# 172-173 Reserved 174 sfc 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/definitions/grib2/tables/28/4.6.table b/definitions/grib2/tables/28/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/28/4.6.table +++ b/definitions/grib2/tables/28/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/28/4.7.table b/definitions/grib2/tables/28/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/28/4.7.table +++ b/definitions/grib2/tables/28/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/28/4.8.table b/definitions/grib2/tables/28/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/28/4.8.table +++ b/definitions/grib2/tables/28/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/4.9.table b/definitions/grib2/tables/28/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/28/4.9.table +++ b/definitions/grib2/tables/28/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/28/4.91.table b/definitions/grib2/tables/28/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/28/4.91.table +++ b/definitions/grib2/tables/28/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/28/5.0.table b/definitions/grib2/tables/28/5.0.table index 5e00004b0..115b708f2 100644 --- a/definitions/grib2/tables/28/5.0.table +++ b/definitions/grib2/tables/28/5.0.table @@ -4,19 +4,12 @@ 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 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/definitions/grib2/tables/28/5.1.table b/definitions/grib2/tables/28/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/28/5.1.table +++ b/definitions/grib2/tables/28/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/5.2.table b/definitions/grib2/tables/28/5.2.table index 60d557a0d..b880c47c2 100644 --- a/definitions/grib2/tables/28/5.2.table +++ b/definitions/grib2/tables/28/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/28/5.25.table b/definitions/grib2/tables/28/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/28/5.25.table +++ b/definitions/grib2/tables/28/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/28/5.26.table b/definitions/grib2/tables/28/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/28/5.26.table +++ b/definitions/grib2/tables/28/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/28/5.3.table b/definitions/grib2/tables/28/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/28/5.3.table +++ b/definitions/grib2/tables/28/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/5.4.table b/definitions/grib2/tables/28/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/28/5.4.table +++ b/definitions/grib2/tables/28/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/28/5.40.table b/definitions/grib2/tables/28/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/28/5.40.table +++ b/definitions/grib2/tables/28/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/28/5.5.table b/definitions/grib2/tables/28/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/28/5.5.table +++ b/definitions/grib2/tables/28/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/5.6.table b/definitions/grib2/tables/28/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/28/5.6.table +++ b/definitions/grib2/tables/28/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/28/5.7.table b/definitions/grib2/tables/28/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/28/5.7.table +++ b/definitions/grib2/tables/28/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/29/0.0.table b/definitions/grib2/tables/29/0.0.table index a8542e94f..a54c35af2 100644 --- a/definitions/grib2/tables/29/0.0.table +++ b/definitions/grib2/tables/29/0.0.table @@ -4,10 +4,6 @@ 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/definitions/grib2/tables/29/1.2.table b/definitions/grib2/tables/29/1.2.table index 77f96637a..5371406eb 100644 --- a/definitions/grib2/tables/29/1.2.table +++ b/definitions/grib2/tables/29/1.2.table @@ -4,6 +4,4 @@ 2 2 Verifying time of forecast 3 3 Observation time 4 4 Local time -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/1.3.table b/definitions/grib2/tables/29/1.3.table index 5e2e59087..f82841612 100644 --- a/definitions/grib2/tables/29/1.3.table +++ b/definitions/grib2/tables/29/1.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/29/1.4.table b/definitions/grib2/tables/29/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/29/1.4.table +++ b/definitions/grib2/tables/29/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/29/1.5.table b/definitions/grib2/tables/29/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/29/1.5.table +++ b/definitions/grib2/tables/29/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/1.6.table b/definitions/grib2/tables/29/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/29/1.6.table +++ b/definitions/grib2/tables/29/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/29/3.0.table b/definitions/grib2/tables/29/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/29/3.0.table +++ b/definitions/grib2/tables/29/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/3.1.table b/definitions/grib2/tables/29/3.1.table index 7d372ddaf..2d50f176a 100644 --- a/definitions/grib2/tables/29/3.1.table +++ b/definitions/grib2/tables/29/3.1.table @@ -5,51 +5,32 @@ 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 Reserved 12 12 Transverse Mercator 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 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/definitions/grib2/tables/29/3.10.table b/definitions/grib2/tables/29/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/29/3.10.table +++ b/definitions/grib2/tables/29/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/29/3.11.table b/definitions/grib2/tables/29/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/29/3.11.table +++ b/definitions/grib2/tables/29/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/29/3.15.table b/definitions/grib2/tables/29/3.15.table index 43539dbfc..8a2e9a566 100644 --- a/definitions/grib2/tables/29/3.15.table +++ b/definitions/grib2/tables/29/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/29/3.2.table b/definitions/grib2/tables/29/3.2.table index 13b9bf469..83495adec 100644 --- a/definitions/grib2/tables/29/3.2.table +++ b/definitions/grib2/tables/29/3.2.table @@ -11,6 +11,4 @@ 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., Astrophysical Quantities, 3rd ed.; Athlone: London, 1976) 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, Astron. Astrophys. 2006, 449, 791-803) -# 12-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/3.20.table b/definitions/grib2/tables/29/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/29/3.20.table +++ b/definitions/grib2/tables/29/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/3.21.table b/definitions/grib2/tables/29/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/29/3.21.table +++ b/definitions/grib2/tables/29/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/29/3.25.table b/definitions/grib2/tables/29/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/29/3.25.table +++ b/definitions/grib2/tables/29/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/29/3.3.table b/definitions/grib2/tables/29/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/29/3.3.table +++ b/definitions/grib2/tables/29/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/29/3.7.table b/definitions/grib2/tables/29/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/29/3.7.table +++ b/definitions/grib2/tables/29/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/29/3.8.table b/definitions/grib2/tables/29/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/29/3.8.table +++ b/definitions/grib2/tables/29/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/3.9.table b/definitions/grib2/tables/29/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/29/3.9.table +++ b/definitions/grib2/tables/29/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/29/4.0.table b/definitions/grib2/tables/29/4.0.table index 47aa74902..fcd070c9a 100644 --- a/definitions/grib2/tables/29/4.0.table +++ b/definitions/grib2/tables/29/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -49,15 +44,12 @@ 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 @@ -71,7 +63,6 @@ 86 86 Quantile forecasts at a horizontal level or in a horizontal layer at a point in time 87 87 Quantile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval 88 88 Analysis or forecast at a horizontal level or in a horizontal layer at a specified local time -# 89-90 Reserved 91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval 92 92 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a specified local time 93 93 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a specified local time @@ -80,15 +71,10 @@ 96 96 Average, accumulation, extreme values or other statistically processed values of an individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a specified local time 97 97 Average, accumulation, extreme values or other statistically processed values of post-processing analysis or forecast at a horizontal level or in a horizontal layer at a specified local time 98 98 Average, accumulation, extreme values or other statistically processed values of a post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a specified local time -# 99-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/definitions/grib2/tables/29/4.1.0.table b/definitions/grib2/tables/29/4.1.0.table index 56c8b0647..877d2c994 100644 --- a/definitions/grib2/tables/29/4.1.0.table +++ b/definitions/grib2/tables/29/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/29/4.1.1.table b/definitions/grib2/tables/29/4.1.1.table index df2c13fa8..06451e837 100644 --- a/definitions/grib2/tables/29/4.1.1.table +++ b/definitions/grib2/tables/29/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/4.1.10.table b/definitions/grib2/tables/29/4.1.10.table index 5a64f9652..d7bb7e672 100644 --- a/definitions/grib2/tables/29/4.1.10.table +++ b/definitions/grib2/tables/29/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/29/4.1.2.table b/definitions/grib2/tables/29/4.1.2.table index 4192e50d1..a4f5fb410 100644 --- a/definitions/grib2/tables/29/4.1.2.table +++ b/definitions/grib2/tables/29/4.1.2.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/29/4.1.20.table b/definitions/grib2/tables/29/4.1.20.table index 1e5472a3f..5a725ceb4 100644 --- a/definitions/grib2/tables/29/4.1.20.table +++ b/definitions/grib2/tables/29/4.1.20.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/4.1.3.table b/definitions/grib2/tables/29/4.1.3.table index 35d82f440..df3cc24e1 100644 --- a/definitions/grib2/tables/29/4.1.3.table +++ b/definitions/grib2/tables/29/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/29/4.1.4.table b/definitions/grib2/tables/29/4.1.4.table index 7d1378729..acc38053c 100644 --- a/definitions/grib2/tables/29/4.1.4.table +++ b/definitions/grib2/tables/29/4.1.4.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/29/4.10.table b/definitions/grib2/tables/29/4.10.table index b66560e8d..a51b45393 100644 --- a/definitions/grib2/tables/29/4.10.table +++ b/definitions/grib2/tables/29/4.10.table @@ -12,9 +12,6 @@ 10 10 Standardized anomaly 11 11 Summation 12 12 Return period -# 13-99 Reserved 100 100 Severity 101 101 Mode -# 102-191 Reserved -# 192-254 Reserved for local use 255 missing Missing diff --git a/definitions/grib2/tables/29/4.11.table b/definitions/grib2/tables/29/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/29/4.11.table +++ b/definitions/grib2/tables/29/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/29/4.12.table b/definitions/grib2/tables/29/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/29/4.12.table +++ b/definitions/grib2/tables/29/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/4.13.table b/definitions/grib2/tables/29/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/29/4.13.table +++ b/definitions/grib2/tables/29/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/4.14.table b/definitions/grib2/tables/29/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/29/4.14.table +++ b/definitions/grib2/tables/29/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/4.15.table b/definitions/grib2/tables/29/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/29/4.15.table +++ b/definitions/grib2/tables/29/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/29/4.16.table b/definitions/grib2/tables/29/4.16.table index 5b9f6fd73..2e0c69752 100644 --- a/definitions/grib2/tables/29/4.16.table +++ b/definitions/grib2/tables/29/4.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/29/4.2.0.0.table b/definitions/grib2/tables/29/4.2.0.0.table index e4912c9d6..835789797 100644 --- a/definitions/grib2/tables/29/4.2.0.0.table +++ b/definitions/grib2/tables/29/4.2.0.0.table @@ -32,6 +32,4 @@ 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 32 Wet-bulb potential temperature (K) -# 33-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.0.1.table b/definitions/grib2/tables/29/4.2.0.1.table index cd12c1444..9bf2d0761 100644 --- a/definitions/grib2/tables/29/4.2.0.1.table +++ b/definitions/grib2/tables/29/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -149,6 +148,4 @@ 147 147 Character of precipitation (Code table 4.249) 148 148 Snow evaporation rate (kg m-2 s-1) 149 149 Cloud water mixing ratio (kg kg-1) -# 150-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.0.13.table b/definitions/grib2/tables/29/4.2.0.13.table index 4c1253b96..6e05fe29c 100644 --- a/definitions/grib2/tables/29/4.2.0.13.table +++ b/definitions/grib2/tables/29/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/29/4.2.0.14.table b/definitions/grib2/tables/29/4.2.0.14.table index df0f721ea..78b9771d9 100644 --- a/definitions/grib2/tables/29/4.2.0.14.table +++ b/definitions/grib2/tables/29/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/4.2.0.15.table b/definitions/grib2/tables/29/4.2.0.15.table index ac49ad402..047a903f7 100644 --- a/definitions/grib2/tables/29/4.2.0.15.table +++ b/definitions/grib2/tables/29/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/29/4.2.0.16.table b/definitions/grib2/tables/29/4.2.0.16.table index 111e6d986..6fa720bf9 100644 --- a/definitions/grib2/tables/29/4.2.0.16.table +++ b/definitions/grib2/tables/29/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/29/4.2.0.18.table b/definitions/grib2/tables/29/4.2.0.18.table index 9d527a828..2f70d7a39 100644 --- a/definitions/grib2/tables/29/4.2.0.18.table +++ b/definitions/grib2/tables/29/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/29/4.2.0.19.table b/definitions/grib2/tables/29/4.2.0.19.table index 44bd20957..8263d1e0e 100644 --- a/definitions/grib2/tables/29/4.2.0.19.table +++ b/definitions/grib2/tables/29/4.2.0.19.table @@ -40,6 +40,4 @@ 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/definitions/grib2/tables/29/4.2.0.190.table b/definitions/grib2/tables/29/4.2.0.190.table index dfe39840d..bd8ceca18 100644 --- a/definitions/grib2/tables/29/4.2.0.190.table +++ b/definitions/grib2/tables/29/4.2.0.190.table @@ -1,5 +1,3 @@ # Product discipline 0 - Meteorological products, parameter category 190: CCITT IA5 string 0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.0.191.table b/definitions/grib2/tables/29/4.2.0.191.table index abc386331..62cf1bb58 100644 --- a/definitions/grib2/tables/29/4.2.0.191.table +++ b/definitions/grib2/tables/29/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/29/4.2.0.2.table b/definitions/grib2/tables/29/4.2.0.2.table index 079d475ac..7203ddb32 100644 --- a/definitions/grib2/tables/29/4.2.0.2.table +++ b/definitions/grib2/tables/29/4.2.0.2.table @@ -48,6 +48,4 @@ 46 46 Vorticity advection (s-2) 47 47 Surface roughness for heat (m) 48 48 Surface roughness for moisture (m) -# 49-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.0.20.table b/definitions/grib2/tables/29/4.2.0.20.table index bae36e080..1ff7bfdb3 100644 --- a/definitions/grib2/tables/29/4.2.0.20.table +++ b/definitions/grib2/tables/29/4.2.0.20.table @@ -17,7 +17,6 @@ 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) @@ -46,7 +45,6 @@ 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) @@ -59,6 +57,4 @@ 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/definitions/grib2/tables/29/4.2.0.3.table b/definitions/grib2/tables/29/4.2.0.3.table index 9f8fdb4bc..e28bc3e29 100644 --- a/definitions/grib2/tables/29/4.2.0.3.table +++ b/definitions/grib2/tables/29/4.2.0.3.table @@ -34,6 +34,4 @@ 32 32 Saturation water vapour pressure (Pa) 33 33 Geometric altitude above mean sea level (m) 34 34 Geometric height above ground level (m) -# 35-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.0.4.table b/definitions/grib2/tables/29/4.2.0.4.table index 1d7f50233..8df676ab3 100644 --- a/definitions/grib2/tables/29/4.2.0.4.table +++ b/definitions/grib2/tables/29/4.2.0.4.table @@ -15,12 +15,9 @@ 13 13 Direct short-wave radiation flux (W m-2) 14 14 Diffuse short-wave radiation flux (W m-2) 15 15 Upward UV radiation emitted/reflected from the Earth's surface (W m-2) -# 16-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/definitions/grib2/tables/29/4.2.0.5.table b/definitions/grib2/tables/29/4.2.0.5.table index 157326ba4..4a19f82ee 100644 --- a/definitions/grib2/tables/29/4.2.0.5.table +++ b/definitions/grib2/tables/29/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/29/4.2.0.6.table b/definitions/grib2/tables/29/4.2.0.6.table index ba308d07f..29744abf9 100644 --- a/definitions/grib2/tables/29/4.2.0.6.table +++ b/definitions/grib2/tables/29/4.2.0.6.table @@ -40,11 +40,8 @@ 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/definitions/grib2/tables/29/4.2.0.7.table b/definitions/grib2/tables/29/4.2.0.7.table index 15acb1857..7d60d9bf7 100644 --- a/definitions/grib2/tables/29/4.2.0.7.table +++ b/definitions/grib2/tables/29/4.2.0.7.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/29/4.2.1.0.table b/definitions/grib2/tables/29/4.2.1.0.table index 6204a22ae..6d44d3a30 100644 --- a/definitions/grib2/tables/29/4.2.1.0.table +++ b/definitions/grib2/tables/29/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/29/4.2.1.1.table b/definitions/grib2/tables/29/4.2.1.1.table index e3931d5e6..4cf7ecedd 100644 --- a/definitions/grib2/tables/29/4.2.1.1.table +++ b/definitions/grib2/tables/29/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/4.2.1.2.table b/definitions/grib2/tables/29/4.2.1.2.table index bd7276cfe..e52e2af9d 100644 --- a/definitions/grib2/tables/29/4.2.1.2.table +++ b/definitions/grib2/tables/29/4.2.1.2.table @@ -14,6 +14,4 @@ 12 12 Salinity (kg/kg) 13 13 Cross-sectional area of flow in channel (m2) 14 14 Snow temperature (K) -# 15-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.10.0.table b/definitions/grib2/tables/29/4.2.10.0.table index 8f307c0de..11cf44892 100644 --- a/definitions/grib2/tables/29/4.2.10.0.table +++ b/definitions/grib2/tables/29/4.2.10.0.table @@ -73,6 +73,4 @@ 71 71 Peak direction of wind waves (degree true) 72 72 Peak direction of total swell (degree true) 73 73 Whitecap fraction (fraction) -# 74-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.10.1.table b/definitions/grib2/tables/29/4.2.10.1.table index e61b24273..a43f49d0d 100644 --- a/definitions/grib2/tables/29/4.2.10.1.table +++ b/definitions/grib2/tables/29/4.2.10.1.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/29/4.2.10.191.table b/definitions/grib2/tables/29/4.2.10.191.table index cd4d4cde7..c6aac389a 100644 --- a/definitions/grib2/tables/29/4.2.10.191.table +++ b/definitions/grib2/tables/29/4.2.10.191.table @@ -4,6 +4,4 @@ 2 2 Reserved 3 3 Days since last observation (d) 4 4 Barotropic stream function (m3 s-1) -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.10.2.table b/definitions/grib2/tables/29/4.2.10.2.table index bc5af92b3..5e8d89447 100644 --- a/definitions/grib2/tables/29/4.2.10.2.table +++ b/definitions/grib2/tables/29/4.2.10.2.table @@ -14,6 +14,4 @@ 12 12 Compressive ice strength (N/m) 13 13 Snow temperature (over sea ice) (K) 14 14 Albedo (Numeric) -# 15-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.10.3.table b/definitions/grib2/tables/29/4.2.10.3.table index 58d65d57d..768337787 100644 --- a/definitions/grib2/tables/29/4.2.10.3.table +++ b/definitions/grib2/tables/29/4.2.10.3.table @@ -12,6 +12,4 @@ 10 10 Halosteric change in sea surface height (m) 11 11 Steric change in sea surface height (m) 12 12 Sea salt flux (kg m-2 s-1) -# 13-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.10.4.table b/definitions/grib2/tables/29/4.2.10.4.table index 20bdb9e36..328d1ea54 100644 --- a/definitions/grib2/tables/29/4.2.10.4.table +++ b/definitions/grib2/tables/29/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -26,6 +25,4 @@ 26 26 y-component water velocity (m s-1) 27 27 Upward water velocity (m s-1) 28 28 Vertical eddy diffusivity (m2 s-1) -# 29-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.2.0.table b/definitions/grib2/tables/29/4.2.2.0.table index 9df7d4cf1..054c63828 100644 --- a/definitions/grib2/tables/29/4.2.2.0.table +++ b/definitions/grib2/tables/29/4.2.2.0.table @@ -44,6 +44,4 @@ 42 42 Water runoff and drainage rate (kg m-2 s-1) 43 43 Drainage direction (Code table 4.250) 44 44 Upstream area (m2) -# 45-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.2.3.table b/definitions/grib2/tables/29/4.2.2.3.table index 4e2187a5b..2300f737d 100644 --- a/definitions/grib2/tables/29/4.2.2.3.table +++ b/definitions/grib2/tables/29/4.2.2.3.table @@ -29,6 +29,4 @@ 27 27 Soil depth (m) 28 28 Snow temperature (K) 29 29 Ice temperature (K) -# 30-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.2.4.table b/definitions/grib2/tables/29/4.2.2.4.table index 6083f2a98..f1a2552b2 100644 --- a/definitions/grib2/tables/29/4.2.2.4.table +++ b/definitions/grib2/tables/29/4.2.2.4.table @@ -19,6 +19,4 @@ 17 17 Burning index (as defined by the US Forest Service National Fire Danger Rating System) (Numeric) 18 18 Ignition component (as defined by the US Forest Service National Fire Danger Rating System) (%) 19 19 Energy release component (as defined by the US Forest Service National Fire Danger Rating System) (Joule/m2) -# 20-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.2.5.table b/definitions/grib2/tables/29/4.2.2.5.table index 1d08dd573..7cea1b5da 100644 --- a/definitions/grib2/tables/29/4.2.2.5.table +++ b/definitions/grib2/tables/29/4.2.2.5.table @@ -1,6 +1,4 @@ # Product discipline 2 - Land surface products, parameter category 5: glaciers and inland ice 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/definitions/grib2/tables/29/4.2.20.0.table b/definitions/grib2/tables/29/4.2.20.0.table index a997371d9..23ed9f577 100644 --- a/definitions/grib2/tables/29/4.2.20.0.table +++ b/definitions/grib2/tables/29/4.2.20.0.table @@ -8,6 +8,4 @@ 6 6 Normal effective temperature (K) 7 7 Standard effective temperature (K) 8 8 Physiological equivalent temperature (K) -# 9-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.20.1.table b/definitions/grib2/tables/29/4.2.20.1.table index e1bd8fda2..a3bfa7e20 100644 --- a/definitions/grib2/tables/29/4.2.20.1.table +++ b/definitions/grib2/tables/29/4.2.20.1.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/29/4.2.20.2.table b/definitions/grib2/tables/29/4.2.20.2.table index d6b9083d1..285f12a81 100644 --- a/definitions/grib2/tables/29/4.2.20.2.table +++ b/definitions/grib2/tables/29/4.2.20.2.table @@ -1,5 +1,3 @@ # Product discipline 20 - Health and socioeconomic impacts, parameter category 2: socioeconomic indicators 0 0 Population density (Person m-2) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.3.0.table b/definitions/grib2/tables/29/4.2.3.0.table index 0bec15119..49b098942 100644 --- a/definitions/grib2/tables/29/4.2.3.0.table +++ b/definitions/grib2/tables/29/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/29/4.2.3.1.table b/definitions/grib2/tables/29/4.2.3.1.table index 3211e5d1c..05d6e7e40 100644 --- a/definitions/grib2/tables/29/4.2.3.1.table +++ b/definitions/grib2/tables/29/4.2.3.1.table @@ -23,13 +23,9 @@ 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/definitions/grib2/tables/29/4.2.4.0.table b/definitions/grib2/tables/29/4.2.4.0.table index 337308305..47a9b9f78 100644 --- a/definitions/grib2/tables/29/4.2.4.0.table +++ b/definitions/grib2/tables/29/4.2.4.0.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/29/4.2.4.1.table b/definitions/grib2/tables/29/4.2.4.1.table index 9ec11160f..4ce057416 100644 --- a/definitions/grib2/tables/29/4.2.4.1.table +++ b/definitions/grib2/tables/29/4.2.4.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/29/4.2.4.10.table b/definitions/grib2/tables/29/4.2.4.10.table index 8f5b19e06..e539399da 100644 --- a/definitions/grib2/tables/29/4.2.4.10.table +++ b/definitions/grib2/tables/29/4.2.4.10.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/29/4.2.4.2.table b/definitions/grib2/tables/29/4.2.4.2.table index b479b3361..f101c726d 100644 --- a/definitions/grib2/tables/29/4.2.4.2.table +++ b/definitions/grib2/tables/29/4.2.4.2.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/29/4.2.4.3.table b/definitions/grib2/tables/29/4.2.4.3.table index 3b752bbbc..83c5c4003 100644 --- a/definitions/grib2/tables/29/4.2.4.3.table +++ b/definitions/grib2/tables/29/4.2.4.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/29/4.2.4.4.table b/definitions/grib2/tables/29/4.2.4.4.table index 281b6cf05..02d531149 100644 --- a/definitions/grib2/tables/29/4.2.4.4.table +++ b/definitions/grib2/tables/29/4.2.4.4.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/29/4.2.4.5.table b/definitions/grib2/tables/29/4.2.4.5.table index 913efec6f..25c1edd37 100644 --- a/definitions/grib2/tables/29/4.2.4.5.table +++ b/definitions/grib2/tables/29/4.2.4.5.table @@ -3,6 +3,4 @@ 1 1 Phase (rad) 2 2 Frequency (Hz) 3 3 Wavelength (m) -# 4-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.4.6.table b/definitions/grib2/tables/29/4.2.4.6.table index f4efd1e08..9c2b8c8fb 100644 --- a/definitions/grib2/tables/29/4.2.4.6.table +++ b/definitions/grib2/tables/29/4.2.4.6.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/29/4.2.4.7.table b/definitions/grib2/tables/29/4.2.4.7.table index 38c2b17a8..0433ac516 100644 --- a/definitions/grib2/tables/29/4.2.4.7.table +++ b/definitions/grib2/tables/29/4.2.4.7.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/29/4.2.4.8.table b/definitions/grib2/tables/29/4.2.4.8.table index f350f4807..f0cc8aac2 100644 --- a/definitions/grib2/tables/29/4.2.4.8.table +++ b/definitions/grib2/tables/29/4.2.4.8.table @@ -8,6 +8,4 @@ 6 6 Heliospheric radiance (W sr-1 m-2) 7 7 Thematic mask (Numeric) 8 8 Solar induced chlorophyll fluorescence (W m-2 sr-1 m-1) -# 9-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.2.4.9.table b/definitions/grib2/tables/29/4.2.4.9.table index 0e83436e2..984ea4726 100644 --- a/definitions/grib2/tables/29/4.2.4.9.table +++ b/definitions/grib2/tables/29/4.2.4.9.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/4.201.table b/definitions/grib2/tables/29/4.201.table index a725e4e65..c30b081a2 100644 --- a/definitions/grib2/tables/29/4.201.table +++ b/definitions/grib2/tables/29/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/29/4.202.table b/definitions/grib2/tables/29/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/29/4.202.table +++ b/definitions/grib2/tables/29/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.203.table b/definitions/grib2/tables/29/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/29/4.203.table +++ b/definitions/grib2/tables/29/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/29/4.204.table b/definitions/grib2/tables/29/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/29/4.204.table +++ b/definitions/grib2/tables/29/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/29/4.205.table b/definitions/grib2/tables/29/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/29/4.205.table +++ b/definitions/grib2/tables/29/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/4.206.table b/definitions/grib2/tables/29/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/29/4.206.table +++ b/definitions/grib2/tables/29/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/4.207.table b/definitions/grib2/tables/29/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/29/4.207.table +++ b/definitions/grib2/tables/29/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.208.table b/definitions/grib2/tables/29/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/29/4.208.table +++ b/definitions/grib2/tables/29/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.209.table b/definitions/grib2/tables/29/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/29/4.209.table +++ b/definitions/grib2/tables/29/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/29/4.210.table b/definitions/grib2/tables/29/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/29/4.210.table +++ b/definitions/grib2/tables/29/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/4.211.table b/definitions/grib2/tables/29/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/29/4.211.table +++ b/definitions/grib2/tables/29/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/4.212.table b/definitions/grib2/tables/29/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/29/4.212.table +++ b/definitions/grib2/tables/29/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/29/4.213.table b/definitions/grib2/tables/29/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/29/4.213.table +++ b/definitions/grib2/tables/29/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/29/4.214.table b/definitions/grib2/tables/29/4.214.table index b08860ce0..c0eaeda75 100644 --- a/definitions/grib2/tables/29/4.214.table +++ b/definitions/grib2/tables/29/4.214.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/29/4.215.table b/definitions/grib2/tables/29/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/29/4.215.table +++ b/definitions/grib2/tables/29/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/29/4.216.table b/definitions/grib2/tables/29/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/29/4.216.table +++ b/definitions/grib2/tables/29/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/29/4.217.table b/definitions/grib2/tables/29/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/29/4.217.table +++ b/definitions/grib2/tables/29/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/29/4.218.table b/definitions/grib2/tables/29/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/29/4.218.table +++ b/definitions/grib2/tables/29/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/29/4.219.table b/definitions/grib2/tables/29/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/29/4.219.table +++ b/definitions/grib2/tables/29/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/29/4.220.table b/definitions/grib2/tables/29/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/29/4.220.table +++ b/definitions/grib2/tables/29/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/4.221.table b/definitions/grib2/tables/29/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/29/4.221.table +++ b/definitions/grib2/tables/29/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/4.222.table b/definitions/grib2/tables/29/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/29/4.222.table +++ b/definitions/grib2/tables/29/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/4.224.table b/definitions/grib2/tables/29/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/29/4.224.table +++ b/definitions/grib2/tables/29/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/29/4.227.table b/definitions/grib2/tables/29/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/29/4.227.table +++ b/definitions/grib2/tables/29/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/29/4.228.table b/definitions/grib2/tables/29/4.228.table index 048a69f0b..88c3dd87c 100644 --- a/definitions/grib2/tables/29/4.228.table +++ b/definitions/grib2/tables/29/4.228.table @@ -4,5 +4,4 @@ 2 2 Light 3 3 Moderate 4 4 Severe -# 5-254 Reserved 255 255 Missing value diff --git a/definitions/grib2/tables/29/4.230.table b/definitions/grib2/tables/29/4.230.table index 7dd4d7c77..42fca3ded 100644 --- a/definitions/grib2/tables/29/4.230.table +++ b/definitions/grib2/tables/29/4.230.table @@ -46,7 +46,6 @@ 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 @@ -106,10 +105,8 @@ 10057 10057 2-lambda^1-oxidanyloxy-3-methylbut-3-en-1-ol (2-hydroxy-1-isopropenylethylperoxy radical) HOCH2CH(OO*)C(CH3)CH2 10058 10058 (Z)-4-hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH3)CHO 10059 10059 (Z)-4-hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH3)CHCHO -# 10060-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, etc.) 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 @@ -132,9 +129,7 @@ 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 @@ -424,12 +419,10 @@ 30296 30296 Lead Pb 30297 30297 Tellurium 131 Te-131 30298 30298 Neodymium 137 Nd-137 -# 30299-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 @@ -465,7 +458,6 @@ 60032 60032 All hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O2 ISOPOOH 60033 60033 Anthropogenic volatile organic compounds aVOC 60034 60034 Biomass burning volatile organic compounds bbVOC -# 60035-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -485,22 +477,18 @@ 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 @@ -517,15 +505,12 @@ 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/definitions/grib2/tables/29/4.233.table b/definitions/grib2/tables/29/4.233.table index 2d15bdf97..9a1d998d9 100644 --- a/definitions/grib2/tables/29/4.233.table +++ b/definitions/grib2/tables/29/4.233.table @@ -46,7 +46,6 @@ 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 @@ -106,10 +105,8 @@ 10057 10057 2-lambda^1-oxidanyloxy-3-methylbut-3-en-1-ol (2-hydroxy-1-isopropenylethylperoxy radical) HOCH2CH(OO*)C(CH3)CH2 10058 10058 (Z)-4-hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH3)CHO 10059 10059 (Z)-4-hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH3)CHCHO -# 10060-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, etc.) 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 @@ -132,9 +129,7 @@ 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 @@ -424,12 +419,10 @@ 30296 30296 Lead Pb 30297 30297 Tellurium 131 Te-131 30298 30298 Neodymium 137 Nd-137 -# 30299-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 @@ -465,7 +458,6 @@ 60032 60032 All hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O2 ISOPOOH 60033 60033 Anthropogenic volatile organic compounds aVOC 60034 60034 Biomass burning volatile organic compounds bbVOC -# 60035-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -485,22 +477,18 @@ 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 @@ -517,15 +505,12 @@ 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/definitions/grib2/tables/29/4.238.table b/definitions/grib2/tables/29/4.238.table index be5be3a90..abd570100 100644 --- a/definitions/grib2/tables/29/4.238.table +++ b/definitions/grib2/tables/29/4.238.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/29/4.240.table b/definitions/grib2/tables/29/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/29/4.240.table +++ b/definitions/grib2/tables/29/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/29/4.241.table b/definitions/grib2/tables/29/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/29/4.241.table +++ b/definitions/grib2/tables/29/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/29/4.242.table b/definitions/grib2/tables/29/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/29/4.242.table +++ b/definitions/grib2/tables/29/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/4.243.table b/definitions/grib2/tables/29/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/29/4.243.table +++ b/definitions/grib2/tables/29/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/29/4.244.table b/definitions/grib2/tables/29/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/29/4.244.table +++ b/definitions/grib2/tables/29/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/4.246.table b/definitions/grib2/tables/29/4.246.table index 0ca9c0c98..74c16312c 100644 --- a/definitions/grib2/tables/29/4.246.table +++ b/definitions/grib2/tables/29/4.246.table @@ -3,5 +3,4 @@ 1 1 Weak thunderstorm 2 2 Moderate thunderstorm 3 3 Severe thunderstorm -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/29/4.247.table b/definitions/grib2/tables/29/4.247.table index 6da16e396..5a55bf127 100644 --- a/definitions/grib2/tables/29/4.247.table +++ b/definitions/grib2/tables/29/4.247.table @@ -3,5 +3,4 @@ 1 1 Light precipitation 2 2 Moderate precipitation 3 3 Heavy precipitation -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/29/4.248.table b/definitions/grib2/tables/29/4.248.table index 04e365c97..ae4965d8d 100644 --- a/definitions/grib2/tables/29/4.248.table +++ b/definitions/grib2/tables/29/4.248.table @@ -1,6 +1,4 @@ # Code table 4.248 - Method used to derive data values for a given local time 0 0 Nearest forecast or analysis time to specified local time 1 1 Interpolated to be valid at the specified local time -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.249.table b/definitions/grib2/tables/29/4.249.table index bd1c944c4..93137b15b 100644 --- a/definitions/grib2/tables/29/4.249.table +++ b/definitions/grib2/tables/29/4.249.table @@ -3,5 +3,4 @@ 1 1 Showers 2 2 Intermittent 3 3 Continuous -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/29/4.250.table b/definitions/grib2/tables/29/4.250.table index e4d91caba..045ed730b 100644 --- a/definitions/grib2/tables/29/4.250.table +++ b/definitions/grib2/tables/29/4.250.table @@ -9,6 +9,4 @@ 7 7 North-West 8 8 North 9 9 North-East -# 10-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.3.table b/definitions/grib2/tables/29/4.3.table index 8ae36efc3..5d9191ff8 100644 --- a/definitions/grib2/tables/29/4.3.table +++ b/definitions/grib2/tables/29/4.3.table @@ -21,6 +21,4 @@ 19 19 First guess 20 20 Analysis increment 21 21 Initialization increment for analysis -# 22-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/29/4.4.table b/definitions/grib2/tables/29/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/29/4.4.table +++ b/definitions/grib2/tables/29/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/29/4.5.table b/definitions/grib2/tables/29/4.5.table index 98103671d..2eacb0270 100644 --- a/definitions/grib2/tables/29/4.5.table +++ b/definitions/grib2/tables/29/4.5.table @@ -18,7 +18,6 @@ 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) @@ -27,14 +26,12 @@ 25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) 26 26 Convective cloud layer base (m) 27 27 Convective cloud layer top (m) -# 28-29 Reserved 30 30 Specified radius from the centre 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) @@ -51,15 +48,12 @@ 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 sfc Lake or river bottom (-) @@ -72,18 +66,14 @@ 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 171 Ocean level defined by vertical eddy diffusivity difference from near-surface to level (m2 s-1) -# 172-173 Reserved 174 sfc 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/definitions/grib2/tables/29/4.6.table b/definitions/grib2/tables/29/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/29/4.6.table +++ b/definitions/grib2/tables/29/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/29/4.7.table b/definitions/grib2/tables/29/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/29/4.7.table +++ b/definitions/grib2/tables/29/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/29/4.8.table b/definitions/grib2/tables/29/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/29/4.8.table +++ b/definitions/grib2/tables/29/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/4.9.table b/definitions/grib2/tables/29/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/29/4.9.table +++ b/definitions/grib2/tables/29/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/29/4.91.table b/definitions/grib2/tables/29/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/29/4.91.table +++ b/definitions/grib2/tables/29/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/29/5.0.table b/definitions/grib2/tables/29/5.0.table index 5e00004b0..115b708f2 100644 --- a/definitions/grib2/tables/29/5.0.table +++ b/definitions/grib2/tables/29/5.0.table @@ -4,19 +4,12 @@ 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 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/definitions/grib2/tables/29/5.1.table b/definitions/grib2/tables/29/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/29/5.1.table +++ b/definitions/grib2/tables/29/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/5.2.table b/definitions/grib2/tables/29/5.2.table index 60d557a0d..b880c47c2 100644 --- a/definitions/grib2/tables/29/5.2.table +++ b/definitions/grib2/tables/29/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/29/5.25.table b/definitions/grib2/tables/29/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/29/5.25.table +++ b/definitions/grib2/tables/29/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/29/5.26.table b/definitions/grib2/tables/29/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/29/5.26.table +++ b/definitions/grib2/tables/29/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/29/5.3.table b/definitions/grib2/tables/29/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/29/5.3.table +++ b/definitions/grib2/tables/29/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/5.4.table b/definitions/grib2/tables/29/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/29/5.4.table +++ b/definitions/grib2/tables/29/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/29/5.40.table b/definitions/grib2/tables/29/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/29/5.40.table +++ b/definitions/grib2/tables/29/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/29/5.5.table b/definitions/grib2/tables/29/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/29/5.5.table +++ b/definitions/grib2/tables/29/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/5.6.table b/definitions/grib2/tables/29/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/29/5.6.table +++ b/definitions/grib2/tables/29/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/29/5.7.table b/definitions/grib2/tables/29/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/29/5.7.table +++ b/definitions/grib2/tables/29/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/3/0.0.table b/definitions/grib2/tables/3/0.0.table index fd2056350..39475306e 100644 --- a/definitions/grib2/tables/3/0.0.table +++ b/definitions/grib2/tables/3/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/3/1.2.table b/definitions/grib2/tables/3/1.2.table index eb8755209..65b1aca9a 100644 --- a/definitions/grib2/tables/3/1.2.table +++ b/definitions/grib2/tables/3/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/3/1.3.table b/definitions/grib2/tables/3/1.3.table index d4ed48c63..d2a1c2770 100644 --- a/definitions/grib2/tables/3/1.3.table +++ b/definitions/grib2/tables/3/1.3.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/3/1.4.table b/definitions/grib2/tables/3/1.4.table index ac21f5c4c..8fa9b6b41 100644 --- a/definitions/grib2/tables/3/1.4.table +++ b/definitions/grib2/tables/3/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/3/3.0.table b/definitions/grib2/tables/3/3.0.table index 6030a5132..4f4fd7be4 100644 --- a/definitions/grib2/tables/3/3.0.table +++ b/definitions/grib2/tables/3/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/3/3.1.table b/definitions/grib2/tables/3/3.1.table index 235fb8bd3..6ad006cb0 100644 --- a/definitions/grib2/tables/3/3.1.table +++ b/definitions/grib2/tables/3/3.1.table @@ -3,41 +3,25 @@ 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/definitions/grib2/tables/3/3.2.table b/definitions/grib2/tables/3/3.2.table index d037ee120..2bf054512 100644 --- a/definitions/grib2/tables/3/3.2.table +++ b/definitions/grib2/tables/3/3.2.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/3/3.20.table b/definitions/grib2/tables/3/3.20.table index cfa35ae38..f79d193b6 100644 --- a/definitions/grib2/tables/3/3.20.table +++ b/definitions/grib2/tables/3/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/3/3.21.table b/definitions/grib2/tables/3/3.21.table index c2fd94586..d42c900cb 100644 --- a/definitions/grib2/tables/3/3.21.table +++ b/definitions/grib2/tables/3/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/3/3.7.table b/definitions/grib2/tables/3/3.7.table index b57c480a4..5937ea14d 100644 --- a/definitions/grib2/tables/3/3.7.table +++ b/definitions/grib2/tables/3/3.7.table @@ -1,5 +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) -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/3/3.8.table b/definitions/grib2/tables/3/3.8.table index 0d9b7d001..a6b503617 100644 --- a/definitions/grib2/tables/3/3.8.table +++ b/definitions/grib2/tables/3/3.8.table @@ -2,7 +2,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 -#3-191 Reserved -#192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.1.0.table b/definitions/grib2/tables/3/4.1.0.table index 33d1c3984..d9660f77e 100644 --- a/definitions/grib2/tables/3/4.1.0.table +++ b/definitions/grib2/tables/3/4.1.0.table @@ -21,10 +21,8 @@ 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/definitions/grib2/tables/3/4.1.1.table b/definitions/grib2/tables/3/4.1.1.table index ebb7d9ea0..220c7fd5a 100644 --- a/definitions/grib2/tables/3/4.1.1.table +++ b/definitions/grib2/tables/3/4.1.1.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/3/4.1.10.table b/definitions/grib2/tables/3/4.1.10.table index 45b08caaa..5593171ac 100644 --- a/definitions/grib2/tables/3/4.1.10.table +++ b/definitions/grib2/tables/3/4.1.10.table @@ -5,8 +5,6 @@ 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/definitions/grib2/tables/3/4.1.2.table b/definitions/grib2/tables/3/4.1.2.table index f7f2ea2ba..0426852f0 100644 --- a/definitions/grib2/tables/3/4.1.2.table +++ b/definitions/grib2/tables/3/4.1.2.table @@ -4,8 +4,6 @@ 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/definitions/grib2/tables/3/4.1.3.table b/definitions/grib2/tables/3/4.1.3.table index f7578e163..744f02eba 100644 --- a/definitions/grib2/tables/3/4.1.3.table +++ b/definitions/grib2/tables/3/4.1.3.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/3/4.10.table b/definitions/grib2/tables/3/4.10.table index 9cf447b69..94bf593af 100644 --- a/definitions/grib2/tables/3/4.10.table +++ b/definitions/grib2/tables/3/4.10.table @@ -10,5 +10,4 @@ 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/definitions/grib2/tables/3/4.11.table b/definitions/grib2/tables/3/4.11.table index 68901aac4..28c7ebbd3 100644 --- a/definitions/grib2/tables/3/4.11.table +++ b/definitions/grib2/tables/3/4.11.table @@ -5,5 +5,4 @@ 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/definitions/grib2/tables/3/4.12.table b/definitions/grib2/tables/3/4.12.table index a8dc4b1c7..f52f20c09 100644 --- a/definitions/grib2/tables/3/4.12.table +++ b/definitions/grib2/tables/3/4.12.table @@ -2,5 +2,4 @@ 0 0 Maintenance Mode 1 1 Clear air 2 2 Precipitation -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.13.table b/definitions/grib2/tables/3/4.13.table index 29ddf2a3c..255f90b78 100644 --- a/definitions/grib2/tables/3/4.13.table +++ b/definitions/grib2/tables/3/4.13.table @@ -1,5 +1,4 @@ # CODE TABLE 4.13, Quality Control Indicator 0 0 No quality control applied 1 1 Quality control applied -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.14.table b/definitions/grib2/tables/3/4.14.table index e19c14c2f..34b0931f7 100644 --- a/definitions/grib2/tables/3/4.14.table +++ b/definitions/grib2/tables/3/4.14.table @@ -1,5 +1,4 @@ # CODE TABLE 4.14, Clutter Filter Indicator 0 0 No clutter filter used 1 1 Clutter filter used -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.15.table b/definitions/grib2/tables/3/4.15.table index e247693ad..d75d8823b 100644 --- a/definitions/grib2/tables/3/4.15.table +++ b/definitions/grib2/tables/3/4.15.table @@ -1,5 +1,4 @@ # CODE TABLE 4.15, Type of auxiliary information 0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.151.table b/definitions/grib2/tables/3/4.151.table index 30487afb4..90a8c6ca0 100644 --- a/definitions/grib2/tables/3/4.151.table +++ b/definitions/grib2/tables/3/4.151.table @@ -3,5 +3,4 @@ 1 1 suspect 2 2 acceptable 3 3 excellent -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.2.0.0.table b/definitions/grib2/tables/3/4.2.0.0.table index 0386b8cd2..94841baa0 100644 --- a/definitions/grib2/tables/3/4.2.0.0.table +++ b/definitions/grib2/tables/3/4.2.0.0.table @@ -17,7 +17,5 @@ 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/definitions/grib2/tables/3/4.2.0.1.table b/definitions/grib2/tables/3/4.2.0.1.table index 154f2d007..17bb7b4c5 100644 --- a/definitions/grib2/tables/3/4.2.0.1.table +++ b/definitions/grib2/tables/3/4.2.0.1.table @@ -56,7 +56,5 @@ 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/definitions/grib2/tables/3/4.2.0.13.table b/definitions/grib2/tables/3/4.2.0.13.table index 8fc3425af..a8c8c8bce 100644 --- a/definitions/grib2/tables/3/4.2.0.13.table +++ b/definitions/grib2/tables/3/4.2.0.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/3/4.2.0.14.table b/definitions/grib2/tables/3/4.2.0.14.table index 309c40d47..d3128ec55 100644 --- a/definitions/grib2/tables/3/4.2.0.14.table +++ b/definitions/grib2/tables/3/4.2.0.14.table @@ -1,7 +1,5 @@ # 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/definitions/grib2/tables/3/4.2.0.15.table b/definitions/grib2/tables/3/4.2.0.15.table index bb419178b..e73f9eae7 100644 --- a/definitions/grib2/tables/3/4.2.0.15.table +++ b/definitions/grib2/tables/3/4.2.0.15.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/3/4.2.0.18.table b/definitions/grib2/tables/3/4.2.0.18.table index 5c0fd6e5d..1ee1cb17c 100644 --- a/definitions/grib2/tables/3/4.2.0.18.table +++ b/definitions/grib2/tables/3/4.2.0.18.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/3/4.2.0.19.table b/definitions/grib2/tables/3/4.2.0.19.table index 369c3f657..d56c14505 100644 --- a/definitions/grib2/tables/3/4.2.0.19.table +++ b/definitions/grib2/tables/3/4.2.0.19.table @@ -18,7 +18,5 @@ 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/definitions/grib2/tables/3/4.2.0.190.table b/definitions/grib2/tables/3/4.2.0.190.table index b1f47bc02..b95b4ab90 100644 --- a/definitions/grib2/tables/3/4.2.0.190.table +++ b/definitions/grib2/tables/3/4.2.0.190.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/3/4.2.0.191.table b/definitions/grib2/tables/3/4.2.0.191.table index affb98f42..d095f705e 100644 --- a/definitions/grib2/tables/3/4.2.0.191.table +++ b/definitions/grib2/tables/3/4.2.0.191.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/3/4.2.0.2.table b/definitions/grib2/tables/3/4.2.0.2.table index 1ec945102..75b6211aa 100644 --- a/definitions/grib2/tables/3/4.2.0.2.table +++ b/definitions/grib2/tables/3/4.2.0.2.table @@ -30,6 +30,4 @@ 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/definitions/grib2/tables/3/4.2.0.20.table b/definitions/grib2/tables/3/4.2.0.20.table index 4e7f45db4..4e5938bb4 100644 --- a/definitions/grib2/tables/3/4.2.0.20.table +++ b/definitions/grib2/tables/3/4.2.0.20.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/3/4.2.0.3.table b/definitions/grib2/tables/3/4.2.0.3.table index 5c7e8151d..fedd11abd 100644 --- a/definitions/grib2/tables/3/4.2.0.3.table +++ b/definitions/grib2/tables/3/4.2.0.3.table @@ -19,7 +19,5 @@ 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/definitions/grib2/tables/3/4.2.0.4.table b/definitions/grib2/tables/3/4.2.0.4.table index 815c184a2..06785fac6 100644 --- a/definitions/grib2/tables/3/4.2.0.4.table +++ b/definitions/grib2/tables/3/4.2.0.4.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/3/4.2.0.5.table b/definitions/grib2/tables/3/4.2.0.5.table index 1b57fa301..e2749b5a6 100644 --- a/definitions/grib2/tables/3/4.2.0.5.table +++ b/definitions/grib2/tables/3/4.2.0.5.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/3/4.2.0.6.table b/definitions/grib2/tables/3/4.2.0.6.table index 05cf72f57..de4e051f2 100644 --- a/definitions/grib2/tables/3/4.2.0.6.table +++ b/definitions/grib2/tables/3/4.2.0.6.table @@ -24,7 +24,5 @@ 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/definitions/grib2/tables/3/4.2.0.7.table b/definitions/grib2/tables/3/4.2.0.7.table index 78374fde5..16458be11 100644 --- a/definitions/grib2/tables/3/4.2.0.7.table +++ b/definitions/grib2/tables/3/4.2.0.7.table @@ -12,7 +12,5 @@ 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/definitions/grib2/tables/3/4.2.1.1.table b/definitions/grib2/tables/3/4.2.1.1.table index b7342ef2f..f48c19e4d 100644 --- a/definitions/grib2/tables/3/4.2.1.1.table +++ b/definitions/grib2/tables/3/4.2.1.1.table @@ -2,7 +2,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) (%) -#3-191 Reserved -#192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.2.10.0.table b/definitions/grib2/tables/3/4.2.10.0.table index 479e26d51..5dc9bd64a 100644 --- a/definitions/grib2/tables/3/4.2.10.0.table +++ b/definitions/grib2/tables/3/4.2.10.0.table @@ -13,8 +13,6 @@ 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/definitions/grib2/tables/3/4.2.10.1.table b/definitions/grib2/tables/3/4.2.10.1.table index df18f31dd..b9b2bd024 100644 --- a/definitions/grib2/tables/3/4.2.10.1.table +++ b/definitions/grib2/tables/3/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/3/4.2.10.2.table b/definitions/grib2/tables/3/4.2.10.2.table index cb73da46c..8e5a41949 100644 --- a/definitions/grib2/tables/3/4.2.10.2.table +++ b/definitions/grib2/tables/3/4.2.10.2.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/3/4.2.10.3.table b/definitions/grib2/tables/3/4.2.10.3.table index a14ae22e3..5315b46c6 100644 --- a/definitions/grib2/tables/3/4.2.10.3.table +++ b/definitions/grib2/tables/3/4.2.10.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/3/4.2.10.4.table b/definitions/grib2/tables/3/4.2.10.4.table index a24c3c8c4..c76136014 100644 --- a/definitions/grib2/tables/3/4.2.10.4.table +++ b/definitions/grib2/tables/3/4.2.10.4.table @@ -3,7 +3,5 @@ 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/definitions/grib2/tables/3/4.2.2.0.table b/definitions/grib2/tables/3/4.2.2.0.table index fdc8ce0ef..ebca9dcb4 100644 --- a/definitions/grib2/tables/3/4.2.2.0.table +++ b/definitions/grib2/tables/3/4.2.2.0.table @@ -23,7 +23,5 @@ 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/definitions/grib2/tables/3/4.2.2.3.table b/definitions/grib2/tables/3/4.2.2.3.table index d6376fecb..fcca2b27f 100644 --- a/definitions/grib2/tables/3/4.2.2.3.table +++ b/definitions/grib2/tables/3/4.2.2.3.table @@ -10,7 +10,5 @@ 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/definitions/grib2/tables/3/4.2.3.0.table b/definitions/grib2/tables/3/4.2.3.0.table index 944566388..209542d4e 100644 --- a/definitions/grib2/tables/3/4.2.3.0.table +++ b/definitions/grib2/tables/3/4.2.3.0.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/3/4.2.3.1.table b/definitions/grib2/tables/3/4.2.3.1.table index 60d6e8420..2a34fc2c6 100644 --- a/definitions/grib2/tables/3/4.2.3.1.table +++ b/definitions/grib2/tables/3/4.2.3.1.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/3/4.201.table b/definitions/grib2/tables/3/4.201.table index bd20dd356..d2da38501 100644 --- a/definitions/grib2/tables/3/4.201.table +++ b/definitions/grib2/tables/3/4.201.table @@ -4,5 +4,4 @@ 3 3 Freezing rain 4 4 Mixed/ice 5 5 Snow -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.202.table b/definitions/grib2/tables/3/4.202.table index 242f2d5af..8044d02aa 100644 --- a/definitions/grib2/tables/3/4.202.table +++ b/definitions/grib2/tables/3/4.202.table @@ -1,3 +1,2 @@ # CODE TABLE 4.202, Precipitable water category -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.203.table b/definitions/grib2/tables/3/4.203.table index a5b02a88e..329457bf0 100644 --- a/definitions/grib2/tables/3/4.203.table +++ b/definitions/grib2/tables/3/4.203.table @@ -22,5 +22,4 @@ 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/definitions/grib2/tables/3/4.204.table b/definitions/grib2/tables/3/4.204.table index 41b47ef7c..eebc517a6 100644 --- a/definitions/grib2/tables/3/4.204.table +++ b/definitions/grib2/tables/3/4.204.table @@ -4,5 +4,4 @@ 2 2 Few (3% - 15%) 3 3 Scattered (16% - 45%) 4 4 Numerous (> 45%) -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.205.table b/definitions/grib2/tables/3/4.205.table index 179b09e08..10a1f5bbf 100644 --- a/definitions/grib2/tables/3/4.205.table +++ b/definitions/grib2/tables/3/4.205.table @@ -1,5 +1,4 @@ # CODE TABLE 4.205, Aerosol type 0 0 Aerosol not present 1 1 Aerosol present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.206.table b/definitions/grib2/tables/3/4.206.table index ea5bfcbc2..33353e74b 100644 --- a/definitions/grib2/tables/3/4.206.table +++ b/definitions/grib2/tables/3/4.206.table @@ -1,5 +1,4 @@ # CODE TABLE 4.206, Volcanic ash 0 0 Not present 1 1 Present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.207.table b/definitions/grib2/tables/3/4.207.table index 1fa48a194..d92a6b811 100644 --- a/definitions/grib2/tables/3/4.207.table +++ b/definitions/grib2/tables/3/4.207.table @@ -3,5 +3,4 @@ 1 1 Light 2 2 Moderate 3 3 Severe -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.208.table b/definitions/grib2/tables/3/4.208.table index 902d03a57..a14539b22 100644 --- a/definitions/grib2/tables/3/4.208.table +++ b/definitions/grib2/tables/3/4.208.table @@ -4,5 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.209.table b/definitions/grib2/tables/3/4.209.table index 7218049e4..e0c422325 100644 --- a/definitions/grib2/tables/3/4.209.table +++ b/definitions/grib2/tables/3/4.209.table @@ -3,5 +3,4 @@ 2 2 Mechanically driven turbulence 3 3 Forced convection 4 4 Free convection -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.210.table b/definitions/grib2/tables/3/4.210.table index 53ae41be2..58bdd2da3 100644 --- a/definitions/grib2/tables/3/4.210.table +++ b/definitions/grib2/tables/3/4.210.table @@ -1,5 +1,4 @@ # CODE TABLE 4.210, Contrail intensity 0 0 Contrail not present 1 1 Contrail present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.211.table b/definitions/grib2/tables/3/4.211.table index 56565001c..01bb27657 100644 --- a/definitions/grib2/tables/3/4.211.table +++ b/definitions/grib2/tables/3/4.211.table @@ -2,5 +2,4 @@ 0 0 Low bypass 1 1 High bypass 2 2 Non bypass -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.212.table b/definitions/grib2/tables/3/4.212.table index 10f38d1ef..e7274d600 100644 --- a/definitions/grib2/tables/3/4.212.table +++ b/definitions/grib2/tables/3/4.212.table @@ -12,5 +12,4 @@ 11 11 Ice 12 12 Tropical forest 13 13 Savannah -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.213.table b/definitions/grib2/tables/3/4.213.table index 199042325..4bf4f0ab0 100644 --- a/definitions/grib2/tables/3/4.213.table +++ b/definitions/grib2/tables/3/4.213.table @@ -10,5 +10,4 @@ 9 9 Sandy clay 10 10 Silty clay 11 11 Clay -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.217.table b/definitions/grib2/tables/3/4.217.table index 2bd70f1d3..032b14964 100644 --- a/definitions/grib2/tables/3/4.217.table +++ b/definitions/grib2/tables/3/4.217.table @@ -3,5 +3,4 @@ 1 1 Clear over land 2 2 Cloud 3 3 No data -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.220.table b/definitions/grib2/tables/3/4.220.table index ea7c55e48..d2efbaae3 100644 --- a/definitions/grib2/tables/3/4.220.table +++ b/definitions/grib2/tables/3/4.220.table @@ -1,5 +1,4 @@ # CODE TABLE 4.220, Horizontal dimension processed 0 0 Latitude 1 1 Longitude -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.221.table b/definitions/grib2/tables/3/4.221.table index d63c545c5..27775d7d0 100644 --- a/definitions/grib2/tables/3/4.221.table +++ b/definitions/grib2/tables/3/4.221.table @@ -1,5 +1,4 @@ # CODE TABLE 4.221, Treatment of missing data 0 0 Not included 1 1 Extrapolated -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.230.table b/definitions/grib2/tables/3/4.230.table index 23e819b65..511b005e8 100644 --- a/definitions/grib2/tables/3/4.230.table +++ b/definitions/grib2/tables/3/4.230.table @@ -27,7 +27,6 @@ 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 @@ -42,6 +41,4 @@ 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/definitions/grib2/tables/3/4.3.table b/definitions/grib2/tables/3/4.3.table index 84a72352b..c786df210 100644 --- a/definitions/grib2/tables/3/4.3.table +++ b/definitions/grib2/tables/3/4.3.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/3/4.4.table b/definitions/grib2/tables/3/4.4.table index 61aa20c5f..ae3c412b5 100644 --- a/definitions/grib2/tables/3/4.4.table +++ b/definitions/grib2/tables/3/4.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/3/4.5.table b/definitions/grib2/tables/3/4.5.table index d2a6d7876..584a8c784 100644 --- a/definitions/grib2/tables/3/4.5.table +++ b/definitions/grib2/tables/3/4.5.table @@ -9,9 +9,7 @@ 7 sfc 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) @@ -24,10 +22,6 @@ 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/definitions/grib2/tables/3/4.6.table b/definitions/grib2/tables/3/4.6.table index dc6d94c20..2147b6e13 100644 --- a/definitions/grib2/tables/3/4.6.table +++ b/definitions/grib2/tables/3/4.6.table @@ -4,5 +4,4 @@ 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/definitions/grib2/tables/3/4.7.table b/definitions/grib2/tables/3/4.7.table index 118508672..1dfaf3f0e 100644 --- a/definitions/grib2/tables/3/4.7.table +++ b/definitions/grib2/tables/3/4.7.table @@ -6,5 +6,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.8.table b/definitions/grib2/tables/3/4.8.table index bba75820a..47d463adf 100644 --- a/definitions/grib2/tables/3/4.8.table +++ b/definitions/grib2/tables/3/4.8.table @@ -1,5 +1,4 @@ # CODE TABLE 4.8, Clustering Method 0 0 Anomaly correlation 1 1 Root mean square -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.9.table b/definitions/grib2/tables/3/4.9.table index cd80b7818..95738e5bc 100644 --- a/definitions/grib2/tables/3/4.9.table +++ b/definitions/grib2/tables/3/4.9.table @@ -5,5 +5,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/3/4.91.table b/definitions/grib2/tables/3/4.91.table index f9606f201..8d2975f84 100644 --- a/definitions/grib2/tables/3/4.91.table +++ b/definitions/grib2/tables/3/4.91.table @@ -11,5 +11,4 @@ 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-254 Reserved for local use 255 missing Missing diff --git a/definitions/grib2/tables/3/5.0.table b/definitions/grib2/tables/3/5.0.table index b9b301151..7613820fc 100644 --- a/definitions/grib2/tables/3/5.0.table +++ b/definitions/grib2/tables/3/5.0.table @@ -9,7 +9,6 @@ 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/definitions/grib2/tables/3/5.1.table b/definitions/grib2/tables/3/5.1.table index d7ca4bedc..52ac8d861 100644 --- a/definitions/grib2/tables/3/5.1.table +++ b/definitions/grib2/tables/3/5.1.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/3/5.2.table b/definitions/grib2/tables/3/5.2.table index a048d712e..040c7fd6d 100644 --- a/definitions/grib2/tables/3/5.2.table +++ b/definitions/grib2/tables/3/5.2.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/3/5.3.table b/definitions/grib2/tables/3/5.3.table index 4a673ef85..e92a2b74c 100644 --- a/definitions/grib2/tables/3/5.3.table +++ b/definitions/grib2/tables/3/5.3.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/3/5.4.table b/definitions/grib2/tables/3/5.4.table index 1fd37966f..aed51082a 100644 --- a/definitions/grib2/tables/3/5.4.table +++ b/definitions/grib2/tables/3/5.4.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/3/5.40.table b/definitions/grib2/tables/3/5.40.table index 1eef7c763..a31bebc59 100644 --- a/definitions/grib2/tables/3/5.40.table +++ b/definitions/grib2/tables/3/5.40.table @@ -1,5 +1,4 @@ # Code Table 5.40: Type of Compression 0 0 Lossless 1 1 Lossy -#2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/3/5.5.table b/definitions/grib2/tables/3/5.5.table index d1caac9e8..2143388cb 100644 --- a/definitions/grib2/tables/3/5.5.table +++ b/definitions/grib2/tables/3/5.5.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/3/5.6.table b/definitions/grib2/tables/3/5.6.table index 7dc16a994..aaf705d48 100644 --- a/definitions/grib2/tables/3/5.6.table +++ b/definitions/grib2/tables/3/5.6.table @@ -2,5 +2,4 @@ 1 1 First-order spatial differencing 2 2 Second-order spatial differencing -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/0.0.table b/definitions/grib2/tables/30/0.0.table index a8542e94f..a54c35af2 100644 --- a/definitions/grib2/tables/30/0.0.table +++ b/definitions/grib2/tables/30/0.0.table @@ -4,10 +4,6 @@ 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/definitions/grib2/tables/30/1.2.table b/definitions/grib2/tables/30/1.2.table index 77f96637a..5371406eb 100644 --- a/definitions/grib2/tables/30/1.2.table +++ b/definitions/grib2/tables/30/1.2.table @@ -4,6 +4,4 @@ 2 2 Verifying time of forecast 3 3 Observation time 4 4 Local time -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/1.3.table b/definitions/grib2/tables/30/1.3.table index 5e2e59087..f82841612 100644 --- a/definitions/grib2/tables/30/1.3.table +++ b/definitions/grib2/tables/30/1.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/30/1.4.table b/definitions/grib2/tables/30/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/30/1.4.table +++ b/definitions/grib2/tables/30/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/30/1.5.table b/definitions/grib2/tables/30/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/30/1.5.table +++ b/definitions/grib2/tables/30/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/1.6.table b/definitions/grib2/tables/30/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/30/1.6.table +++ b/definitions/grib2/tables/30/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/30/3.0.table b/definitions/grib2/tables/30/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/30/3.0.table +++ b/definitions/grib2/tables/30/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/3.1.table b/definitions/grib2/tables/30/3.1.table index 7d372ddaf..2d50f176a 100644 --- a/definitions/grib2/tables/30/3.1.table +++ b/definitions/grib2/tables/30/3.1.table @@ -5,51 +5,32 @@ 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 Reserved 12 12 Transverse Mercator 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 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/definitions/grib2/tables/30/3.10.table b/definitions/grib2/tables/30/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/30/3.10.table +++ b/definitions/grib2/tables/30/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/30/3.11.table b/definitions/grib2/tables/30/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/30/3.11.table +++ b/definitions/grib2/tables/30/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/30/3.15.table b/definitions/grib2/tables/30/3.15.table index 43539dbfc..8a2e9a566 100644 --- a/definitions/grib2/tables/30/3.15.table +++ b/definitions/grib2/tables/30/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/30/3.2.table b/definitions/grib2/tables/30/3.2.table index 13b9bf469..83495adec 100644 --- a/definitions/grib2/tables/30/3.2.table +++ b/definitions/grib2/tables/30/3.2.table @@ -11,6 +11,4 @@ 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., Astrophysical Quantities, 3rd ed.; Athlone: London, 1976) 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, Astron. Astrophys. 2006, 449, 791-803) -# 12-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/3.20.table b/definitions/grib2/tables/30/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/30/3.20.table +++ b/definitions/grib2/tables/30/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/3.21.table b/definitions/grib2/tables/30/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/30/3.21.table +++ b/definitions/grib2/tables/30/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/30/3.25.table b/definitions/grib2/tables/30/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/30/3.25.table +++ b/definitions/grib2/tables/30/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/30/3.3.table b/definitions/grib2/tables/30/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/30/3.3.table +++ b/definitions/grib2/tables/30/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/30/3.7.table b/definitions/grib2/tables/30/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/30/3.7.table +++ b/definitions/grib2/tables/30/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/30/3.8.table b/definitions/grib2/tables/30/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/30/3.8.table +++ b/definitions/grib2/tables/30/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/3.9.table b/definitions/grib2/tables/30/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/30/3.9.table +++ b/definitions/grib2/tables/30/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/30/4.0.table b/definitions/grib2/tables/30/4.0.table index 47aa74902..fcd070c9a 100644 --- a/definitions/grib2/tables/30/4.0.table +++ b/definitions/grib2/tables/30/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -49,15 +44,12 @@ 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 @@ -71,7 +63,6 @@ 86 86 Quantile forecasts at a horizontal level or in a horizontal layer at a point in time 87 87 Quantile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval 88 88 Analysis or forecast at a horizontal level or in a horizontal layer at a specified local time -# 89-90 Reserved 91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval 92 92 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a specified local time 93 93 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a specified local time @@ -80,15 +71,10 @@ 96 96 Average, accumulation, extreme values or other statistically processed values of an individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a specified local time 97 97 Average, accumulation, extreme values or other statistically processed values of post-processing analysis or forecast at a horizontal level or in a horizontal layer at a specified local time 98 98 Average, accumulation, extreme values or other statistically processed values of a post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a specified local time -# 99-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/definitions/grib2/tables/30/4.1.0.table b/definitions/grib2/tables/30/4.1.0.table index 7f390b679..48abfe2d8 100644 --- a/definitions/grib2/tables/30/4.1.0.table +++ b/definitions/grib2/tables/30/4.1.0.table @@ -21,8 +21,6 @@ 19 19 Physical atmospheric properties 20 20 Atmospheric chemical constituents 21 21 Thermodynamic properties -# 22-189 Reserved 190 190 CCITT IA5 string 191 191 Miscellaneous -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.1.1.table b/definitions/grib2/tables/30/4.1.1.table index df2c13fa8..06451e837 100644 --- a/definitions/grib2/tables/30/4.1.1.table +++ b/definitions/grib2/tables/30/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/4.1.10.table b/definitions/grib2/tables/30/4.1.10.table index 5a64f9652..d7bb7e672 100644 --- a/definitions/grib2/tables/30/4.1.10.table +++ b/definitions/grib2/tables/30/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/30/4.1.2.table b/definitions/grib2/tables/30/4.1.2.table index 9d6f690ac..8faac9a1b 100644 --- a/definitions/grib2/tables/30/4.1.2.table +++ b/definitions/grib2/tables/30/4.1.2.table @@ -6,6 +6,4 @@ 4 4 Fire weather products 5 5 Glaciers and inland ice 6 6 Urban areas -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.1.20.table b/definitions/grib2/tables/30/4.1.20.table index 1e5472a3f..5a725ceb4 100644 --- a/definitions/grib2/tables/30/4.1.20.table +++ b/definitions/grib2/tables/30/4.1.20.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/4.1.3.table b/definitions/grib2/tables/30/4.1.3.table index 35d82f440..df3cc24e1 100644 --- a/definitions/grib2/tables/30/4.1.3.table +++ b/definitions/grib2/tables/30/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/30/4.1.4.table b/definitions/grib2/tables/30/4.1.4.table index 7d1378729..acc38053c 100644 --- a/definitions/grib2/tables/30/4.1.4.table +++ b/definitions/grib2/tables/30/4.1.4.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/30/4.10.table b/definitions/grib2/tables/30/4.10.table index b66560e8d..a51b45393 100644 --- a/definitions/grib2/tables/30/4.10.table +++ b/definitions/grib2/tables/30/4.10.table @@ -12,9 +12,6 @@ 10 10 Standardized anomaly 11 11 Summation 12 12 Return period -# 13-99 Reserved 100 100 Severity 101 101 Mode -# 102-191 Reserved -# 192-254 Reserved for local use 255 missing Missing diff --git a/definitions/grib2/tables/30/4.11.table b/definitions/grib2/tables/30/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/30/4.11.table +++ b/definitions/grib2/tables/30/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/30/4.12.table b/definitions/grib2/tables/30/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/30/4.12.table +++ b/definitions/grib2/tables/30/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/4.13.table b/definitions/grib2/tables/30/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/30/4.13.table +++ b/definitions/grib2/tables/30/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/4.14.table b/definitions/grib2/tables/30/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/30/4.14.table +++ b/definitions/grib2/tables/30/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/4.15.table b/definitions/grib2/tables/30/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/30/4.15.table +++ b/definitions/grib2/tables/30/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/30/4.16.table b/definitions/grib2/tables/30/4.16.table index 5b9f6fd73..2e0c69752 100644 --- a/definitions/grib2/tables/30/4.16.table +++ b/definitions/grib2/tables/30/4.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/30/4.2.0.0.table b/definitions/grib2/tables/30/4.2.0.0.table index e4912c9d6..835789797 100644 --- a/definitions/grib2/tables/30/4.2.0.0.table +++ b/definitions/grib2/tables/30/4.2.0.0.table @@ -32,6 +32,4 @@ 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 32 Wet-bulb potential temperature (K) -# 33-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.0.1.table b/definitions/grib2/tables/30/4.2.0.1.table index 7b456353f..089941f5f 100644 --- a/definitions/grib2/tables/30/4.2.0.1.table +++ b/definitions/grib2/tables/30/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -164,6 +163,4 @@ 162 162 Column integrated divergence of cloud ice mass flux (kg m-2 s-1) 163 163 Column integrated divergence of rain mass flux (kg m-2 s-1) 164 164 Column integrated divergence of snow mass flux (kg m-2 s-1) -# 165-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.0.13.table b/definitions/grib2/tables/30/4.2.0.13.table index 4c1253b96..6e05fe29c 100644 --- a/definitions/grib2/tables/30/4.2.0.13.table +++ b/definitions/grib2/tables/30/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/30/4.2.0.14.table b/definitions/grib2/tables/30/4.2.0.14.table index df0f721ea..78b9771d9 100644 --- a/definitions/grib2/tables/30/4.2.0.14.table +++ b/definitions/grib2/tables/30/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/4.2.0.15.table b/definitions/grib2/tables/30/4.2.0.15.table index ac49ad402..047a903f7 100644 --- a/definitions/grib2/tables/30/4.2.0.15.table +++ b/definitions/grib2/tables/30/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/30/4.2.0.16.table b/definitions/grib2/tables/30/4.2.0.16.table index 111e6d986..6fa720bf9 100644 --- a/definitions/grib2/tables/30/4.2.0.16.table +++ b/definitions/grib2/tables/30/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/30/4.2.0.18.table b/definitions/grib2/tables/30/4.2.0.18.table index 9d527a828..2f70d7a39 100644 --- a/definitions/grib2/tables/30/4.2.0.18.table +++ b/definitions/grib2/tables/30/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/30/4.2.0.19.table b/definitions/grib2/tables/30/4.2.0.19.table index 44bd20957..8263d1e0e 100644 --- a/definitions/grib2/tables/30/4.2.0.19.table +++ b/definitions/grib2/tables/30/4.2.0.19.table @@ -40,6 +40,4 @@ 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/definitions/grib2/tables/30/4.2.0.190.table b/definitions/grib2/tables/30/4.2.0.190.table index dfe39840d..bd8ceca18 100644 --- a/definitions/grib2/tables/30/4.2.0.190.table +++ b/definitions/grib2/tables/30/4.2.0.190.table @@ -1,5 +1,3 @@ # Product discipline 0 - Meteorological products, parameter category 190: CCITT IA5 string 0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.0.191.table b/definitions/grib2/tables/30/4.2.0.191.table index abc386331..62cf1bb58 100644 --- a/definitions/grib2/tables/30/4.2.0.191.table +++ b/definitions/grib2/tables/30/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/30/4.2.0.2.table b/definitions/grib2/tables/30/4.2.0.2.table index 97f1b60eb..adc58a989 100644 --- a/definitions/grib2/tables/30/4.2.0.2.table +++ b/definitions/grib2/tables/30/4.2.0.2.table @@ -53,6 +53,4 @@ 51 51 Northward wind stress (N m-2) 52 52 u-component of wind stress (N m-2) 53 53 v-component of wind stress (N m-2) -# 54-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.0.20.table b/definitions/grib2/tables/30/4.2.0.20.table index 7855a8618..19a014b78 100644 --- a/definitions/grib2/tables/30/4.2.0.20.table +++ b/definitions/grib2/tables/30/4.2.0.20.table @@ -18,7 +18,6 @@ 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 18 Potential of hydrogen (pH) (pH) -# 19-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) @@ -51,7 +50,6 @@ 79 79 Column integrated northward mass flux (kg m-1 s-1) 80 80 Column integrated divergence of mass flux (kg m-2 s-1) 81 81 Column integrated net source (kg m-2 s-1) -# 82-99 Reserved 100 100 Surface area density (aerosol) (/m) 101 101 Vertical visual range (m) 102 102 Aerosol optical thickness (Numeric) @@ -64,6 +62,4 @@ 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/definitions/grib2/tables/30/4.2.0.21.table b/definitions/grib2/tables/30/4.2.0.21.table index c9d2d3496..fd81d0f89 100644 --- a/definitions/grib2/tables/30/4.2.0.21.table +++ b/definitions/grib2/tables/30/4.2.0.21.table @@ -18,6 +18,4 @@ 16 16 Divergence of column integrated kinetic energy flux (W m-2) 17 17 Divergence of column integrated total energy flux (W m-2) 18 18 Divergence of column integrated water enthalpy flux (W m-2) -# 19-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.0.3.table b/definitions/grib2/tables/30/4.2.0.3.table index aa5a1b5fb..edcf34e53 100644 --- a/definitions/grib2/tables/30/4.2.0.3.table +++ b/definitions/grib2/tables/30/4.2.0.3.table @@ -37,6 +37,4 @@ 35 35 Column integrated divergence of total mass flux (kg m-2 s-1) 36 36 Column integrated eastward total mass flux (kg m-1 s-1) 37 37 Column integrated northward total mass flux (kg m-1 s-1) -# 38-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.0.4.table b/definitions/grib2/tables/30/4.2.0.4.table index 1d7f50233..8df676ab3 100644 --- a/definitions/grib2/tables/30/4.2.0.4.table +++ b/definitions/grib2/tables/30/4.2.0.4.table @@ -15,12 +15,9 @@ 13 13 Direct short-wave radiation flux (W m-2) 14 14 Diffuse short-wave radiation flux (W m-2) 15 15 Upward UV radiation emitted/reflected from the Earth's surface (W m-2) -# 16-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/definitions/grib2/tables/30/4.2.0.5.table b/definitions/grib2/tables/30/4.2.0.5.table index 157326ba4..4a19f82ee 100644 --- a/definitions/grib2/tables/30/4.2.0.5.table +++ b/definitions/grib2/tables/30/4.2.0.5.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/30/4.2.0.6.table b/definitions/grib2/tables/30/4.2.0.6.table index ba308d07f..29744abf9 100644 --- a/definitions/grib2/tables/30/4.2.0.6.table +++ b/definitions/grib2/tables/30/4.2.0.6.table @@ -40,11 +40,8 @@ 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/definitions/grib2/tables/30/4.2.0.7.table b/definitions/grib2/tables/30/4.2.0.7.table index 15acb1857..7d60d9bf7 100644 --- a/definitions/grib2/tables/30/4.2.0.7.table +++ b/definitions/grib2/tables/30/4.2.0.7.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/30/4.2.1.0.table b/definitions/grib2/tables/30/4.2.1.0.table index 6204a22ae..6d44d3a30 100644 --- a/definitions/grib2/tables/30/4.2.1.0.table +++ b/definitions/grib2/tables/30/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/30/4.2.1.1.table b/definitions/grib2/tables/30/4.2.1.1.table index e3931d5e6..4cf7ecedd 100644 --- a/definitions/grib2/tables/30/4.2.1.1.table +++ b/definitions/grib2/tables/30/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/4.2.1.2.table b/definitions/grib2/tables/30/4.2.1.2.table index bd7276cfe..e52e2af9d 100644 --- a/definitions/grib2/tables/30/4.2.1.2.table +++ b/definitions/grib2/tables/30/4.2.1.2.table @@ -14,6 +14,4 @@ 12 12 Salinity (kg/kg) 13 13 Cross-sectional area of flow in channel (m2) 14 14 Snow temperature (K) -# 15-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.10.0.table b/definitions/grib2/tables/30/4.2.10.0.table index 8f307c0de..11cf44892 100644 --- a/definitions/grib2/tables/30/4.2.10.0.table +++ b/definitions/grib2/tables/30/4.2.10.0.table @@ -73,6 +73,4 @@ 71 71 Peak direction of wind waves (degree true) 72 72 Peak direction of total swell (degree true) 73 73 Whitecap fraction (fraction) -# 74-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.10.1.table b/definitions/grib2/tables/30/4.2.10.1.table index aeec67455..34b829e24 100644 --- a/definitions/grib2/tables/30/4.2.10.1.table +++ b/definitions/grib2/tables/30/4.2.10.1.table @@ -6,6 +6,4 @@ 4 4 Rip current occurrence probability (%) 5 5 Eastward current (m s-1) 6 6 Northward current (m s-1) -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.10.191.table b/definitions/grib2/tables/30/4.2.10.191.table index cd4d4cde7..c6aac389a 100644 --- a/definitions/grib2/tables/30/4.2.10.191.table +++ b/definitions/grib2/tables/30/4.2.10.191.table @@ -4,6 +4,4 @@ 2 2 Reserved 3 3 Days since last observation (d) 4 4 Barotropic stream function (m3 s-1) -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.10.2.table b/definitions/grib2/tables/30/4.2.10.2.table index 5612159ef..b6f2ae0ea 100644 --- a/definitions/grib2/tables/30/4.2.10.2.table +++ b/definitions/grib2/tables/30/4.2.10.2.table @@ -23,6 +23,4 @@ 21 21 Ice melt pond depth (m) 22 22 Ice melt pond volume per unit area (m3 m-2) 23 23 Sea ice fraction tendency due to parameterization (s-1) -# 24-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.10.3.table b/definitions/grib2/tables/30/4.2.10.3.table index 4fb3d4597..336411941 100644 --- a/definitions/grib2/tables/30/4.2.10.3.table +++ b/definitions/grib2/tables/30/4.2.10.3.table @@ -19,6 +19,4 @@ 17 17 y-component of surface water velocity (m s-1) 18 18 Heat flux correction (W m-2) 19 19 Sea surface height tendency due to parameterization (m s-1) -# 20-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.10.4.table b/definitions/grib2/tables/30/4.2.10.4.table index 34d578988..ec306dee7 100644 --- a/definitions/grib2/tables/30/4.2.10.4.table +++ b/definitions/grib2/tables/30/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -39,6 +38,4 @@ 39 39 Northward sea water velocity tendency due to parameterization (m-2 s-1) 40 40 Sea water temperature tendency due to direct bias correction (K s-1) 41 41 Sea water salinity tendency due to direct bias correction (g kg-1 s-1) -# 42-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.2.0.table b/definitions/grib2/tables/30/4.2.2.0.table index e8cacaf45..7c99608f2 100644 --- a/definitions/grib2/tables/30/4.2.2.0.table +++ b/definitions/grib2/tables/30/4.2.2.0.table @@ -49,6 +49,4 @@ 47 47 Irrigation cover (Proportion) 48 48 C4 crop cover (Proportion) 49 49 C4 grass cover (Proportion) -# 50-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.2.3.table b/definitions/grib2/tables/30/4.2.2.3.table index 4e2187a5b..2300f737d 100644 --- a/definitions/grib2/tables/30/4.2.2.3.table +++ b/definitions/grib2/tables/30/4.2.2.3.table @@ -29,6 +29,4 @@ 27 27 Soil depth (m) 28 28 Snow temperature (K) 29 29 Ice temperature (K) -# 30-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.2.4.table b/definitions/grib2/tables/30/4.2.2.4.table index 6083f2a98..f1a2552b2 100644 --- a/definitions/grib2/tables/30/4.2.2.4.table +++ b/definitions/grib2/tables/30/4.2.2.4.table @@ -19,6 +19,4 @@ 17 17 Burning index (as defined by the US Forest Service National Fire Danger Rating System) (Numeric) 18 18 Ignition component (as defined by the US Forest Service National Fire Danger Rating System) (%) 19 19 Energy release component (as defined by the US Forest Service National Fire Danger Rating System) (Joule/m2) -# 20-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.2.5.table b/definitions/grib2/tables/30/4.2.2.5.table index 1d08dd573..7cea1b5da 100644 --- a/definitions/grib2/tables/30/4.2.2.5.table +++ b/definitions/grib2/tables/30/4.2.2.5.table @@ -1,6 +1,4 @@ # Product discipline 2 - Land surface products, parameter category 5: glaciers and inland ice 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/definitions/grib2/tables/30/4.2.2.6.table b/definitions/grib2/tables/30/4.2.2.6.table index b0e37883a..88d98cba0 100644 --- a/definitions/grib2/tables/30/4.2.2.6.table +++ b/definitions/grib2/tables/30/4.2.2.6.table @@ -5,6 +5,4 @@ 3 3 Building height (m) 4 4 Vertical-to-horizontal area fraction (m2 m-2) 5 5 Standard deviation of building height (m) -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.20.0.table b/definitions/grib2/tables/30/4.2.20.0.table index a997371d9..23ed9f577 100644 --- a/definitions/grib2/tables/30/4.2.20.0.table +++ b/definitions/grib2/tables/30/4.2.20.0.table @@ -8,6 +8,4 @@ 6 6 Normal effective temperature (K) 7 7 Standard effective temperature (K) 8 8 Physiological equivalent temperature (K) -# 9-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.20.1.table b/definitions/grib2/tables/30/4.2.20.1.table index 0712cd8d1..e7c4388ea 100644 --- a/definitions/grib2/tables/30/4.2.20.1.table +++ b/definitions/grib2/tables/30/4.2.20.1.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/30/4.2.20.2.table b/definitions/grib2/tables/30/4.2.20.2.table index d6b9083d1..285f12a81 100644 --- a/definitions/grib2/tables/30/4.2.20.2.table +++ b/definitions/grib2/tables/30/4.2.20.2.table @@ -1,5 +1,3 @@ # Product discipline 20 - Health and socioeconomic impacts, parameter category 2: socioeconomic indicators 0 0 Population density (Person m-2) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.3.0.table b/definitions/grib2/tables/30/4.2.3.0.table index 0bec15119..49b098942 100644 --- a/definitions/grib2/tables/30/4.2.3.0.table +++ b/definitions/grib2/tables/30/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/30/4.2.3.1.table b/definitions/grib2/tables/30/4.2.3.1.table index 3211e5d1c..05d6e7e40 100644 --- a/definitions/grib2/tables/30/4.2.3.1.table +++ b/definitions/grib2/tables/30/4.2.3.1.table @@ -23,13 +23,9 @@ 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/definitions/grib2/tables/30/4.2.4.0.table b/definitions/grib2/tables/30/4.2.4.0.table index 337308305..47a9b9f78 100644 --- a/definitions/grib2/tables/30/4.2.4.0.table +++ b/definitions/grib2/tables/30/4.2.4.0.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/30/4.2.4.1.table b/definitions/grib2/tables/30/4.2.4.1.table index 9ec11160f..4ce057416 100644 --- a/definitions/grib2/tables/30/4.2.4.1.table +++ b/definitions/grib2/tables/30/4.2.4.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/30/4.2.4.10.table b/definitions/grib2/tables/30/4.2.4.10.table index 8f5b19e06..e539399da 100644 --- a/definitions/grib2/tables/30/4.2.4.10.table +++ b/definitions/grib2/tables/30/4.2.4.10.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/30/4.2.4.2.table b/definitions/grib2/tables/30/4.2.4.2.table index b479b3361..f101c726d 100644 --- a/definitions/grib2/tables/30/4.2.4.2.table +++ b/definitions/grib2/tables/30/4.2.4.2.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/30/4.2.4.3.table b/definitions/grib2/tables/30/4.2.4.3.table index 3b752bbbc..83c5c4003 100644 --- a/definitions/grib2/tables/30/4.2.4.3.table +++ b/definitions/grib2/tables/30/4.2.4.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/30/4.2.4.4.table b/definitions/grib2/tables/30/4.2.4.4.table index 694c8cacc..0dce67c17 100644 --- a/definitions/grib2/tables/30/4.2.4.4.table +++ b/definitions/grib2/tables/30/4.2.4.4.table @@ -6,6 +6,4 @@ 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-1) -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.4.5.table b/definitions/grib2/tables/30/4.2.4.5.table index 913efec6f..25c1edd37 100644 --- a/definitions/grib2/tables/30/4.2.4.5.table +++ b/definitions/grib2/tables/30/4.2.4.5.table @@ -3,6 +3,4 @@ 1 1 Phase (rad) 2 2 Frequency (Hz) 3 3 Wavelength (m) -# 4-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.4.6.table b/definitions/grib2/tables/30/4.2.4.6.table index 6d13019a6..e7da16f42 100644 --- a/definitions/grib2/tables/30/4.2.4.6.table +++ b/definitions/grib2/tables/30/4.2.4.6.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/30/4.2.4.7.table b/definitions/grib2/tables/30/4.2.4.7.table index 38c2b17a8..0433ac516 100644 --- a/definitions/grib2/tables/30/4.2.4.7.table +++ b/definitions/grib2/tables/30/4.2.4.7.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/30/4.2.4.8.table b/definitions/grib2/tables/30/4.2.4.8.table index f350f4807..f0cc8aac2 100644 --- a/definitions/grib2/tables/30/4.2.4.8.table +++ b/definitions/grib2/tables/30/4.2.4.8.table @@ -8,6 +8,4 @@ 6 6 Heliospheric radiance (W sr-1 m-2) 7 7 Thematic mask (Numeric) 8 8 Solar induced chlorophyll fluorescence (W m-2 sr-1 m-1) -# 9-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.2.4.9.table b/definitions/grib2/tables/30/4.2.4.9.table index 0e83436e2..984ea4726 100644 --- a/definitions/grib2/tables/30/4.2.4.9.table +++ b/definitions/grib2/tables/30/4.2.4.9.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/4.201.table b/definitions/grib2/tables/30/4.201.table index a725e4e65..c30b081a2 100644 --- a/definitions/grib2/tables/30/4.201.table +++ b/definitions/grib2/tables/30/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/30/4.202.table b/definitions/grib2/tables/30/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/30/4.202.table +++ b/definitions/grib2/tables/30/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.203.table b/definitions/grib2/tables/30/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/30/4.203.table +++ b/definitions/grib2/tables/30/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/30/4.204.table b/definitions/grib2/tables/30/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/30/4.204.table +++ b/definitions/grib2/tables/30/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/30/4.205.table b/definitions/grib2/tables/30/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/30/4.205.table +++ b/definitions/grib2/tables/30/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/4.206.table b/definitions/grib2/tables/30/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/30/4.206.table +++ b/definitions/grib2/tables/30/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/4.207.table b/definitions/grib2/tables/30/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/30/4.207.table +++ b/definitions/grib2/tables/30/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.208.table b/definitions/grib2/tables/30/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/30/4.208.table +++ b/definitions/grib2/tables/30/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.209.table b/definitions/grib2/tables/30/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/30/4.209.table +++ b/definitions/grib2/tables/30/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/30/4.210.table b/definitions/grib2/tables/30/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/30/4.210.table +++ b/definitions/grib2/tables/30/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/4.211.table b/definitions/grib2/tables/30/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/30/4.211.table +++ b/definitions/grib2/tables/30/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/4.212.table b/definitions/grib2/tables/30/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/30/4.212.table +++ b/definitions/grib2/tables/30/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/30/4.213.table b/definitions/grib2/tables/30/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/30/4.213.table +++ b/definitions/grib2/tables/30/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/30/4.214.table b/definitions/grib2/tables/30/4.214.table index b08860ce0..c0eaeda75 100644 --- a/definitions/grib2/tables/30/4.214.table +++ b/definitions/grib2/tables/30/4.214.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/30/4.215.table b/definitions/grib2/tables/30/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/30/4.215.table +++ b/definitions/grib2/tables/30/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/30/4.216.table b/definitions/grib2/tables/30/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/30/4.216.table +++ b/definitions/grib2/tables/30/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/30/4.217.table b/definitions/grib2/tables/30/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/30/4.217.table +++ b/definitions/grib2/tables/30/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/30/4.218.table b/definitions/grib2/tables/30/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/30/4.218.table +++ b/definitions/grib2/tables/30/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/30/4.219.table b/definitions/grib2/tables/30/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/30/4.219.table +++ b/definitions/grib2/tables/30/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/30/4.220.table b/definitions/grib2/tables/30/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/30/4.220.table +++ b/definitions/grib2/tables/30/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/4.221.table b/definitions/grib2/tables/30/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/30/4.221.table +++ b/definitions/grib2/tables/30/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/4.222.table b/definitions/grib2/tables/30/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/30/4.222.table +++ b/definitions/grib2/tables/30/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/4.224.table b/definitions/grib2/tables/30/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/30/4.224.table +++ b/definitions/grib2/tables/30/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/30/4.227.table b/definitions/grib2/tables/30/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/30/4.227.table +++ b/definitions/grib2/tables/30/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/30/4.228.table b/definitions/grib2/tables/30/4.228.table index 048a69f0b..88c3dd87c 100644 --- a/definitions/grib2/tables/30/4.228.table +++ b/definitions/grib2/tables/30/4.228.table @@ -4,5 +4,4 @@ 2 2 Light 3 3 Moderate 4 4 Severe -# 5-254 Reserved 255 255 Missing value diff --git a/definitions/grib2/tables/30/4.230.table b/definitions/grib2/tables/30/4.230.table index 705857e5c..3bb35c402 100644 --- a/definitions/grib2/tables/30/4.230.table +++ b/definitions/grib2/tables/30/4.230.table @@ -46,7 +46,6 @@ 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 CH3OOH @@ -106,10 +105,8 @@ 10057 10057 2-lambda^1-oxidanyloxy-3-methylbut-3-en-1-ol (2-hydroxy-1-isopropenylethylperoxy radical) HOCH2CH(OO*)C(CH3)CH2 10058 10058 (Z)-4-hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH3)CHO 10059 10059 (Z)-4-hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH3)CHCHO -# 10060-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, etc.) 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 @@ -132,9 +129,7 @@ 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 @@ -424,12 +419,10 @@ 30296 30296 Lead Pb 30297 30297 Tellurium 131 Te-131 30298 30298 Neodymium 137 Nd-137 -# 30299-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 @@ -465,7 +458,6 @@ 60032 60032 All hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O2 ISOPOOH 60033 60033 Anthropogenic volatile organic compounds aVOC 60034 60034 Biomass burning volatile organic compounds bbVOC -# 60035-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -485,15 +477,12 @@ 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 @@ -503,7 +492,6 @@ 62034 62034 Rain water H2Orain 62035 62035 Cloud water H2Ocloud 62036 62036 Brown carbon dry -# 62037-62099 Reserved 62100 62100 Alnus (alder) pollen 62101 62101 Betula (birch) pollen 62102 62102 Castanea (chestnut) pollen @@ -520,15 +508,12 @@ 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/definitions/grib2/tables/30/4.233.table b/definitions/grib2/tables/30/4.233.table index e4960cc1b..d9e12aec6 100644 --- a/definitions/grib2/tables/30/4.233.table +++ b/definitions/grib2/tables/30/4.233.table @@ -46,7 +46,6 @@ 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 CH3OOH @@ -106,10 +105,8 @@ 10057 10057 2-lambda^1-oxidanyloxy-3-methylbut-3-en-1-ol (2-hydroxy-1-isopropenylethylperoxy radical) HOCH2CH(OO*)C(CH3)CH2 10058 10058 (Z)-4-hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH3)CHO 10059 10059 (Z)-4-hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH3)CHCHO -# 10060-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, etc.) 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 @@ -132,9 +129,7 @@ 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 @@ -424,12 +419,10 @@ 30296 30296 Lead Pb 30297 30297 Tellurium 131 Te-131 30298 30298 Neodymium 137 Nd-137 -# 30299-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 @@ -465,7 +458,6 @@ 60032 60032 All hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O2 ISOPOOH 60033 60033 Anthropogenic volatile organic compounds aVOC 60034 60034 Biomass burning volatile organic compounds bbVOC -# 60035-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -485,15 +477,12 @@ 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 @@ -503,7 +492,6 @@ 62034 62034 Rain water H2Orain 62035 62035 Cloud water H2Ocloud 62036 62036 Brown carbon dry -# 62037-62099 Reserved 62100 62100 Alnus (alder) pollen 62101 62101 Betula (birch) pollen 62102 62102 Castanea (chestnut) pollen @@ -520,15 +508,12 @@ 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/definitions/grib2/tables/30/4.238.table b/definitions/grib2/tables/30/4.238.table index be5be3a90..abd570100 100644 --- a/definitions/grib2/tables/30/4.238.table +++ b/definitions/grib2/tables/30/4.238.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/30/4.239.table b/definitions/grib2/tables/30/4.239.table index f095b14a0..b035c9eca 100644 --- a/definitions/grib2/tables/30/4.239.table +++ b/definitions/grib2/tables/30/4.239.table @@ -12,6 +12,4 @@ 10 10 Swamp 11 11 Upland 12 12 Wet tundra -# 13-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.240.table b/definitions/grib2/tables/30/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/30/4.240.table +++ b/definitions/grib2/tables/30/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/30/4.241.table b/definitions/grib2/tables/30/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/30/4.241.table +++ b/definitions/grib2/tables/30/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/30/4.242.table b/definitions/grib2/tables/30/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/30/4.242.table +++ b/definitions/grib2/tables/30/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/4.243.table b/definitions/grib2/tables/30/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/30/4.243.table +++ b/definitions/grib2/tables/30/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/30/4.244.table b/definitions/grib2/tables/30/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/30/4.244.table +++ b/definitions/grib2/tables/30/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/4.246.table b/definitions/grib2/tables/30/4.246.table index 0ca9c0c98..74c16312c 100644 --- a/definitions/grib2/tables/30/4.246.table +++ b/definitions/grib2/tables/30/4.246.table @@ -3,5 +3,4 @@ 1 1 Weak thunderstorm 2 2 Moderate thunderstorm 3 3 Severe thunderstorm -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/30/4.247.table b/definitions/grib2/tables/30/4.247.table index 6da16e396..5a55bf127 100644 --- a/definitions/grib2/tables/30/4.247.table +++ b/definitions/grib2/tables/30/4.247.table @@ -3,5 +3,4 @@ 1 1 Light precipitation 2 2 Moderate precipitation 3 3 Heavy precipitation -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/30/4.248.table b/definitions/grib2/tables/30/4.248.table index 04e365c97..ae4965d8d 100644 --- a/definitions/grib2/tables/30/4.248.table +++ b/definitions/grib2/tables/30/4.248.table @@ -1,6 +1,4 @@ # Code table 4.248 - Method used to derive data values for a given local time 0 0 Nearest forecast or analysis time to specified local time 1 1 Interpolated to be valid at the specified local time -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.249.table b/definitions/grib2/tables/30/4.249.table index bd1c944c4..93137b15b 100644 --- a/definitions/grib2/tables/30/4.249.table +++ b/definitions/grib2/tables/30/4.249.table @@ -3,5 +3,4 @@ 1 1 Showers 2 2 Intermittent 3 3 Continuous -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/30/4.250.table b/definitions/grib2/tables/30/4.250.table index a249158ca..c918ca956 100644 --- a/definitions/grib2/tables/30/4.250.table +++ b/definitions/grib2/tables/30/4.250.table @@ -9,6 +9,4 @@ 7 7 North-west 8 8 North 9 9 North-east -# 10-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.3.table b/definitions/grib2/tables/30/4.3.table index 8ae36efc3..5d9191ff8 100644 --- a/definitions/grib2/tables/30/4.3.table +++ b/definitions/grib2/tables/30/4.3.table @@ -21,6 +21,4 @@ 19 19 First guess 20 20 Analysis increment 21 21 Initialization increment for analysis -# 22-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/30/4.4.table b/definitions/grib2/tables/30/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/30/4.4.table +++ b/definitions/grib2/tables/30/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/30/4.5.table b/definitions/grib2/tables/30/4.5.table index 98103671d..2eacb0270 100644 --- a/definitions/grib2/tables/30/4.5.table +++ b/definitions/grib2/tables/30/4.5.table @@ -18,7 +18,6 @@ 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) @@ -27,14 +26,12 @@ 25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) 26 26 Convective cloud layer base (m) 27 27 Convective cloud layer top (m) -# 28-29 Reserved 30 30 Specified radius from the centre 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) @@ -51,15 +48,12 @@ 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 sfc Lake or river bottom (-) @@ -72,18 +66,14 @@ 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 171 Ocean level defined by vertical eddy diffusivity difference from near-surface to level (m2 s-1) -# 172-173 Reserved 174 sfc 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/definitions/grib2/tables/30/4.6.table b/definitions/grib2/tables/30/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/30/4.6.table +++ b/definitions/grib2/tables/30/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/30/4.7.table b/definitions/grib2/tables/30/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/30/4.7.table +++ b/definitions/grib2/tables/30/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/30/4.8.table b/definitions/grib2/tables/30/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/30/4.8.table +++ b/definitions/grib2/tables/30/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/4.9.table b/definitions/grib2/tables/30/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/30/4.9.table +++ b/definitions/grib2/tables/30/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/30/4.91.table b/definitions/grib2/tables/30/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/30/4.91.table +++ b/definitions/grib2/tables/30/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/30/5.0.table b/definitions/grib2/tables/30/5.0.table index 5e00004b0..115b708f2 100644 --- a/definitions/grib2/tables/30/5.0.table +++ b/definitions/grib2/tables/30/5.0.table @@ -4,19 +4,12 @@ 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 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/definitions/grib2/tables/30/5.1.table b/definitions/grib2/tables/30/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/30/5.1.table +++ b/definitions/grib2/tables/30/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/5.2.table b/definitions/grib2/tables/30/5.2.table index 60d557a0d..b880c47c2 100644 --- a/definitions/grib2/tables/30/5.2.table +++ b/definitions/grib2/tables/30/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/30/5.25.table b/definitions/grib2/tables/30/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/30/5.25.table +++ b/definitions/grib2/tables/30/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/30/5.26.table b/definitions/grib2/tables/30/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/30/5.26.table +++ b/definitions/grib2/tables/30/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/30/5.3.table b/definitions/grib2/tables/30/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/30/5.3.table +++ b/definitions/grib2/tables/30/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/5.4.table b/definitions/grib2/tables/30/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/30/5.4.table +++ b/definitions/grib2/tables/30/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/30/5.40.table b/definitions/grib2/tables/30/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/30/5.40.table +++ b/definitions/grib2/tables/30/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/30/5.5.table b/definitions/grib2/tables/30/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/30/5.5.table +++ b/definitions/grib2/tables/30/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/5.6.table b/definitions/grib2/tables/30/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/30/5.6.table +++ b/definitions/grib2/tables/30/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/30/5.7.table b/definitions/grib2/tables/30/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/30/5.7.table +++ b/definitions/grib2/tables/30/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/31/0.0.table b/definitions/grib2/tables/31/0.0.table index a8542e94f..a54c35af2 100644 --- a/definitions/grib2/tables/31/0.0.table +++ b/definitions/grib2/tables/31/0.0.table @@ -4,10 +4,6 @@ 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/definitions/grib2/tables/31/1.2.table b/definitions/grib2/tables/31/1.2.table index 77f96637a..5371406eb 100644 --- a/definitions/grib2/tables/31/1.2.table +++ b/definitions/grib2/tables/31/1.2.table @@ -4,6 +4,4 @@ 2 2 Verifying time of forecast 3 3 Observation time 4 4 Local time -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/1.3.table b/definitions/grib2/tables/31/1.3.table index 5e2e59087..f82841612 100644 --- a/definitions/grib2/tables/31/1.3.table +++ b/definitions/grib2/tables/31/1.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/31/1.4.table b/definitions/grib2/tables/31/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/31/1.4.table +++ b/definitions/grib2/tables/31/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/31/1.5.table b/definitions/grib2/tables/31/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/31/1.5.table +++ b/definitions/grib2/tables/31/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/1.6.table b/definitions/grib2/tables/31/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/31/1.6.table +++ b/definitions/grib2/tables/31/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/31/3.0.table b/definitions/grib2/tables/31/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/31/3.0.table +++ b/definitions/grib2/tables/31/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/3.1.table b/definitions/grib2/tables/31/3.1.table index 7d372ddaf..2d50f176a 100644 --- a/definitions/grib2/tables/31/3.1.table +++ b/definitions/grib2/tables/31/3.1.table @@ -5,51 +5,32 @@ 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 Reserved 12 12 Transverse Mercator 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 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/definitions/grib2/tables/31/3.10.table b/definitions/grib2/tables/31/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/31/3.10.table +++ b/definitions/grib2/tables/31/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/31/3.11.table b/definitions/grib2/tables/31/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/31/3.11.table +++ b/definitions/grib2/tables/31/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/31/3.15.table b/definitions/grib2/tables/31/3.15.table index 43539dbfc..8a2e9a566 100644 --- a/definitions/grib2/tables/31/3.15.table +++ b/definitions/grib2/tables/31/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/31/3.2.table b/definitions/grib2/tables/31/3.2.table index 13b9bf469..83495adec 100644 --- a/definitions/grib2/tables/31/3.2.table +++ b/definitions/grib2/tables/31/3.2.table @@ -11,6 +11,4 @@ 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., Astrophysical Quantities, 3rd ed.; Athlone: London, 1976) 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, Astron. Astrophys. 2006, 449, 791-803) -# 12-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/3.20.table b/definitions/grib2/tables/31/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/31/3.20.table +++ b/definitions/grib2/tables/31/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/3.21.table b/definitions/grib2/tables/31/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/31/3.21.table +++ b/definitions/grib2/tables/31/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/31/3.25.table b/definitions/grib2/tables/31/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/31/3.25.table +++ b/definitions/grib2/tables/31/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/31/3.3.table b/definitions/grib2/tables/31/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/31/3.3.table +++ b/definitions/grib2/tables/31/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/31/3.7.table b/definitions/grib2/tables/31/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/31/3.7.table +++ b/definitions/grib2/tables/31/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/31/3.8.table b/definitions/grib2/tables/31/3.8.table index 578fab37f..f8f389bea 100644 --- a/definitions/grib2/tables/31/3.8.table +++ b/definitions/grib2/tables/31/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/3.9.table b/definitions/grib2/tables/31/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/31/3.9.table +++ b/definitions/grib2/tables/31/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/31/4.0.table b/definitions/grib2/tables/31/4.0.table index 1b7479edc..c0616153b 100644 --- a/definitions/grib2/tables/31/4.0.table +++ b/definitions/grib2/tables/31/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -49,15 +44,12 @@ 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 @@ -71,7 +63,6 @@ 86 86 Quantile forecasts at a horizontal level or in a horizontal layer at a point in time 87 87 Quantile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval 88 88 Analysis or forecast at a horizontal level or in a horizontal layer at a specified local time -# 89-90 Reserved 91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval 92 92 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a specified local time 93 93 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a specified local time @@ -94,15 +85,10 @@ 110 110 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 generic optical products 111 111 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for generic optical products 112 112 Anomalies, significance and other derived products as probability forecasts in relation to a reference period at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 113-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/definitions/grib2/tables/31/4.1.0.table b/definitions/grib2/tables/31/4.1.0.table index 7f390b679..48abfe2d8 100644 --- a/definitions/grib2/tables/31/4.1.0.table +++ b/definitions/grib2/tables/31/4.1.0.table @@ -21,8 +21,6 @@ 19 19 Physical atmospheric properties 20 20 Atmospheric chemical constituents 21 21 Thermodynamic properties -# 22-189 Reserved 190 190 CCITT IA5 string 191 191 Miscellaneous -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.1.1.table b/definitions/grib2/tables/31/4.1.1.table index df2c13fa8..06451e837 100644 --- a/definitions/grib2/tables/31/4.1.1.table +++ b/definitions/grib2/tables/31/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/4.1.10.table b/definitions/grib2/tables/31/4.1.10.table index 5a64f9652..d7bb7e672 100644 --- a/definitions/grib2/tables/31/4.1.10.table +++ b/definitions/grib2/tables/31/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/31/4.1.2.table b/definitions/grib2/tables/31/4.1.2.table index 9d6f690ac..8faac9a1b 100644 --- a/definitions/grib2/tables/31/4.1.2.table +++ b/definitions/grib2/tables/31/4.1.2.table @@ -6,6 +6,4 @@ 4 4 Fire weather products 5 5 Glaciers and inland ice 6 6 Urban areas -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.1.20.table b/definitions/grib2/tables/31/4.1.20.table index 1e5472a3f..5a725ceb4 100644 --- a/definitions/grib2/tables/31/4.1.20.table +++ b/definitions/grib2/tables/31/4.1.20.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/4.1.3.table b/definitions/grib2/tables/31/4.1.3.table index 35d82f440..df3cc24e1 100644 --- a/definitions/grib2/tables/31/4.1.3.table +++ b/definitions/grib2/tables/31/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/31/4.1.4.table b/definitions/grib2/tables/31/4.1.4.table index 7d1378729..acc38053c 100644 --- a/definitions/grib2/tables/31/4.1.4.table +++ b/definitions/grib2/tables/31/4.1.4.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/31/4.10.table b/definitions/grib2/tables/31/4.10.table index b66560e8d..a51b45393 100644 --- a/definitions/grib2/tables/31/4.10.table +++ b/definitions/grib2/tables/31/4.10.table @@ -12,9 +12,6 @@ 10 10 Standardized anomaly 11 11 Summation 12 12 Return period -# 13-99 Reserved 100 100 Severity 101 101 Mode -# 102-191 Reserved -# 192-254 Reserved for local use 255 missing Missing diff --git a/definitions/grib2/tables/31/4.100.table b/definitions/grib2/tables/31/4.100.table index a24770d68..24f8c3417 100644 --- a/definitions/grib2/tables/31/4.100.table +++ b/definitions/grib2/tables/31/4.100.table @@ -5,6 +5,4 @@ 3 3 Reanalysis 4 4 Climate projection 5 5 Gridded observations -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.101.table b/definitions/grib2/tables/31/4.101.table index e65f87826..35bb860dd 100644 --- a/definitions/grib2/tables/31/4.101.table +++ b/definitions/grib2/tables/31/4.101.table @@ -2,9 +2,6 @@ 0 0 Anomaly 1 1 Standardized anomaly 2 2 Significance (Wilcoxon-Mann-Whitney) -# 3-19 Reserved 20 20 Extreme Forecast Index (EFI) 21 21 Shift of Tails (SOT) -# 22-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.102.table b/definitions/grib2/tables/31/4.102.table index ec8edebf5..e16eb597d 100644 --- a/definitions/grib2/tables/31/4.102.table +++ b/definitions/grib2/tables/31/4.102.table @@ -4,8 +4,5 @@ 2 2 Maximum 3 3 Minimum 4 4 Median -# 5-19 Reserved 20 20 Model Climate -# 21-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.11.table b/definitions/grib2/tables/31/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/31/4.11.table +++ b/definitions/grib2/tables/31/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/31/4.12.table b/definitions/grib2/tables/31/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/31/4.12.table +++ b/definitions/grib2/tables/31/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/4.13.table b/definitions/grib2/tables/31/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/31/4.13.table +++ b/definitions/grib2/tables/31/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/4.14.table b/definitions/grib2/tables/31/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/31/4.14.table +++ b/definitions/grib2/tables/31/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/4.15.table b/definitions/grib2/tables/31/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/31/4.15.table +++ b/definitions/grib2/tables/31/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/31/4.16.table b/definitions/grib2/tables/31/4.16.table index 5b9f6fd73..2e0c69752 100644 --- a/definitions/grib2/tables/31/4.16.table +++ b/definitions/grib2/tables/31/4.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/31/4.2.0.0.table b/definitions/grib2/tables/31/4.2.0.0.table index e4912c9d6..835789797 100644 --- a/definitions/grib2/tables/31/4.2.0.0.table +++ b/definitions/grib2/tables/31/4.2.0.0.table @@ -32,6 +32,4 @@ 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 32 Wet-bulb potential temperature (K) -# 33-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.0.1.table b/definitions/grib2/tables/31/4.2.0.1.table index 03473003a..abd2a1cce 100644 --- a/definitions/grib2/tables/31/4.2.0.1.table +++ b/definitions/grib2/tables/31/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -167,6 +166,4 @@ 165 165 Column integrated divergence of total water mass flux (kg m-2 s-1) 166 166 Column integrated water vapour flux (kg m-2 s-1) 167 167 Total column supercooled liquid water (kg m-2) -# 168-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.0.13.table b/definitions/grib2/tables/31/4.2.0.13.table index 4c1253b96..6e05fe29c 100644 --- a/definitions/grib2/tables/31/4.2.0.13.table +++ b/definitions/grib2/tables/31/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/31/4.2.0.14.table b/definitions/grib2/tables/31/4.2.0.14.table index df0f721ea..78b9771d9 100644 --- a/definitions/grib2/tables/31/4.2.0.14.table +++ b/definitions/grib2/tables/31/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/4.2.0.15.table b/definitions/grib2/tables/31/4.2.0.15.table index ac49ad402..047a903f7 100644 --- a/definitions/grib2/tables/31/4.2.0.15.table +++ b/definitions/grib2/tables/31/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/31/4.2.0.16.table b/definitions/grib2/tables/31/4.2.0.16.table index 111e6d986..6fa720bf9 100644 --- a/definitions/grib2/tables/31/4.2.0.16.table +++ b/definitions/grib2/tables/31/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/31/4.2.0.18.table b/definitions/grib2/tables/31/4.2.0.18.table index 9d527a828..2f70d7a39 100644 --- a/definitions/grib2/tables/31/4.2.0.18.table +++ b/definitions/grib2/tables/31/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/31/4.2.0.19.table b/definitions/grib2/tables/31/4.2.0.19.table index 1289ba487..c63a0bf45 100644 --- a/definitions/grib2/tables/31/4.2.0.19.table +++ b/definitions/grib2/tables/31/4.2.0.19.table @@ -45,6 +45,4 @@ 43 43 Trapping layer top height (m) 44 44 Mean vertical gradient of refractivity inside trapping layer (m-1) 45 45 Minimum vertical gradient of refractivity inside trapping layer (m-1) -# 46-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.0.190.table b/definitions/grib2/tables/31/4.2.0.190.table index dfe39840d..bd8ceca18 100644 --- a/definitions/grib2/tables/31/4.2.0.190.table +++ b/definitions/grib2/tables/31/4.2.0.190.table @@ -1,5 +1,3 @@ # Product discipline 0 - Meteorological products, parameter category 190: CCITT IA5 string 0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.0.191.table b/definitions/grib2/tables/31/4.2.0.191.table index abc386331..62cf1bb58 100644 --- a/definitions/grib2/tables/31/4.2.0.191.table +++ b/definitions/grib2/tables/31/4.2.0.191.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/31/4.2.0.2.table b/definitions/grib2/tables/31/4.2.0.2.table index 690021d70..c82dba9b5 100644 --- a/definitions/grib2/tables/31/4.2.0.2.table +++ b/definitions/grib2/tables/31/4.2.0.2.table @@ -58,6 +58,4 @@ 56 56 u-component of neutral wind (m s-1) 57 57 v-component of neutral wind (m s-1) 58 58 Magnitude of turbulent surface stress (N m-2) -# 59-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.0.20.table b/definitions/grib2/tables/31/4.2.0.20.table index 7855a8618..19a014b78 100644 --- a/definitions/grib2/tables/31/4.2.0.20.table +++ b/definitions/grib2/tables/31/4.2.0.20.table @@ -18,7 +18,6 @@ 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 18 Potential of hydrogen (pH) (pH) -# 19-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) @@ -51,7 +50,6 @@ 79 79 Column integrated northward mass flux (kg m-1 s-1) 80 80 Column integrated divergence of mass flux (kg m-2 s-1) 81 81 Column integrated net source (kg m-2 s-1) -# 82-99 Reserved 100 100 Surface area density (aerosol) (/m) 101 101 Vertical visual range (m) 102 102 Aerosol optical thickness (Numeric) @@ -64,6 +62,4 @@ 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/definitions/grib2/tables/31/4.2.0.21.table b/definitions/grib2/tables/31/4.2.0.21.table index 50a2e3468..963914aa1 100644 --- a/definitions/grib2/tables/31/4.2.0.21.table +++ b/definitions/grib2/tables/31/4.2.0.21.table @@ -21,6 +21,4 @@ 19 19 Column integrated eastward heat flux (W m-1) 20 20 Column integrated northward heat flux (W m-1) 21 21 Column integrated potential+internal+latent energy (J m-2) -# 22-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.0.3.table b/definitions/grib2/tables/31/4.2.0.3.table index 09c5eef4f..3d159f958 100644 --- a/definitions/grib2/tables/31/4.2.0.3.table +++ b/definitions/grib2/tables/31/4.2.0.3.table @@ -45,6 +45,4 @@ 43 43 Column integrated divergence of geopotential flux (W m-2) 44 44 Height of zero-degree wet-bulb temperature (m) 45 45 Height of one-degree wet-bulb temperature (m) -# 46-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.0.4.table b/definitions/grib2/tables/31/4.2.0.4.table index 88c24ae52..94eb72373 100644 --- a/definitions/grib2/tables/31/4.2.0.4.table +++ b/definitions/grib2/tables/31/4.2.0.4.table @@ -15,7 +15,6 @@ 13 13 Direct short-wave radiation flux (W m-2) 14 14 Diffuse short-wave radiation flux (W m-2) 15 15 Upward UV radiation emitted/reflected from the Earth's surface (W m-2) -# 16-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) @@ -28,6 +27,4 @@ 59 59 UV visible albedo for direct radiation, volumetric component (%) 60 60 Photosynthetically active radiation flux, clear sky (W m-2) 61 61 Direct short-wave radiation flux, clear sky (W m-2) -# 62-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.0.5.table b/definitions/grib2/tables/31/4.2.0.5.table index 7065106a2..f32458a27 100644 --- a/definitions/grib2/tables/31/4.2.0.5.table +++ b/definitions/grib2/tables/31/4.2.0.5.table @@ -13,6 +13,4 @@ 11 11 Near IR albedo for direct radiation, geometric component (%) 12 12 Near IR albedo for direct radiation, isotropic component (%) 13 13 Near IR albedo for direct radiation, volumetric component (%) -# 14-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.0.6.table b/definitions/grib2/tables/31/4.2.0.6.table index d831f3474..6e960fb5a 100644 --- a/definitions/grib2/tables/31/4.2.0.6.table +++ b/definitions/grib2/tables/31/4.2.0.6.table @@ -40,12 +40,9 @@ 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 51 Sunshine duration fraction (Proportion) -# 52-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.0.7.table b/definitions/grib2/tables/31/4.2.0.7.table index 15acb1857..7d60d9bf7 100644 --- a/definitions/grib2/tables/31/4.2.0.7.table +++ b/definitions/grib2/tables/31/4.2.0.7.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/31/4.2.1.0.table b/definitions/grib2/tables/31/4.2.1.0.table index 6204a22ae..6d44d3a30 100644 --- a/definitions/grib2/tables/31/4.2.1.0.table +++ b/definitions/grib2/tables/31/4.2.1.0.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/31/4.2.1.1.table b/definitions/grib2/tables/31/4.2.1.1.table index e3931d5e6..4cf7ecedd 100644 --- a/definitions/grib2/tables/31/4.2.1.1.table +++ b/definitions/grib2/tables/31/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/4.2.1.2.table b/definitions/grib2/tables/31/4.2.1.2.table index bd7276cfe..e52e2af9d 100644 --- a/definitions/grib2/tables/31/4.2.1.2.table +++ b/definitions/grib2/tables/31/4.2.1.2.table @@ -14,6 +14,4 @@ 12 12 Salinity (kg/kg) 13 13 Cross-sectional area of flow in channel (m2) 14 14 Snow temperature (K) -# 15-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.10.0.table b/definitions/grib2/tables/31/4.2.10.0.table index e1db2d3f1..858e0fd99 100644 --- a/definitions/grib2/tables/31/4.2.10.0.table +++ b/definitions/grib2/tables/31/4.2.10.0.table @@ -92,6 +92,4 @@ 90 90 u-component of surface momentum flux into ocean (N m-2) 91 91 v-component of surface momentum flux into ocean (N m-2) 92 92 Wave turbulent energy flux into ocean (W m-2) -# 93-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.10.1.table b/definitions/grib2/tables/31/4.2.10.1.table index aeec67455..34b829e24 100644 --- a/definitions/grib2/tables/31/4.2.10.1.table +++ b/definitions/grib2/tables/31/4.2.10.1.table @@ -6,6 +6,4 @@ 4 4 Rip current occurrence probability (%) 5 5 Eastward current (m s-1) 6 6 Northward current (m s-1) -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.10.191.table b/definitions/grib2/tables/31/4.2.10.191.table index cd4d4cde7..c6aac389a 100644 --- a/definitions/grib2/tables/31/4.2.10.191.table +++ b/definitions/grib2/tables/31/4.2.10.191.table @@ -4,6 +4,4 @@ 2 2 Reserved 3 3 Days since last observation (d) 4 4 Barotropic stream function (m3 s-1) -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.10.2.table b/definitions/grib2/tables/31/4.2.10.2.table index 5612159ef..b6f2ae0ea 100644 --- a/definitions/grib2/tables/31/4.2.10.2.table +++ b/definitions/grib2/tables/31/4.2.10.2.table @@ -23,6 +23,4 @@ 21 21 Ice melt pond depth (m) 22 22 Ice melt pond volume per unit area (m3 m-2) 23 23 Sea ice fraction tendency due to parameterization (s-1) -# 24-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.10.3.table b/definitions/grib2/tables/31/4.2.10.3.table index eb699c929..d790246a1 100644 --- a/definitions/grib2/tables/31/4.2.10.3.table +++ b/definitions/grib2/tables/31/4.2.10.3.table @@ -20,6 +20,4 @@ 18 18 Heat flux correction (W m-2) 19 19 Sea surface height tendency due to parameterization (m s-1) 20 20 Deviation of sea level from mean with inverse barometer correction (m) -# 21-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.10.4.table b/definitions/grib2/tables/31/4.2.10.4.table index 34d578988..ec306dee7 100644 --- a/definitions/grib2/tables/31/4.2.10.4.table +++ b/definitions/grib2/tables/31/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -39,6 +38,4 @@ 39 39 Northward sea water velocity tendency due to parameterization (m-2 s-1) 40 40 Sea water temperature tendency due to direct bias correction (K s-1) 41 41 Sea water salinity tendency due to direct bias correction (g kg-1 s-1) -# 42-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.2.0.table b/definitions/grib2/tables/31/4.2.2.0.table index cfad864d0..d89862afb 100644 --- a/definitions/grib2/tables/31/4.2.2.0.table +++ b/definitions/grib2/tables/31/4.2.2.0.table @@ -61,6 +61,4 @@ 59 59 Net ecosystem exchange flux (kg m-2 s-1) 60 60 Gross primary production flux (kg m-2 s-1) 61 61 Ecosystem respiration flux (kg m-2 s-1) -# 62-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.2.3.table b/definitions/grib2/tables/31/4.2.2.3.table index 4e2187a5b..2300f737d 100644 --- a/definitions/grib2/tables/31/4.2.2.3.table +++ b/definitions/grib2/tables/31/4.2.2.3.table @@ -29,6 +29,4 @@ 27 27 Soil depth (m) 28 28 Snow temperature (K) 29 29 Ice temperature (K) -# 30-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.2.4.table b/definitions/grib2/tables/31/4.2.2.4.table index 98aa7b6d5..9c90cd918 100644 --- a/definitions/grib2/tables/31/4.2.2.4.table +++ b/definitions/grib2/tables/31/4.2.2.4.table @@ -26,6 +26,4 @@ 24 24 Combustion completeness (%) 25 25 Fuel moisture content (kg kg-1) 26 26 Wildfire potential (as defined by the US NOAA Global Systems Laboratory) (Numeric) -# 27-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.2.5.table b/definitions/grib2/tables/31/4.2.2.5.table index 1d08dd573..7cea1b5da 100644 --- a/definitions/grib2/tables/31/4.2.2.5.table +++ b/definitions/grib2/tables/31/4.2.2.5.table @@ -1,6 +1,4 @@ # Product discipline 2 - Land surface products, parameter category 5: glaciers and inland ice 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/definitions/grib2/tables/31/4.2.2.6.table b/definitions/grib2/tables/31/4.2.2.6.table index b0e37883a..88d98cba0 100644 --- a/definitions/grib2/tables/31/4.2.2.6.table +++ b/definitions/grib2/tables/31/4.2.2.6.table @@ -5,6 +5,4 @@ 3 3 Building height (m) 4 4 Vertical-to-horizontal area fraction (m2 m-2) 5 5 Standard deviation of building height (m) -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.20.0.table b/definitions/grib2/tables/31/4.2.20.0.table index a997371d9..23ed9f577 100644 --- a/definitions/grib2/tables/31/4.2.20.0.table +++ b/definitions/grib2/tables/31/4.2.20.0.table @@ -8,6 +8,4 @@ 6 6 Normal effective temperature (K) 7 7 Standard effective temperature (K) 8 8 Physiological equivalent temperature (K) -# 9-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.20.1.table b/definitions/grib2/tables/31/4.2.20.1.table index 0712cd8d1..e7c4388ea 100644 --- a/definitions/grib2/tables/31/4.2.20.1.table +++ b/definitions/grib2/tables/31/4.2.20.1.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/31/4.2.20.2.table b/definitions/grib2/tables/31/4.2.20.2.table index d6b9083d1..285f12a81 100644 --- a/definitions/grib2/tables/31/4.2.20.2.table +++ b/definitions/grib2/tables/31/4.2.20.2.table @@ -1,5 +1,3 @@ # Product discipline 20 - Health and socioeconomic impacts, parameter category 2: socioeconomic indicators 0 0 Population density (Person m-2) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.3.0.table b/definitions/grib2/tables/31/4.2.3.0.table index 0bec15119..49b098942 100644 --- a/definitions/grib2/tables/31/4.2.3.0.table +++ b/definitions/grib2/tables/31/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/31/4.2.3.1.table b/definitions/grib2/tables/31/4.2.3.1.table index df3ea372d..b300d57f0 100644 --- a/definitions/grib2/tables/31/4.2.3.1.table +++ b/definitions/grib2/tables/31/4.2.3.1.table @@ -23,14 +23,10 @@ 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 30 Reflectance in 0.4 micron channel (%) -# 31-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/definitions/grib2/tables/31/4.2.4.0.table b/definitions/grib2/tables/31/4.2.4.0.table index 337308305..47a9b9f78 100644 --- a/definitions/grib2/tables/31/4.2.4.0.table +++ b/definitions/grib2/tables/31/4.2.4.0.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/31/4.2.4.1.table b/definitions/grib2/tables/31/4.2.4.1.table index 9ec11160f..4ce057416 100644 --- a/definitions/grib2/tables/31/4.2.4.1.table +++ b/definitions/grib2/tables/31/4.2.4.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/31/4.2.4.10.table b/definitions/grib2/tables/31/4.2.4.10.table index 8f5b19e06..e539399da 100644 --- a/definitions/grib2/tables/31/4.2.4.10.table +++ b/definitions/grib2/tables/31/4.2.4.10.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/31/4.2.4.2.table b/definitions/grib2/tables/31/4.2.4.2.table index b479b3361..f101c726d 100644 --- a/definitions/grib2/tables/31/4.2.4.2.table +++ b/definitions/grib2/tables/31/4.2.4.2.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/31/4.2.4.3.table b/definitions/grib2/tables/31/4.2.4.3.table index 3b752bbbc..83c5c4003 100644 --- a/definitions/grib2/tables/31/4.2.4.3.table +++ b/definitions/grib2/tables/31/4.2.4.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/31/4.2.4.4.table b/definitions/grib2/tables/31/4.2.4.4.table index 694c8cacc..0dce67c17 100644 --- a/definitions/grib2/tables/31/4.2.4.4.table +++ b/definitions/grib2/tables/31/4.2.4.4.table @@ -6,6 +6,4 @@ 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-1) -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.4.5.table b/definitions/grib2/tables/31/4.2.4.5.table index 913efec6f..25c1edd37 100644 --- a/definitions/grib2/tables/31/4.2.4.5.table +++ b/definitions/grib2/tables/31/4.2.4.5.table @@ -3,6 +3,4 @@ 1 1 Phase (rad) 2 2 Frequency (Hz) 3 3 Wavelength (m) -# 4-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.4.6.table b/definitions/grib2/tables/31/4.2.4.6.table index 6d13019a6..e7da16f42 100644 --- a/definitions/grib2/tables/31/4.2.4.6.table +++ b/definitions/grib2/tables/31/4.2.4.6.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/31/4.2.4.7.table b/definitions/grib2/tables/31/4.2.4.7.table index 38c2b17a8..0433ac516 100644 --- a/definitions/grib2/tables/31/4.2.4.7.table +++ b/definitions/grib2/tables/31/4.2.4.7.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/31/4.2.4.8.table b/definitions/grib2/tables/31/4.2.4.8.table index f350f4807..f0cc8aac2 100644 --- a/definitions/grib2/tables/31/4.2.4.8.table +++ b/definitions/grib2/tables/31/4.2.4.8.table @@ -8,6 +8,4 @@ 6 6 Heliospheric radiance (W sr-1 m-2) 7 7 Thematic mask (Numeric) 8 8 Solar induced chlorophyll fluorescence (W m-2 sr-1 m-1) -# 9-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.2.4.9.table b/definitions/grib2/tables/31/4.2.4.9.table index 0e83436e2..984ea4726 100644 --- a/definitions/grib2/tables/31/4.2.4.9.table +++ b/definitions/grib2/tables/31/4.2.4.9.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/4.201.table b/definitions/grib2/tables/31/4.201.table index a725e4e65..c30b081a2 100644 --- a/definitions/grib2/tables/31/4.201.table +++ b/definitions/grib2/tables/31/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/31/4.202.table b/definitions/grib2/tables/31/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/31/4.202.table +++ b/definitions/grib2/tables/31/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.203.table b/definitions/grib2/tables/31/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/31/4.203.table +++ b/definitions/grib2/tables/31/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/31/4.204.table b/definitions/grib2/tables/31/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/31/4.204.table +++ b/definitions/grib2/tables/31/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/31/4.205.table b/definitions/grib2/tables/31/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/31/4.205.table +++ b/definitions/grib2/tables/31/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/4.206.table b/definitions/grib2/tables/31/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/31/4.206.table +++ b/definitions/grib2/tables/31/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/4.207.table b/definitions/grib2/tables/31/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/31/4.207.table +++ b/definitions/grib2/tables/31/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.208.table b/definitions/grib2/tables/31/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/31/4.208.table +++ b/definitions/grib2/tables/31/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.209.table b/definitions/grib2/tables/31/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/31/4.209.table +++ b/definitions/grib2/tables/31/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/31/4.210.table b/definitions/grib2/tables/31/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/31/4.210.table +++ b/definitions/grib2/tables/31/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/4.211.table b/definitions/grib2/tables/31/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/31/4.211.table +++ b/definitions/grib2/tables/31/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/4.212.table b/definitions/grib2/tables/31/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/31/4.212.table +++ b/definitions/grib2/tables/31/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/31/4.213.table b/definitions/grib2/tables/31/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/31/4.213.table +++ b/definitions/grib2/tables/31/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/31/4.214.table b/definitions/grib2/tables/31/4.214.table index b08860ce0..c0eaeda75 100644 --- a/definitions/grib2/tables/31/4.214.table +++ b/definitions/grib2/tables/31/4.214.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/31/4.215.table b/definitions/grib2/tables/31/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/31/4.215.table +++ b/definitions/grib2/tables/31/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/31/4.216.table b/definitions/grib2/tables/31/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/31/4.216.table +++ b/definitions/grib2/tables/31/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/31/4.217.table b/definitions/grib2/tables/31/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/31/4.217.table +++ b/definitions/grib2/tables/31/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/31/4.218.table b/definitions/grib2/tables/31/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/31/4.218.table +++ b/definitions/grib2/tables/31/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/31/4.219.table b/definitions/grib2/tables/31/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/31/4.219.table +++ b/definitions/grib2/tables/31/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/31/4.220.table b/definitions/grib2/tables/31/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/31/4.220.table +++ b/definitions/grib2/tables/31/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/4.221.table b/definitions/grib2/tables/31/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/31/4.221.table +++ b/definitions/grib2/tables/31/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/4.222.table b/definitions/grib2/tables/31/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/31/4.222.table +++ b/definitions/grib2/tables/31/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/4.224.table b/definitions/grib2/tables/31/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/31/4.224.table +++ b/definitions/grib2/tables/31/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/31/4.227.table b/definitions/grib2/tables/31/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/31/4.227.table +++ b/definitions/grib2/tables/31/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/31/4.228.table b/definitions/grib2/tables/31/4.228.table index 048a69f0b..88c3dd87c 100644 --- a/definitions/grib2/tables/31/4.228.table +++ b/definitions/grib2/tables/31/4.228.table @@ -4,5 +4,4 @@ 2 2 Light 3 3 Moderate 4 4 Severe -# 5-254 Reserved 255 255 Missing value diff --git a/definitions/grib2/tables/31/4.230.table b/definitions/grib2/tables/31/4.230.table index 705857e5c..3bb35c402 100644 --- a/definitions/grib2/tables/31/4.230.table +++ b/definitions/grib2/tables/31/4.230.table @@ -46,7 +46,6 @@ 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 CH3OOH @@ -106,10 +105,8 @@ 10057 10057 2-lambda^1-oxidanyloxy-3-methylbut-3-en-1-ol (2-hydroxy-1-isopropenylethylperoxy radical) HOCH2CH(OO*)C(CH3)CH2 10058 10058 (Z)-4-hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH3)CHO 10059 10059 (Z)-4-hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH3)CHCHO -# 10060-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, etc.) 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 @@ -132,9 +129,7 @@ 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 @@ -424,12 +419,10 @@ 30296 30296 Lead Pb 30297 30297 Tellurium 131 Te-131 30298 30298 Neodymium 137 Nd-137 -# 30299-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 @@ -465,7 +458,6 @@ 60032 60032 All hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O2 ISOPOOH 60033 60033 Anthropogenic volatile organic compounds aVOC 60034 60034 Biomass burning volatile organic compounds bbVOC -# 60035-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -485,15 +477,12 @@ 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 @@ -503,7 +492,6 @@ 62034 62034 Rain water H2Orain 62035 62035 Cloud water H2Ocloud 62036 62036 Brown carbon dry -# 62037-62099 Reserved 62100 62100 Alnus (alder) pollen 62101 62101 Betula (birch) pollen 62102 62102 Castanea (chestnut) pollen @@ -520,15 +508,12 @@ 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/definitions/grib2/tables/31/4.233.table b/definitions/grib2/tables/31/4.233.table index e4960cc1b..d9e12aec6 100644 --- a/definitions/grib2/tables/31/4.233.table +++ b/definitions/grib2/tables/31/4.233.table @@ -46,7 +46,6 @@ 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 CH3OOH @@ -106,10 +105,8 @@ 10057 10057 2-lambda^1-oxidanyloxy-3-methylbut-3-en-1-ol (2-hydroxy-1-isopropenylethylperoxy radical) HOCH2CH(OO*)C(CH3)CH2 10058 10058 (Z)-4-hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH3)CHO 10059 10059 (Z)-4-hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH3)CHCHO -# 10060-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, etc.) 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 @@ -132,9 +129,7 @@ 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 @@ -424,12 +419,10 @@ 30296 30296 Lead Pb 30297 30297 Tellurium 131 Te-131 30298 30298 Neodymium 137 Nd-137 -# 30299-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 @@ -465,7 +458,6 @@ 60032 60032 All hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O2 ISOPOOH 60033 60033 Anthropogenic volatile organic compounds aVOC 60034 60034 Biomass burning volatile organic compounds bbVOC -# 60035-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -485,15 +477,12 @@ 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 @@ -503,7 +492,6 @@ 62034 62034 Rain water H2Orain 62035 62035 Cloud water H2Ocloud 62036 62036 Brown carbon dry -# 62037-62099 Reserved 62100 62100 Alnus (alder) pollen 62101 62101 Betula (birch) pollen 62102 62102 Castanea (chestnut) pollen @@ -520,15 +508,12 @@ 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/definitions/grib2/tables/31/4.238.table b/definitions/grib2/tables/31/4.238.table index be5be3a90..abd570100 100644 --- a/definitions/grib2/tables/31/4.238.table +++ b/definitions/grib2/tables/31/4.238.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/31/4.239.table b/definitions/grib2/tables/31/4.239.table index f095b14a0..b035c9eca 100644 --- a/definitions/grib2/tables/31/4.239.table +++ b/definitions/grib2/tables/31/4.239.table @@ -12,6 +12,4 @@ 10 10 Swamp 11 11 Upland 12 12 Wet tundra -# 13-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.240.table b/definitions/grib2/tables/31/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/31/4.240.table +++ b/definitions/grib2/tables/31/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/31/4.241.table b/definitions/grib2/tables/31/4.241.table index 5ea7f775a..4d069608c 100644 --- a/definitions/grib2/tables/31/4.241.table +++ b/definitions/grib2/tables/31/4.241.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/31/4.242.table b/definitions/grib2/tables/31/4.242.table index f6865957c..8c0a8fcfb 100644 --- a/definitions/grib2/tables/31/4.242.table +++ b/definitions/grib2/tables/31/4.242.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/4.243.table b/definitions/grib2/tables/31/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/31/4.243.table +++ b/definitions/grib2/tables/31/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/31/4.244.table b/definitions/grib2/tables/31/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/31/4.244.table +++ b/definitions/grib2/tables/31/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/4.246.table b/definitions/grib2/tables/31/4.246.table index 0ca9c0c98..74c16312c 100644 --- a/definitions/grib2/tables/31/4.246.table +++ b/definitions/grib2/tables/31/4.246.table @@ -3,5 +3,4 @@ 1 1 Weak thunderstorm 2 2 Moderate thunderstorm 3 3 Severe thunderstorm -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/31/4.247.table b/definitions/grib2/tables/31/4.247.table index 6da16e396..5a55bf127 100644 --- a/definitions/grib2/tables/31/4.247.table +++ b/definitions/grib2/tables/31/4.247.table @@ -3,5 +3,4 @@ 1 1 Light precipitation 2 2 Moderate precipitation 3 3 Heavy precipitation -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/31/4.248.table b/definitions/grib2/tables/31/4.248.table index 04e365c97..ae4965d8d 100644 --- a/definitions/grib2/tables/31/4.248.table +++ b/definitions/grib2/tables/31/4.248.table @@ -1,6 +1,4 @@ # Code table 4.248 - Method used to derive data values for a given local time 0 0 Nearest forecast or analysis time to specified local time 1 1 Interpolated to be valid at the specified local time -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.249.table b/definitions/grib2/tables/31/4.249.table index bd1c944c4..93137b15b 100644 --- a/definitions/grib2/tables/31/4.249.table +++ b/definitions/grib2/tables/31/4.249.table @@ -3,5 +3,4 @@ 1 1 Showers 2 2 Intermittent 3 3 Continuous -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/31/4.250.table b/definitions/grib2/tables/31/4.250.table index a249158ca..c918ca956 100644 --- a/definitions/grib2/tables/31/4.250.table +++ b/definitions/grib2/tables/31/4.250.table @@ -9,6 +9,4 @@ 7 7 North-west 8 8 North 9 9 North-east -# 10-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.251.table b/definitions/grib2/tables/31/4.251.table index 3a78e713e..c56dc3415 100644 --- a/definitions/grib2/tables/31/4.251.table +++ b/definitions/grib2/tables/31/4.251.table @@ -2,6 +2,4 @@ 0 0 Undefined sequence 1 1 Geometric sequence 2 2 Arithmetic sequence -# 3-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.3.table b/definitions/grib2/tables/31/4.3.table index 8ae36efc3..5d9191ff8 100644 --- a/definitions/grib2/tables/31/4.3.table +++ b/definitions/grib2/tables/31/4.3.table @@ -21,6 +21,4 @@ 19 19 First guess 20 20 Analysis increment 21 21 Initialization increment for analysis -# 22-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/31/4.4.table b/definitions/grib2/tables/31/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/31/4.4.table +++ b/definitions/grib2/tables/31/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/31/4.5.table b/definitions/grib2/tables/31/4.5.table index 98103671d..2eacb0270 100644 --- a/definitions/grib2/tables/31/4.5.table +++ b/definitions/grib2/tables/31/4.5.table @@ -18,7 +18,6 @@ 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) @@ -27,14 +26,12 @@ 25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) 26 26 Convective cloud layer base (m) 27 27 Convective cloud layer top (m) -# 28-29 Reserved 30 30 Specified radius from the centre 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) @@ -51,15 +48,12 @@ 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 sfc Lake or river bottom (-) @@ -72,18 +66,14 @@ 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 171 Ocean level defined by vertical eddy diffusivity difference from near-surface to level (m2 s-1) -# 172-173 Reserved 174 sfc 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/definitions/grib2/tables/31/4.6.table b/definitions/grib2/tables/31/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/31/4.6.table +++ b/definitions/grib2/tables/31/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/31/4.7.table b/definitions/grib2/tables/31/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/31/4.7.table +++ b/definitions/grib2/tables/31/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/31/4.8.table b/definitions/grib2/tables/31/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/31/4.8.table +++ b/definitions/grib2/tables/31/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/4.9.table b/definitions/grib2/tables/31/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/31/4.9.table +++ b/definitions/grib2/tables/31/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/31/4.91.table b/definitions/grib2/tables/31/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/31/4.91.table +++ b/definitions/grib2/tables/31/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/31/5.0.table b/definitions/grib2/tables/31/5.0.table index 5e00004b0..115b708f2 100644 --- a/definitions/grib2/tables/31/5.0.table +++ b/definitions/grib2/tables/31/5.0.table @@ -4,19 +4,12 @@ 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 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/definitions/grib2/tables/31/5.1.table b/definitions/grib2/tables/31/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/31/5.1.table +++ b/definitions/grib2/tables/31/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/5.2.table b/definitions/grib2/tables/31/5.2.table index 60d557a0d..b880c47c2 100644 --- a/definitions/grib2/tables/31/5.2.table +++ b/definitions/grib2/tables/31/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/31/5.25.table b/definitions/grib2/tables/31/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/31/5.25.table +++ b/definitions/grib2/tables/31/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/31/5.26.table b/definitions/grib2/tables/31/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/31/5.26.table +++ b/definitions/grib2/tables/31/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/31/5.3.table b/definitions/grib2/tables/31/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/31/5.3.table +++ b/definitions/grib2/tables/31/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/5.4.table b/definitions/grib2/tables/31/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/31/5.4.table +++ b/definitions/grib2/tables/31/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/31/5.40.table b/definitions/grib2/tables/31/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/31/5.40.table +++ b/definitions/grib2/tables/31/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/31/5.5.table b/definitions/grib2/tables/31/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/31/5.5.table +++ b/definitions/grib2/tables/31/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/5.6.table b/definitions/grib2/tables/31/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/31/5.6.table +++ b/definitions/grib2/tables/31/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/31/5.7.table b/definitions/grib2/tables/31/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/31/5.7.table +++ b/definitions/grib2/tables/31/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/32/0.0.table b/definitions/grib2/tables/32/0.0.table index a8542e94f..a54c35af2 100644 --- a/definitions/grib2/tables/32/0.0.table +++ b/definitions/grib2/tables/32/0.0.table @@ -4,10 +4,6 @@ 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/definitions/grib2/tables/32/1.2.table b/definitions/grib2/tables/32/1.2.table index 77f96637a..5371406eb 100644 --- a/definitions/grib2/tables/32/1.2.table +++ b/definitions/grib2/tables/32/1.2.table @@ -4,6 +4,4 @@ 2 2 Verifying time of forecast 3 3 Observation time 4 4 Local time -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/1.3.table b/definitions/grib2/tables/32/1.3.table index 88c033e42..11ca16592 100644 --- a/definitions/grib2/tables/32/1.3.table +++ b/definitions/grib2/tables/32/1.3.table @@ -13,6 +13,4 @@ 11 11 Copernicus regional reanalysis test (CARRA/CERRA) 12 12 Destination Earth 13 13 Destination Earth test -# 14-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/1.4.table b/definitions/grib2/tables/32/1.4.table index 877288c0e..f52654436 100644 --- a/definitions/grib2/tables/32/1.4.table +++ b/definitions/grib2/tables/32/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/32/1.5.table b/definitions/grib2/tables/32/1.5.table index 533111959..b47b63893 100644 --- a/definitions/grib2/tables/32/1.5.table +++ b/definitions/grib2/tables/32/1.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/1.6.table b/definitions/grib2/tables/32/1.6.table index bd46899a7..c60051881 100644 --- a/definitions/grib2/tables/32/1.6.table +++ b/definitions/grib2/tables/32/1.6.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/32/3.0.table b/definitions/grib2/tables/32/3.0.table index a442a06a0..e98ff778a 100644 --- a/definitions/grib2/tables/32/3.0.table +++ b/definitions/grib2/tables/32/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/3.1.table b/definitions/grib2/tables/32/3.1.table index 26dc8da3f..1b155b080 100644 --- a/definitions/grib2/tables/32/3.1.table +++ b/definitions/grib2/tables/32/3.1.table @@ -5,53 +5,33 @@ 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 Reserved 12 12 Transverse Mercator 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 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-149 Reserved 150 150 Hierarchical Equal Area isoLatitude Pixelization grid (HEALPix) -# 151-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/definitions/grib2/tables/32/3.10.table b/definitions/grib2/tables/32/3.10.table index 1612d05e3..6e428b39f 100644 --- a/definitions/grib2/tables/32/3.10.table +++ b/definitions/grib2/tables/32/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/32/3.11.table b/definitions/grib2/tables/32/3.11.table index 06ae10810..d06b0d752 100644 --- a/definitions/grib2/tables/32/3.11.table +++ b/definitions/grib2/tables/32/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/32/3.12.table b/definitions/grib2/tables/32/3.12.table index 7d4757100..f189d367f 100644 --- a/definitions/grib2/tables/32/3.12.table +++ b/definitions/grib2/tables/32/3.12.table @@ -1,6 +1,4 @@ # Code table 3.12 - HEALPix rhomboids or points ordering 0 0 Ring ordering 1 1 Nested ordering -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/3.13.table b/definitions/grib2/tables/32/3.13.table index aabe4fc03..a750e9b5e 100644 --- a/definitions/grib2/tables/32/3.13.table +++ b/definitions/grib2/tables/32/3.13.table @@ -5,4 +5,3 @@ 2 1 Points scan in +j (+y) direction 3 0 Adjacent points in i (x) direction are consecutive 3 1 Adjacent points in j (y) direction are consecutive -# 4-8 Reserved diff --git a/definitions/grib2/tables/32/3.15.table b/definitions/grib2/tables/32/3.15.table index 43539dbfc..8a2e9a566 100644 --- a/definitions/grib2/tables/32/3.15.table +++ b/definitions/grib2/tables/32/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/32/3.2.table b/definitions/grib2/tables/32/3.2.table index 13b9bf469..83495adec 100644 --- a/definitions/grib2/tables/32/3.2.table +++ b/definitions/grib2/tables/32/3.2.table @@ -11,6 +11,4 @@ 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., Astrophysical Quantities, 3rd ed.; Athlone: London, 1976) 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, Astron. Astrophys. 2006, 449, 791-803) -# 12-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/3.20.table b/definitions/grib2/tables/32/3.20.table index e2bb156ee..09a250257 100644 --- a/definitions/grib2/tables/32/3.20.table +++ b/definitions/grib2/tables/32/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/3.21.table b/definitions/grib2/tables/32/3.21.table index e001e1c8f..2bcc76806 100644 --- a/definitions/grib2/tables/32/3.21.table +++ b/definitions/grib2/tables/32/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/32/3.25.table b/definitions/grib2/tables/32/3.25.table index e5a754994..5b07d1893 100644 --- a/definitions/grib2/tables/32/3.25.table +++ b/definitions/grib2/tables/32/3.25.table @@ -1,10 +1,5 @@ # 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/definitions/grib2/tables/32/3.3.table b/definitions/grib2/tables/32/3.3.table index 25cb46a1d..28eed2eed 100644 --- a/definitions/grib2/tables/32/3.3.table +++ b/definitions/grib2/tables/32/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/32/3.7.table b/definitions/grib2/tables/32/3.7.table index 34c0de085..be544e738 100644 --- a/definitions/grib2/tables/32/3.7.table +++ b/definitions/grib2/tables/32/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/32/3.8.table b/definitions/grib2/tables/32/3.8.table index fcd17dca8..a00556732 100644 --- a/definitions/grib2/tables/32/3.8.table +++ b/definitions/grib2/tables/32/3.8.table @@ -5,6 +5,4 @@ 3 3 Grid points at shape vertices 4 4 Grid points at centre of shapes 5 5 Grid points at midpoints of shape sides -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/3.9.table b/definitions/grib2/tables/32/3.9.table index ecd65514a..6b448a884 100644 --- a/definitions/grib2/tables/32/3.9.table +++ b/definitions/grib2/tables/32/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/32/4.0.table b/definitions/grib2/tables/32/4.0.table index be04d32bf..336071683 100644 --- a/definitions/grib2/tables/32/4.0.table +++ b/definitions/grib2/tables/32/4.0.table @@ -15,16 +15,13 @@ 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 @@ -35,9 +32,7 @@ 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 @@ -49,15 +44,12 @@ 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 @@ -101,15 +93,10 @@ 116 116 Individual ensemble forecast, control and perturbed on generalised tiles at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval 117 117 Individual large ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time 118 118 Individual large ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -# 119-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/definitions/grib2/tables/32/4.1.0.table b/definitions/grib2/tables/32/4.1.0.table index 7f390b679..48abfe2d8 100644 --- a/definitions/grib2/tables/32/4.1.0.table +++ b/definitions/grib2/tables/32/4.1.0.table @@ -21,8 +21,6 @@ 19 19 Physical atmospheric properties 20 20 Atmospheric chemical constituents 21 21 Thermodynamic properties -# 22-189 Reserved 190 190 CCITT IA5 string 191 191 Miscellaneous -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.1.1.table b/definitions/grib2/tables/32/4.1.1.table index df2c13fa8..06451e837 100644 --- a/definitions/grib2/tables/32/4.1.1.table +++ b/definitions/grib2/tables/32/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/4.1.10.table b/definitions/grib2/tables/32/4.1.10.table index 5a64f9652..d7bb7e672 100644 --- a/definitions/grib2/tables/32/4.1.10.table +++ b/definitions/grib2/tables/32/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/32/4.1.2.table b/definitions/grib2/tables/32/4.1.2.table index 9d6f690ac..8faac9a1b 100644 --- a/definitions/grib2/tables/32/4.1.2.table +++ b/definitions/grib2/tables/32/4.1.2.table @@ -6,6 +6,4 @@ 4 4 Fire weather products 5 5 Glaciers and inland ice 6 6 Urban areas -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.1.20.table b/definitions/grib2/tables/32/4.1.20.table index e651e326f..cf0f43bcb 100644 --- a/definitions/grib2/tables/32/4.1.20.table +++ b/definitions/grib2/tables/32/4.1.20.table @@ -3,6 +3,4 @@ 1 1 Epidemiology 2 2 Socioeconomic indicators 3 3 Renewable energy sector -# 4-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.1.3.table b/definitions/grib2/tables/32/4.1.3.table index 35d82f440..df3cc24e1 100644 --- a/definitions/grib2/tables/32/4.1.3.table +++ b/definitions/grib2/tables/32/4.1.3.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/32/4.1.4.table b/definitions/grib2/tables/32/4.1.4.table index 7d1378729..acc38053c 100644 --- a/definitions/grib2/tables/32/4.1.4.table +++ b/definitions/grib2/tables/32/4.1.4.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/32/4.10.table b/definitions/grib2/tables/32/4.10.table index b66560e8d..a51b45393 100644 --- a/definitions/grib2/tables/32/4.10.table +++ b/definitions/grib2/tables/32/4.10.table @@ -12,9 +12,6 @@ 10 10 Standardized anomaly 11 11 Summation 12 12 Return period -# 13-99 Reserved 100 100 Severity 101 101 Mode -# 102-191 Reserved -# 192-254 Reserved for local use 255 missing Missing diff --git a/definitions/grib2/tables/32/4.100.table b/definitions/grib2/tables/32/4.100.table index a24770d68..24f8c3417 100644 --- a/definitions/grib2/tables/32/4.100.table +++ b/definitions/grib2/tables/32/4.100.table @@ -5,6 +5,4 @@ 3 3 Reanalysis 4 4 Climate projection 5 5 Gridded observations -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.101.table b/definitions/grib2/tables/32/4.101.table index e65f87826..35bb860dd 100644 --- a/definitions/grib2/tables/32/4.101.table +++ b/definitions/grib2/tables/32/4.101.table @@ -2,9 +2,6 @@ 0 0 Anomaly 1 1 Standardized anomaly 2 2 Significance (Wilcoxon-Mann-Whitney) -# 3-19 Reserved 20 20 Extreme Forecast Index (EFI) 21 21 Shift of Tails (SOT) -# 22-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.102.table b/definitions/grib2/tables/32/4.102.table index ec8edebf5..e16eb597d 100644 --- a/definitions/grib2/tables/32/4.102.table +++ b/definitions/grib2/tables/32/4.102.table @@ -4,8 +4,5 @@ 2 2 Maximum 3 3 Minimum 4 4 Median -# 5-19 Reserved 20 20 Model Climate -# 21-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.11.table b/definitions/grib2/tables/32/4.11.table index 01cc81303..75f7eae8c 100644 --- a/definitions/grib2/tables/32/4.11.table +++ b/definitions/grib2/tables/32/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/32/4.12.table b/definitions/grib2/tables/32/4.12.table index d42b47e96..00f5d4a8a 100644 --- a/definitions/grib2/tables/32/4.12.table +++ b/definitions/grib2/tables/32/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/4.13.table b/definitions/grib2/tables/32/4.13.table index a0e28eac8..d5e2b2e3f 100644 --- a/definitions/grib2/tables/32/4.13.table +++ b/definitions/grib2/tables/32/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/4.14.table b/definitions/grib2/tables/32/4.14.table index d525b23b3..f2d86d25c 100644 --- a/definitions/grib2/tables/32/4.14.table +++ b/definitions/grib2/tables/32/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/4.15.table b/definitions/grib2/tables/32/4.15.table index 7adddedb6..47c4ab6b5 100644 --- a/definitions/grib2/tables/32/4.15.table +++ b/definitions/grib2/tables/32/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/32/4.16.table b/definitions/grib2/tables/32/4.16.table index 5b9f6fd73..2e0c69752 100644 --- a/definitions/grib2/tables/32/4.16.table +++ b/definitions/grib2/tables/32/4.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/32/4.2.0.0.table b/definitions/grib2/tables/32/4.2.0.0.table index e4912c9d6..835789797 100644 --- a/definitions/grib2/tables/32/4.2.0.0.table +++ b/definitions/grib2/tables/32/4.2.0.0.table @@ -32,6 +32,4 @@ 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 32 Wet-bulb potential temperature (K) -# 33-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.1.table b/definitions/grib2/tables/32/4.2.0.1.table index 2405606cb..6f8ebd525 100644 --- a/definitions/grib2/tables/32/4.2.0.1.table +++ b/definitions/grib2/tables/32/4.2.0.1.table @@ -88,7 +88,6 @@ 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) @@ -169,6 +168,4 @@ 167 167 Total column supercooled liquid water (kg m-2) 168 168 Saturation specific humidity with respect to water (kg m-3) 169 169 Total column integrated saturation specific humidity with respect to water (kg m-2) -# 170-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.13.table b/definitions/grib2/tables/32/4.2.0.13.table index 4c1253b96..6e05fe29c 100644 --- a/definitions/grib2/tables/32/4.2.0.13.table +++ b/definitions/grib2/tables/32/4.2.0.13.table @@ -1,5 +1,3 @@ # 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/definitions/grib2/tables/32/4.2.0.14.table b/definitions/grib2/tables/32/4.2.0.14.table index df0f721ea..78b9771d9 100644 --- a/definitions/grib2/tables/32/4.2.0.14.table +++ b/definitions/grib2/tables/32/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/4.2.0.15.table b/definitions/grib2/tables/32/4.2.0.15.table index ac49ad402..047a903f7 100644 --- a/definitions/grib2/tables/32/4.2.0.15.table +++ b/definitions/grib2/tables/32/4.2.0.15.table @@ -16,6 +16,4 @@ 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/definitions/grib2/tables/32/4.2.0.16.table b/definitions/grib2/tables/32/4.2.0.16.table index 111e6d986..6fa720bf9 100644 --- a/definitions/grib2/tables/32/4.2.0.16.table +++ b/definitions/grib2/tables/32/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/32/4.2.0.18.table b/definitions/grib2/tables/32/4.2.0.18.table index 9d527a828..2f70d7a39 100644 --- a/definitions/grib2/tables/32/4.2.0.18.table +++ b/definitions/grib2/tables/32/4.2.0.18.table @@ -18,6 +18,4 @@ 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/definitions/grib2/tables/32/4.2.0.19.table b/definitions/grib2/tables/32/4.2.0.19.table index 680027b38..b4b4384d1 100644 --- a/definitions/grib2/tables/32/4.2.0.19.table +++ b/definitions/grib2/tables/32/4.2.0.19.table @@ -49,6 +49,4 @@ 47 47 Global irradiance on tilted surfaces (W m-2) 48 48 Top of persistent contrails (m) 49 49 Base of persistent contrails (m) -# 50-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.190.table b/definitions/grib2/tables/32/4.2.0.190.table index dfe39840d..bd8ceca18 100644 --- a/definitions/grib2/tables/32/4.2.0.190.table +++ b/definitions/grib2/tables/32/4.2.0.190.table @@ -1,5 +1,3 @@ # Product discipline 0 - Meteorological products, parameter category 190: CCITT IA5 string 0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.191.table b/definitions/grib2/tables/32/4.2.0.191.table index 5cf93985f..89bf5ee7c 100644 --- a/definitions/grib2/tables/32/4.2.0.191.table +++ b/definitions/grib2/tables/32/4.2.0.191.table @@ -4,6 +4,4 @@ 2 2 Geographical longitude (deg E) 3 3 Days since last observation (d) 4 4 Tropical cyclone density track (Numeric) -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.2.table b/definitions/grib2/tables/32/4.2.0.2.table index bd6e32851..f1a8c58a0 100644 --- a/definitions/grib2/tables/32/4.2.0.2.table +++ b/definitions/grib2/tables/32/4.2.0.2.table @@ -67,6 +67,4 @@ 65 65 Northward turbulent surface stress due to orographic form drag (N m-2) 66 66 Eastward turbulent surface stress due to surface roughness (N m-2) 67 67 Northward turbulent surface stress due to surface roughness (N m-2) -# 68-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.20.table b/definitions/grib2/tables/32/4.2.0.20.table index 7855a8618..19a014b78 100644 --- a/definitions/grib2/tables/32/4.2.0.20.table +++ b/definitions/grib2/tables/32/4.2.0.20.table @@ -18,7 +18,6 @@ 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 18 Potential of hydrogen (pH) (pH) -# 19-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) @@ -51,7 +50,6 @@ 79 79 Column integrated northward mass flux (kg m-1 s-1) 80 80 Column integrated divergence of mass flux (kg m-2 s-1) 81 81 Column integrated net source (kg m-2 s-1) -# 82-99 Reserved 100 100 Surface area density (aerosol) (/m) 101 101 Vertical visual range (m) 102 102 Aerosol optical thickness (Numeric) @@ -64,6 +62,4 @@ 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/definitions/grib2/tables/32/4.2.0.21.table b/definitions/grib2/tables/32/4.2.0.21.table index 05646e1a6..4084663ef 100644 --- a/definitions/grib2/tables/32/4.2.0.21.table +++ b/definitions/grib2/tables/32/4.2.0.21.table @@ -22,6 +22,4 @@ 20 20 Column integrated northward heat flux (W m-1) 21 21 Column integrated potential+internal+latent energy (J m-2) 22 22 Eady growth rate (day-1) -# 23-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.3.table b/definitions/grib2/tables/32/4.2.0.3.table index d685de2ef..e94cb5e9f 100644 --- a/definitions/grib2/tables/32/4.2.0.3.table +++ b/definitions/grib2/tables/32/4.2.0.3.table @@ -46,6 +46,4 @@ 44 44 Height of zero-degree wet-bulb temperature (m) 45 45 Height of one-degree wet-bulb temperature (m) 46 46 Pressure departure from hydrostatic state (Pa) -# 47-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.4.table b/definitions/grib2/tables/32/4.2.0.4.table index 88c24ae52..94eb72373 100644 --- a/definitions/grib2/tables/32/4.2.0.4.table +++ b/definitions/grib2/tables/32/4.2.0.4.table @@ -15,7 +15,6 @@ 13 13 Direct short-wave radiation flux (W m-2) 14 14 Diffuse short-wave radiation flux (W m-2) 15 15 Upward UV radiation emitted/reflected from the Earth's surface (W m-2) -# 16-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) @@ -28,6 +27,4 @@ 59 59 UV visible albedo for direct radiation, volumetric component (%) 60 60 Photosynthetically active radiation flux, clear sky (W m-2) 61 61 Direct short-wave radiation flux, clear sky (W m-2) -# 62-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.5.table b/definitions/grib2/tables/32/4.2.0.5.table index 7065106a2..f32458a27 100644 --- a/definitions/grib2/tables/32/4.2.0.5.table +++ b/definitions/grib2/tables/32/4.2.0.5.table @@ -13,6 +13,4 @@ 11 11 Near IR albedo for direct radiation, geometric component (%) 12 12 Near IR albedo for direct radiation, isotropic component (%) 13 13 Near IR albedo for direct radiation, volumetric component (%) -# 14-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.6.table b/definitions/grib2/tables/32/4.2.0.6.table index d831f3474..6e960fb5a 100644 --- a/definitions/grib2/tables/32/4.2.0.6.table +++ b/definitions/grib2/tables/32/4.2.0.6.table @@ -40,12 +40,9 @@ 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 51 Sunshine duration fraction (Proportion) -# 52-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.0.7.table b/definitions/grib2/tables/32/4.2.0.7.table index 15acb1857..7d60d9bf7 100644 --- a/definitions/grib2/tables/32/4.2.0.7.table +++ b/definitions/grib2/tables/32/4.2.0.7.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/32/4.2.1.0.table b/definitions/grib2/tables/32/4.2.1.0.table index 49056313b..a118d4193 100644 --- a/definitions/grib2/tables/32/4.2.1.0.table +++ b/definitions/grib2/tables/32/4.2.1.0.table @@ -19,6 +19,4 @@ 17 17 River outflow of water (m3 s-1) 18 18 Floodplain outflow of water (m3 s-1) 19 19 Floodpath outflow of water (m3 s-1) -# 20-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.1.1.table b/definitions/grib2/tables/32/4.2.1.1.table index e3931d5e6..4cf7ecedd 100644 --- a/definitions/grib2/tables/32/4.2.1.1.table +++ b/definitions/grib2/tables/32/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/4.2.1.2.table b/definitions/grib2/tables/32/4.2.1.2.table index 7c3773afd..b4ff7189a 100644 --- a/definitions/grib2/tables/32/4.2.1.2.table +++ b/definitions/grib2/tables/32/4.2.1.2.table @@ -16,6 +16,4 @@ 14 14 Snow temperature (K) 15 15 Lake depth (m) 16 16 River depth (m) -# 17-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.10.0.table b/definitions/grib2/tables/32/4.2.10.0.table index 0c9be88f6..69969130d 100644 --- a/definitions/grib2/tables/32/4.2.10.0.table +++ b/definitions/grib2/tables/32/4.2.10.0.table @@ -97,6 +97,4 @@ 95 95 Time domain maximum individual wave height (m) 96 96 Space time maximum individual crest height (m) 97 97 Space time maximum individual wave height (m) -# 98-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.10.1.table b/definitions/grib2/tables/32/4.2.10.1.table index aeec67455..34b829e24 100644 --- a/definitions/grib2/tables/32/4.2.10.1.table +++ b/definitions/grib2/tables/32/4.2.10.1.table @@ -6,6 +6,4 @@ 4 4 Rip current occurrence probability (%) 5 5 Eastward current (m s-1) 6 6 Northward current (m s-1) -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.10.191.table b/definitions/grib2/tables/32/4.2.10.191.table index cd4d4cde7..c6aac389a 100644 --- a/definitions/grib2/tables/32/4.2.10.191.table +++ b/definitions/grib2/tables/32/4.2.10.191.table @@ -4,6 +4,4 @@ 2 2 Reserved 3 3 Days since last observation (d) 4 4 Barotropic stream function (m3 s-1) -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.10.2.table b/definitions/grib2/tables/32/4.2.10.2.table index 6200dffca..a84e569ca 100644 --- a/definitions/grib2/tables/32/4.2.10.2.table +++ b/definitions/grib2/tables/32/4.2.10.2.table @@ -25,6 +25,4 @@ 23 23 Sea ice fraction tendency due to parameterization (s-1) 24 24 x-component of ice drift (m s-1) 25 25 y-component of ice drift (m s-1) -# 26-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.10.3.table b/definitions/grib2/tables/32/4.2.10.3.table index 6c4277c8e..4c2104066 100644 --- a/definitions/grib2/tables/32/4.2.10.3.table +++ b/definitions/grib2/tables/32/4.2.10.3.table @@ -21,6 +21,4 @@ 19 19 Sea surface height tendency due to parameterization (m s-1) 20 20 Deviation of sea level from mean with inverse barometer correction (m) 21 21 Salinity (kg kg-1) -# 22-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.10.4.table b/definitions/grib2/tables/32/4.2.10.4.table index 0b9ef0956..30b75352e 100644 --- a/definitions/grib2/tables/32/4.2.10.4.table +++ b/definitions/grib2/tables/32/4.2.10.4.table @@ -7,7 +7,6 @@ 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) @@ -49,6 +48,4 @@ 49 49 Sea water column integrated zonal mass transport (kg m-1 s-1) 50 50 Sea water column integrated practical salinity (g kg-1 m) 51 51 Sea water column integrated salinity (kg kg-1 m) -# 52-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.2.0.table b/definitions/grib2/tables/32/4.2.2.0.table index 8daeafd85..24dc27d8f 100644 --- a/definitions/grib2/tables/32/4.2.2.0.table +++ b/definitions/grib2/tables/32/4.2.2.0.table @@ -63,6 +63,4 @@ 61 61 Ecosystem respiration flux (kg m-2 s-1) 62 62 Emissivity (Proportion) 63 63 Canopy air temperature (K) -# 64-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.2.3.table b/definitions/grib2/tables/32/4.2.2.3.table index ad6b618f2..e4920d9c8 100644 --- a/definitions/grib2/tables/32/4.2.2.3.table +++ b/definitions/grib2/tables/32/4.2.2.3.table @@ -30,6 +30,4 @@ 28 28 Snow temperature (K) 29 29 Ice temperature (K) 30 30 Soil wetness index (Numeric) -# 31-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.2.4.table b/definitions/grib2/tables/32/4.2.2.4.table index d5c1d641c..f53e6d25d 100644 --- a/definitions/grib2/tables/32/4.2.2.4.table +++ b/definitions/grib2/tables/32/4.2.2.4.table @@ -35,6 +35,4 @@ 33 33 Dense dead leaf moisture content (kg kg-1) 34 34 Fine dead wood moisture content (kg kg-1) 35 35 Dense dead wood moisture content (kg kg-1) -# 36-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.2.5.table b/definitions/grib2/tables/32/4.2.2.5.table index 1d08dd573..7cea1b5da 100644 --- a/definitions/grib2/tables/32/4.2.2.5.table +++ b/definitions/grib2/tables/32/4.2.2.5.table @@ -1,6 +1,4 @@ # Product discipline 2 - Land surface products, parameter category 5: glaciers and inland ice 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/definitions/grib2/tables/32/4.2.2.6.table b/definitions/grib2/tables/32/4.2.2.6.table index 7a7712af0..58663a7d8 100644 --- a/definitions/grib2/tables/32/4.2.2.6.table +++ b/definitions/grib2/tables/32/4.2.2.6.table @@ -8,6 +8,4 @@ 6 6 Distance downward from roof surface (m) 7 7 Distance inward from outer wall surface (m) 8 8 Distance downward from road surface (m) -# 9-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.20.0.table b/definitions/grib2/tables/32/4.2.20.0.table index a997371d9..23ed9f577 100644 --- a/definitions/grib2/tables/32/4.2.20.0.table +++ b/definitions/grib2/tables/32/4.2.20.0.table @@ -8,6 +8,4 @@ 6 6 Normal effective temperature (K) 7 7 Standard effective temperature (K) 8 8 Physiological equivalent temperature (K) -# 9-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.20.1.table b/definitions/grib2/tables/32/4.2.20.1.table index 0712cd8d1..e7c4388ea 100644 --- a/definitions/grib2/tables/32/4.2.20.1.table +++ b/definitions/grib2/tables/32/4.2.20.1.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/32/4.2.20.2.table b/definitions/grib2/tables/32/4.2.20.2.table index d6b9083d1..285f12a81 100644 --- a/definitions/grib2/tables/32/4.2.20.2.table +++ b/definitions/grib2/tables/32/4.2.20.2.table @@ -1,5 +1,3 @@ # Product discipline 20 - Health and socioeconomic impacts, parameter category 2: socioeconomic indicators 0 0 Population density (Person m-2) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.20.3.table b/definitions/grib2/tables/32/4.2.20.3.table index 9c2f80cfa..efa184792 100644 --- a/definitions/grib2/tables/32/4.2.20.3.table +++ b/definitions/grib2/tables/32/4.2.20.3.table @@ -9,6 +9,4 @@ 7 7 Solar non-photovoltaic (PV) power production rate (W) 8 8 Concentrated solar power (CSP) power capacity (W) 9 9 Concentrated solar power (CSP) power production rate (W) -# 10-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.3.0.table b/definitions/grib2/tables/32/4.2.3.0.table index 0bec15119..49b098942 100644 --- a/definitions/grib2/tables/32/4.2.3.0.table +++ b/definitions/grib2/tables/32/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/32/4.2.3.1.table b/definitions/grib2/tables/32/4.2.3.1.table index 2aec33b42..8af4b62f6 100644 --- a/definitions/grib2/tables/32/4.2.3.1.table +++ b/definitions/grib2/tables/32/4.2.3.1.table @@ -23,16 +23,12 @@ 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 30 Reflectance in 0.4 micron channel (%) 31 31 Cloudy reflectance (%) 32 32 Clear reflectance (%) -# 33-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/definitions/grib2/tables/32/4.2.4.0.table b/definitions/grib2/tables/32/4.2.4.0.table index 337308305..47a9b9f78 100644 --- a/definitions/grib2/tables/32/4.2.4.0.table +++ b/definitions/grib2/tables/32/4.2.4.0.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/32/4.2.4.1.table b/definitions/grib2/tables/32/4.2.4.1.table index 9ec11160f..4ce057416 100644 --- a/definitions/grib2/tables/32/4.2.4.1.table +++ b/definitions/grib2/tables/32/4.2.4.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/32/4.2.4.10.table b/definitions/grib2/tables/32/4.2.4.10.table index 8f5b19e06..e539399da 100644 --- a/definitions/grib2/tables/32/4.2.4.10.table +++ b/definitions/grib2/tables/32/4.2.4.10.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/32/4.2.4.2.table b/definitions/grib2/tables/32/4.2.4.2.table index b479b3361..f101c726d 100644 --- a/definitions/grib2/tables/32/4.2.4.2.table +++ b/definitions/grib2/tables/32/4.2.4.2.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/32/4.2.4.3.table b/definitions/grib2/tables/32/4.2.4.3.table index 3b752bbbc..83c5c4003 100644 --- a/definitions/grib2/tables/32/4.2.4.3.table +++ b/definitions/grib2/tables/32/4.2.4.3.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/32/4.2.4.4.table b/definitions/grib2/tables/32/4.2.4.4.table index 694c8cacc..0dce67c17 100644 --- a/definitions/grib2/tables/32/4.2.4.4.table +++ b/definitions/grib2/tables/32/4.2.4.4.table @@ -6,6 +6,4 @@ 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-1) -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.4.5.table b/definitions/grib2/tables/32/4.2.4.5.table index 913efec6f..25c1edd37 100644 --- a/definitions/grib2/tables/32/4.2.4.5.table +++ b/definitions/grib2/tables/32/4.2.4.5.table @@ -3,6 +3,4 @@ 1 1 Phase (rad) 2 2 Frequency (Hz) 3 3 Wavelength (m) -# 4-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.4.6.table b/definitions/grib2/tables/32/4.2.4.6.table index 6d13019a6..e7da16f42 100644 --- a/definitions/grib2/tables/32/4.2.4.6.table +++ b/definitions/grib2/tables/32/4.2.4.6.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/32/4.2.4.7.table b/definitions/grib2/tables/32/4.2.4.7.table index 38c2b17a8..0433ac516 100644 --- a/definitions/grib2/tables/32/4.2.4.7.table +++ b/definitions/grib2/tables/32/4.2.4.7.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/32/4.2.4.8.table b/definitions/grib2/tables/32/4.2.4.8.table index f350f4807..f0cc8aac2 100644 --- a/definitions/grib2/tables/32/4.2.4.8.table +++ b/definitions/grib2/tables/32/4.2.4.8.table @@ -8,6 +8,4 @@ 6 6 Heliospheric radiance (W sr-1 m-2) 7 7 Thematic mask (Numeric) 8 8 Solar induced chlorophyll fluorescence (W m-2 sr-1 m-1) -# 9-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.2.4.9.table b/definitions/grib2/tables/32/4.2.4.9.table index 0e83436e2..984ea4726 100644 --- a/definitions/grib2/tables/32/4.2.4.9.table +++ b/definitions/grib2/tables/32/4.2.4.9.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/4.201.table b/definitions/grib2/tables/32/4.201.table index a725e4e65..c30b081a2 100644 --- a/definitions/grib2/tables/32/4.201.table +++ b/definitions/grib2/tables/32/4.201.table @@ -12,6 +12,4 @@ 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/definitions/grib2/tables/32/4.202.table b/definitions/grib2/tables/32/4.202.table index 7f3c8f6cf..5ff2c4bd7 100644 --- a/definitions/grib2/tables/32/4.202.table +++ b/definitions/grib2/tables/32/4.202.table @@ -1,4 +1,2 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.203.table b/definitions/grib2/tables/32/4.203.table index cf5eb6bdc..3a06458af 100644 --- a/definitions/grib2/tables/32/4.203.table +++ b/definitions/grib2/tables/32/4.203.table @@ -20,7 +20,5 @@ 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/definitions/grib2/tables/32/4.204.table b/definitions/grib2/tables/32/4.204.table index 8e0be1f8c..233414cc5 100644 --- a/definitions/grib2/tables/32/4.204.table +++ b/definitions/grib2/tables/32/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/32/4.205.table b/definitions/grib2/tables/32/4.205.table index c40c7f47b..4f9e22ebd 100644 --- a/definitions/grib2/tables/32/4.205.table +++ b/definitions/grib2/tables/32/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/4.206.table b/definitions/grib2/tables/32/4.206.table index 76472c261..0e9b088ae 100644 --- a/definitions/grib2/tables/32/4.206.table +++ b/definitions/grib2/tables/32/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/4.207.table b/definitions/grib2/tables/32/4.207.table index b6392fca0..56cc2388b 100644 --- a/definitions/grib2/tables/32/4.207.table +++ b/definitions/grib2/tables/32/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.208.table b/definitions/grib2/tables/32/4.208.table index 4361d38c0..175f90df1 100644 --- a/definitions/grib2/tables/32/4.208.table +++ b/definitions/grib2/tables/32/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.209.table b/definitions/grib2/tables/32/4.209.table index 39ea549ac..5b7dd4854 100644 --- a/definitions/grib2/tables/32/4.209.table +++ b/definitions/grib2/tables/32/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/32/4.210.table b/definitions/grib2/tables/32/4.210.table index 791878469..102bccfba 100644 --- a/definitions/grib2/tables/32/4.210.table +++ b/definitions/grib2/tables/32/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/4.211.table b/definitions/grib2/tables/32/4.211.table index 2a28a84d9..9d7118b25 100644 --- a/definitions/grib2/tables/32/4.211.table +++ b/definitions/grib2/tables/32/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/4.212.table b/definitions/grib2/tables/32/4.212.table index 6a3dcf88c..b833fd892 100644 --- a/definitions/grib2/tables/32/4.212.table +++ b/definitions/grib2/tables/32/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/32/4.213.table b/definitions/grib2/tables/32/4.213.table index 68d627af6..3ea22676b 100644 --- a/definitions/grib2/tables/32/4.213.table +++ b/definitions/grib2/tables/32/4.213.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/32/4.214.table b/definitions/grib2/tables/32/4.214.table index b08860ce0..c0eaeda75 100644 --- a/definitions/grib2/tables/32/4.214.table +++ b/definitions/grib2/tables/32/4.214.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/32/4.215.table b/definitions/grib2/tables/32/4.215.table index 7888772d5..e521eb298 100644 --- a/definitions/grib2/tables/32/4.215.table +++ b/definitions/grib2/tables/32/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/32/4.216.table b/definitions/grib2/tables/32/4.216.table index b51b358f4..62efb99c2 100644 --- a/definitions/grib2/tables/32/4.216.table +++ b/definitions/grib2/tables/32/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/32/4.217.table b/definitions/grib2/tables/32/4.217.table index a700410d5..186ea8760 100644 --- a/definitions/grib2/tables/32/4.217.table +++ b/definitions/grib2/tables/32/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/32/4.218.table b/definitions/grib2/tables/32/4.218.table index a13debf16..7f9f79a60 100644 --- a/definitions/grib2/tables/32/4.218.table +++ b/definitions/grib2/tables/32/4.218.table @@ -24,7 +24,6 @@ 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 @@ -41,6 +40,4 @@ 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/definitions/grib2/tables/32/4.219.table b/definitions/grib2/tables/32/4.219.table index 9979f50ad..937fc8a41 100644 --- a/definitions/grib2/tables/32/4.219.table +++ b/definitions/grib2/tables/32/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/32/4.220.table b/definitions/grib2/tables/32/4.220.table index 88e869e42..837f61991 100644 --- a/definitions/grib2/tables/32/4.220.table +++ b/definitions/grib2/tables/32/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/4.221.table b/definitions/grib2/tables/32/4.221.table index 011cc3518..9988c37c7 100644 --- a/definitions/grib2/tables/32/4.221.table +++ b/definitions/grib2/tables/32/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/4.222.table b/definitions/grib2/tables/32/4.222.table index 558d947ac..b00781400 100644 --- a/definitions/grib2/tables/32/4.222.table +++ b/definitions/grib2/tables/32/4.222.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/4.224.table b/definitions/grib2/tables/32/4.224.table index 014f56e23..6496a4db1 100644 --- a/definitions/grib2/tables/32/4.224.table +++ b/definitions/grib2/tables/32/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/32/4.227.table b/definitions/grib2/tables/32/4.227.table index 48c3b7633..e1e762a18 100644 --- a/definitions/grib2/tables/32/4.227.table +++ b/definitions/grib2/tables/32/4.227.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/32/4.228.table b/definitions/grib2/tables/32/4.228.table index 048a69f0b..88c3dd87c 100644 --- a/definitions/grib2/tables/32/4.228.table +++ b/definitions/grib2/tables/32/4.228.table @@ -4,5 +4,4 @@ 2 2 Light 3 3 Moderate 4 4 Severe -# 5-254 Reserved 255 255 Missing value diff --git a/definitions/grib2/tables/32/4.230.table b/definitions/grib2/tables/32/4.230.table index 705857e5c..3bb35c402 100644 --- a/definitions/grib2/tables/32/4.230.table +++ b/definitions/grib2/tables/32/4.230.table @@ -46,7 +46,6 @@ 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 CH3OOH @@ -106,10 +105,8 @@ 10057 10057 2-lambda^1-oxidanyloxy-3-methylbut-3-en-1-ol (2-hydroxy-1-isopropenylethylperoxy radical) HOCH2CH(OO*)C(CH3)CH2 10058 10058 (Z)-4-hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH3)CHO 10059 10059 (Z)-4-hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH3)CHCHO -# 10060-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, etc.) 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 @@ -132,9 +129,7 @@ 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 @@ -424,12 +419,10 @@ 30296 30296 Lead Pb 30297 30297 Tellurium 131 Te-131 30298 30298 Neodymium 137 Nd-137 -# 30299-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 @@ -465,7 +458,6 @@ 60032 60032 All hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O2 ISOPOOH 60033 60033 Anthropogenic volatile organic compounds aVOC 60034 60034 Biomass burning volatile organic compounds bbVOC -# 60035-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -485,15 +477,12 @@ 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 @@ -503,7 +492,6 @@ 62034 62034 Rain water H2Orain 62035 62035 Cloud water H2Ocloud 62036 62036 Brown carbon dry -# 62037-62099 Reserved 62100 62100 Alnus (alder) pollen 62101 62101 Betula (birch) pollen 62102 62102 Castanea (chestnut) pollen @@ -520,15 +508,12 @@ 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/definitions/grib2/tables/32/4.233.table b/definitions/grib2/tables/32/4.233.table index e4960cc1b..d9e12aec6 100644 --- a/definitions/grib2/tables/32/4.233.table +++ b/definitions/grib2/tables/32/4.233.table @@ -46,7 +46,6 @@ 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 CH3OOH @@ -106,10 +105,8 @@ 10057 10057 2-lambda^1-oxidanyloxy-3-methylbut-3-en-1-ol (2-hydroxy-1-isopropenylethylperoxy radical) HOCH2CH(OO*)C(CH3)CH2 10058 10058 (Z)-4-hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH3)CHO 10059 10059 (Z)-4-hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH3)CHCHO -# 10060-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, etc.) 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 @@ -132,9 +129,7 @@ 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 @@ -424,12 +419,10 @@ 30296 30296 Lead Pb 30297 30297 Tellurium 131 Te-131 30298 30298 Neodymium 137 Nd-137 -# 30299-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 @@ -465,7 +458,6 @@ 60032 60032 All hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O2 ISOPOOH 60033 60033 Anthropogenic volatile organic compounds aVOC 60034 60034 Biomass burning volatile organic compounds bbVOC -# 60035-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -485,15 +477,12 @@ 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 @@ -503,7 +492,6 @@ 62034 62034 Rain water H2Orain 62035 62035 Cloud water H2Ocloud 62036 62036 Brown carbon dry -# 62037-62099 Reserved 62100 62100 Alnus (alder) pollen 62101 62101 Betula (birch) pollen 62102 62102 Castanea (chestnut) pollen @@ -520,15 +508,12 @@ 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/definitions/grib2/tables/32/4.238.table b/definitions/grib2/tables/32/4.238.table index be5be3a90..abd570100 100644 --- a/definitions/grib2/tables/32/4.238.table +++ b/definitions/grib2/tables/32/4.238.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/32/4.239.table b/definitions/grib2/tables/32/4.239.table index f095b14a0..b035c9eca 100644 --- a/definitions/grib2/tables/32/4.239.table +++ b/definitions/grib2/tables/32/4.239.table @@ -12,6 +12,4 @@ 10 10 Swamp 11 11 Upland 12 12 Wet tundra -# 13-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.240.table b/definitions/grib2/tables/32/4.240.table index 2a31fb2ab..b787f4087 100644 --- a/definitions/grib2/tables/32/4.240.table +++ b/definitions/grib2/tables/32/4.240.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/32/4.241.table b/definitions/grib2/tables/32/4.241.table index 743e5f6e2..9a0f8d9e2 100644 --- a/definitions/grib2/tables/32/4.241.table +++ b/definitions/grib2/tables/32/4.241.table @@ -7,6 +7,4 @@ 5 ITCW With intercepted water 6 ITCS With intercepted snow 7 AGG Aggregated -# 8-191 Reserved -# 192-254 Reserved for local use 255 255 Missing value diff --git a/definitions/grib2/tables/32/4.242.table b/definitions/grib2/tables/32/4.242.table index 9574142da..f3be7fff4 100644 --- a/definitions/grib2/tables/32/4.242.table +++ b/definitions/grib2/tables/32/4.242.table @@ -5,6 +5,4 @@ 3 ECOCLIMAP Land use classes according to ECOCLIMAP 4 ECOCLIMAP-SG Land use classes according to ECOCLIMAP-SG 5 GLCCv2BATS Land use classes according to USGS EROS Global Land Cover Characterization (GLCC) v2.0 BATS Classification -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing value diff --git a/definitions/grib2/tables/32/4.243.table b/definitions/grib2/tables/32/4.243.table index 24d21b719..eece47ab0 100644 --- a/definitions/grib2/tables/32/4.243.table +++ b/definitions/grib2/tables/32/4.243.table @@ -39,5 +39,3 @@ 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/definitions/grib2/tables/32/4.244.table b/definitions/grib2/tables/32/4.244.table index a4470cd56..90c641c0b 100644 --- a/definitions/grib2/tables/32/4.244.table +++ b/definitions/grib2/tables/32/4.244.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/4.246.table b/definitions/grib2/tables/32/4.246.table index 0ca9c0c98..74c16312c 100644 --- a/definitions/grib2/tables/32/4.246.table +++ b/definitions/grib2/tables/32/4.246.table @@ -3,5 +3,4 @@ 1 1 Weak thunderstorm 2 2 Moderate thunderstorm 3 3 Severe thunderstorm -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/32/4.247.table b/definitions/grib2/tables/32/4.247.table index 6da16e396..5a55bf127 100644 --- a/definitions/grib2/tables/32/4.247.table +++ b/definitions/grib2/tables/32/4.247.table @@ -3,5 +3,4 @@ 1 1 Light precipitation 2 2 Moderate precipitation 3 3 Heavy precipitation -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/32/4.248.table b/definitions/grib2/tables/32/4.248.table index 04e365c97..ae4965d8d 100644 --- a/definitions/grib2/tables/32/4.248.table +++ b/definitions/grib2/tables/32/4.248.table @@ -1,6 +1,4 @@ # Code table 4.248 - Method used to derive data values for a given local time 0 0 Nearest forecast or analysis time to specified local time 1 1 Interpolated to be valid at the specified local time -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.249.table b/definitions/grib2/tables/32/4.249.table index bd1c944c4..93137b15b 100644 --- a/definitions/grib2/tables/32/4.249.table +++ b/definitions/grib2/tables/32/4.249.table @@ -3,5 +3,4 @@ 1 1 Showers 2 2 Intermittent 3 3 Continuous -# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/32/4.250.table b/definitions/grib2/tables/32/4.250.table index a249158ca..c918ca956 100644 --- a/definitions/grib2/tables/32/4.250.table +++ b/definitions/grib2/tables/32/4.250.table @@ -9,6 +9,4 @@ 7 7 North-west 8 8 North 9 9 North-east -# 10-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.251.table b/definitions/grib2/tables/32/4.251.table index 3a78e713e..c56dc3415 100644 --- a/definitions/grib2/tables/32/4.251.table +++ b/definitions/grib2/tables/32/4.251.table @@ -2,6 +2,4 @@ 0 0 Undefined sequence 1 1 Geometric sequence 2 2 Arithmetic sequence -# 3-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.252.table b/definitions/grib2/tables/32/4.252.table index 961928cd4..c8bc543ef 100644 --- a/definitions/grib2/tables/32/4.252.table +++ b/definitions/grib2/tables/32/4.252.table @@ -161,5 +161,4 @@ # 4023-4500 Reserved for tile class entries for tile models using the European Commission-Global Land Cover Project GLC2000 survey # 4501-5000 Reserved for tile grouping entries for tile models using the European Commission-Global Land Cover Project GLC2000 survey # 5001-32767 Reserved for additional land cover surveys -# 32768-65534 Reserved for local use 65535 65535 Missing \ No newline at end of file diff --git a/definitions/grib2/tables/32/4.3.table b/definitions/grib2/tables/32/4.3.table index 8ae36efc3..5d9191ff8 100644 --- a/definitions/grib2/tables/32/4.3.table +++ b/definitions/grib2/tables/32/4.3.table @@ -21,6 +21,4 @@ 19 19 First guess 20 20 Analysis increment 21 21 Initialization increment for analysis -# 22-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.4.table b/definitions/grib2/tables/32/4.4.table index 6e63e069c..5f19caf93 100644 --- a/definitions/grib2/tables/32/4.4.table +++ b/definitions/grib2/tables/32/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/32/4.5.table b/definitions/grib2/tables/32/4.5.table index 8cded597c..716b40fa5 100644 --- a/definitions/grib2/tables/32/4.5.table +++ b/definitions/grib2/tables/32/4.5.table @@ -18,7 +18,6 @@ 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) @@ -27,14 +26,12 @@ 25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) 26 26 Convective cloud layer base (m) 27 27 Convective cloud layer top (m) -# 28-29 Reserved 30 30 Specified radius from the centre 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) @@ -51,15 +48,12 @@ 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 sfc Lake or river bottom (-) @@ -72,13 +66,11 @@ 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 171 Ocean level defined by vertical eddy diffusivity difference from near-surface to level (m2 s-1) -# 172 Reserved 173 173 Top of snow over sea ice on sea, lake or river 174 sfc 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 @@ -90,6 +82,4 @@ 187 187 Road level 188 188 Melt pond top surface 189 189 Melt pond bottom surface -# 190-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/32/4.6.table b/definitions/grib2/tables/32/4.6.table index ce799721d..d2b442a51 100644 --- a/definitions/grib2/tables/32/4.6.table +++ b/definitions/grib2/tables/32/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/32/4.7.table b/definitions/grib2/tables/32/4.7.table index 69b2b4d77..fef408de5 100644 --- a/definitions/grib2/tables/32/4.7.table +++ b/definitions/grib2/tables/32/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/32/4.8.table b/definitions/grib2/tables/32/4.8.table index 78467454a..e767b88fd 100644 --- a/definitions/grib2/tables/32/4.8.table +++ b/definitions/grib2/tables/32/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/4.9.table b/definitions/grib2/tables/32/4.9.table index fa078f275..e2bae72c4 100644 --- a/definitions/grib2/tables/32/4.9.table +++ b/definitions/grib2/tables/32/4.9.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/32/4.91.table b/definitions/grib2/tables/32/4.91.table index ae31ed61c..ee5692618 100644 --- a/definitions/grib2/tables/32/4.91.table +++ b/definitions/grib2/tables/32/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/32/5.0.table b/definitions/grib2/tables/32/5.0.table index 5e00004b0..115b708f2 100644 --- a/definitions/grib2/tables/32/5.0.table +++ b/definitions/grib2/tables/32/5.0.table @@ -4,19 +4,12 @@ 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 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/definitions/grib2/tables/32/5.1.table b/definitions/grib2/tables/32/5.1.table index 1189b5e46..8a80ec049 100644 --- a/definitions/grib2/tables/32/5.1.table +++ b/definitions/grib2/tables/32/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/5.2.table b/definitions/grib2/tables/32/5.2.table index 60d557a0d..b880c47c2 100644 --- a/definitions/grib2/tables/32/5.2.table +++ b/definitions/grib2/tables/32/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/32/5.25.table b/definitions/grib2/tables/32/5.25.table index 79e9fd69a..8ccddadd5 100644 --- a/definitions/grib2/tables/32/5.25.table +++ b/definitions/grib2/tables/32/5.25.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/32/5.26.table b/definitions/grib2/tables/32/5.26.table index 298f3fcd0..ee8ee4e73 100644 --- a/definitions/grib2/tables/32/5.26.table +++ b/definitions/grib2/tables/32/5.26.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/32/5.3.table b/definitions/grib2/tables/32/5.3.table index 481331791..d9cd7835e 100644 --- a/definitions/grib2/tables/32/5.3.table +++ b/definitions/grib2/tables/32/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/5.4.table b/definitions/grib2/tables/32/5.4.table index e84ab1901..270f2d0ce 100644 --- a/definitions/grib2/tables/32/5.4.table +++ b/definitions/grib2/tables/32/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/32/5.40.table b/definitions/grib2/tables/32/5.40.table index 97e8880ab..a38dfc59d 100644 --- a/definitions/grib2/tables/32/5.40.table +++ b/definitions/grib2/tables/32/5.40.table @@ -1,5 +1,4 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/32/5.5.table b/definitions/grib2/tables/32/5.5.table index f2316975a..373cb2624 100644 --- a/definitions/grib2/tables/32/5.5.table +++ b/definitions/grib2/tables/32/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/5.6.table b/definitions/grib2/tables/32/5.6.table index db68ead9c..3b6ce4af5 100644 --- a/definitions/grib2/tables/32/5.6.table +++ b/definitions/grib2/tables/32/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/32/5.7.table b/definitions/grib2/tables/32/5.7.table index e54862c19..bbb5ac73a 100644 --- a/definitions/grib2/tables/32/5.7.table +++ b/definitions/grib2/tables/32/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/4/0.0.table b/definitions/grib2/tables/4/0.0.table index fd2056350..39475306e 100644 --- a/definitions/grib2/tables/4/0.0.table +++ b/definitions/grib2/tables/4/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/4/1.2.table b/definitions/grib2/tables/4/1.2.table index eb8755209..65b1aca9a 100644 --- a/definitions/grib2/tables/4/1.2.table +++ b/definitions/grib2/tables/4/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/4/1.3.table b/definitions/grib2/tables/4/1.3.table index d4ed48c63..d2a1c2770 100644 --- a/definitions/grib2/tables/4/1.3.table +++ b/definitions/grib2/tables/4/1.3.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/4/1.4.table b/definitions/grib2/tables/4/1.4.table index ac21f5c4c..8fa9b6b41 100644 --- a/definitions/grib2/tables/4/1.4.table +++ b/definitions/grib2/tables/4/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/4/3.0.table b/definitions/grib2/tables/4/3.0.table index 6030a5132..4f4fd7be4 100644 --- a/definitions/grib2/tables/4/3.0.table +++ b/definitions/grib2/tables/4/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/4/3.1.table b/definitions/grib2/tables/4/3.1.table index a989a78a9..837586d9a 100644 --- a/definitions/grib2/tables/4/3.1.table +++ b/definitions/grib2/tables/4/3.1.table @@ -3,41 +3,25 @@ 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/definitions/grib2/tables/4/3.15.table b/definitions/grib2/tables/4/3.15.table index 6a035be56..d4f7e0ed2 100644 --- a/definitions/grib2/tables/4/3.15.table +++ b/definitions/grib2/tables/4/3.15.table @@ -1,7 +1,5 @@ # 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 @@ -15,8 +13,5 @@ 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/definitions/grib2/tables/4/3.2.table b/definitions/grib2/tables/4/3.2.table index d037ee120..2bf054512 100644 --- a/definitions/grib2/tables/4/3.2.table +++ b/definitions/grib2/tables/4/3.2.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/4/3.20.table b/definitions/grib2/tables/4/3.20.table index cfa35ae38..f79d193b6 100644 --- a/definitions/grib2/tables/4/3.20.table +++ b/definitions/grib2/tables/4/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/4/3.21.table b/definitions/grib2/tables/4/3.21.table index c2fd94586..d42c900cb 100644 --- a/definitions/grib2/tables/4/3.21.table +++ b/definitions/grib2/tables/4/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/4/3.7.table b/definitions/grib2/tables/4/3.7.table index b57c480a4..5937ea14d 100644 --- a/definitions/grib2/tables/4/3.7.table +++ b/definitions/grib2/tables/4/3.7.table @@ -1,5 +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) -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/4/3.8.table b/definitions/grib2/tables/4/3.8.table index 0d9b7d001..a6b503617 100644 --- a/definitions/grib2/tables/4/3.8.table +++ b/definitions/grib2/tables/4/3.8.table @@ -2,7 +2,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 -#3-191 Reserved -#192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/4/4.1.0.table b/definitions/grib2/tables/4/4.1.0.table index 33d1c3984..d9660f77e 100644 --- a/definitions/grib2/tables/4/4.1.0.table +++ b/definitions/grib2/tables/4/4.1.0.table @@ -21,10 +21,8 @@ 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/definitions/grib2/tables/4/4.1.1.table b/definitions/grib2/tables/4/4.1.1.table index ebb7d9ea0..220c7fd5a 100644 --- a/definitions/grib2/tables/4/4.1.1.table +++ b/definitions/grib2/tables/4/4.1.1.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/4/4.1.10.table b/definitions/grib2/tables/4/4.1.10.table index 45b08caaa..5593171ac 100644 --- a/definitions/grib2/tables/4/4.1.10.table +++ b/definitions/grib2/tables/4/4.1.10.table @@ -5,8 +5,6 @@ 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/definitions/grib2/tables/4/4.1.2.table b/definitions/grib2/tables/4/4.1.2.table index f7f2ea2ba..0426852f0 100644 --- a/definitions/grib2/tables/4/4.1.2.table +++ b/definitions/grib2/tables/4/4.1.2.table @@ -4,8 +4,6 @@ 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/definitions/grib2/tables/4/4.1.3.table b/definitions/grib2/tables/4/4.1.3.table index f7578e163..744f02eba 100644 --- a/definitions/grib2/tables/4/4.1.3.table +++ b/definitions/grib2/tables/4/4.1.3.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/4/4.10.table b/definitions/grib2/tables/4/4.10.table index 9cf447b69..94bf593af 100644 --- a/definitions/grib2/tables/4/4.10.table +++ b/definitions/grib2/tables/4/4.10.table @@ -10,5 +10,4 @@ 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/definitions/grib2/tables/4/4.11.table b/definitions/grib2/tables/4/4.11.table index 68901aac4..28c7ebbd3 100644 --- a/definitions/grib2/tables/4/4.11.table +++ b/definitions/grib2/tables/4/4.11.table @@ -5,5 +5,4 @@ 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/definitions/grib2/tables/4/4.2.0.0.table b/definitions/grib2/tables/4/4.2.0.0.table index 0386b8cd2..94841baa0 100644 --- a/definitions/grib2/tables/4/4.2.0.0.table +++ b/definitions/grib2/tables/4/4.2.0.0.table @@ -17,7 +17,5 @@ 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/definitions/grib2/tables/4/4.2.0.1.table b/definitions/grib2/tables/4/4.2.0.1.table index dbce129d4..a3bbe3b5c 100644 --- a/definitions/grib2/tables/4/4.2.0.1.table +++ b/definitions/grib2/tables/4/4.2.0.1.table @@ -56,7 +56,5 @@ 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/definitions/grib2/tables/4/4.2.0.13.table b/definitions/grib2/tables/4/4.2.0.13.table index 8fc3425af..a8c8c8bce 100644 --- a/definitions/grib2/tables/4/4.2.0.13.table +++ b/definitions/grib2/tables/4/4.2.0.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/4/4.2.0.14.table b/definitions/grib2/tables/4/4.2.0.14.table index 309c40d47..d3128ec55 100644 --- a/definitions/grib2/tables/4/4.2.0.14.table +++ b/definitions/grib2/tables/4/4.2.0.14.table @@ -1,7 +1,5 @@ # 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/definitions/grib2/tables/4/4.2.0.15.table b/definitions/grib2/tables/4/4.2.0.15.table index bb419178b..e73f9eae7 100644 --- a/definitions/grib2/tables/4/4.2.0.15.table +++ b/definitions/grib2/tables/4/4.2.0.15.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/4/4.2.0.18.table b/definitions/grib2/tables/4/4.2.0.18.table index 5c0fd6e5d..1ee1cb17c 100644 --- a/definitions/grib2/tables/4/4.2.0.18.table +++ b/definitions/grib2/tables/4/4.2.0.18.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/4/4.2.0.19.table b/definitions/grib2/tables/4/4.2.0.19.table index 369c3f657..d56c14505 100644 --- a/definitions/grib2/tables/4/4.2.0.19.table +++ b/definitions/grib2/tables/4/4.2.0.19.table @@ -18,7 +18,5 @@ 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/definitions/grib2/tables/4/4.2.0.190.table b/definitions/grib2/tables/4/4.2.0.190.table index b1f47bc02..b95b4ab90 100644 --- a/definitions/grib2/tables/4/4.2.0.190.table +++ b/definitions/grib2/tables/4/4.2.0.190.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/4/4.2.0.191.table b/definitions/grib2/tables/4/4.2.0.191.table index affb98f42..d095f705e 100644 --- a/definitions/grib2/tables/4/4.2.0.191.table +++ b/definitions/grib2/tables/4/4.2.0.191.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/4/4.2.0.2.table b/definitions/grib2/tables/4/4.2.0.2.table index 1ec945102..75b6211aa 100644 --- a/definitions/grib2/tables/4/4.2.0.2.table +++ b/definitions/grib2/tables/4/4.2.0.2.table @@ -30,6 +30,4 @@ 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/definitions/grib2/tables/4/4.2.0.20.table b/definitions/grib2/tables/4/4.2.0.20.table index b72d5fe5e..f8fe0ddb0 100644 --- a/definitions/grib2/tables/4/4.2.0.20.table +++ b/definitions/grib2/tables/4/4.2.0.20.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/4/4.2.0.3.table b/definitions/grib2/tables/4/4.2.0.3.table index 5c7e8151d..fedd11abd 100644 --- a/definitions/grib2/tables/4/4.2.0.3.table +++ b/definitions/grib2/tables/4/4.2.0.3.table @@ -19,7 +19,5 @@ 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/definitions/grib2/tables/4/4.2.0.4.table b/definitions/grib2/tables/4/4.2.0.4.table index 815c184a2..06785fac6 100644 --- a/definitions/grib2/tables/4/4.2.0.4.table +++ b/definitions/grib2/tables/4/4.2.0.4.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/4/4.2.0.5.table b/definitions/grib2/tables/4/4.2.0.5.table index 1b57fa301..e2749b5a6 100644 --- a/definitions/grib2/tables/4/4.2.0.5.table +++ b/definitions/grib2/tables/4/4.2.0.5.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/4/4.2.0.6.table b/definitions/grib2/tables/4/4.2.0.6.table index 05cf72f57..de4e051f2 100644 --- a/definitions/grib2/tables/4/4.2.0.6.table +++ b/definitions/grib2/tables/4/4.2.0.6.table @@ -24,7 +24,5 @@ 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/definitions/grib2/tables/4/4.2.0.7.table b/definitions/grib2/tables/4/4.2.0.7.table index 78374fde5..16458be11 100644 --- a/definitions/grib2/tables/4/4.2.0.7.table +++ b/definitions/grib2/tables/4/4.2.0.7.table @@ -12,7 +12,5 @@ 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/definitions/grib2/tables/4/4.2.1.0.table b/definitions/grib2/tables/4/4.2.1.0.table index 1e867e1cb..828c869de 100644 --- a/definitions/grib2/tables/4/4.2.1.0.table +++ b/definitions/grib2/tables/4/4.2.1.0.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/4/4.2.1.1.table b/definitions/grib2/tables/4/4.2.1.1.table index b7342ef2f..f48c19e4d 100644 --- a/definitions/grib2/tables/4/4.2.1.1.table +++ b/definitions/grib2/tables/4/4.2.1.1.table @@ -2,7 +2,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) (%) -#3-191 Reserved -#192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/4/4.2.10.0.table b/definitions/grib2/tables/4/4.2.10.0.table index 479e26d51..5dc9bd64a 100644 --- a/definitions/grib2/tables/4/4.2.10.0.table +++ b/definitions/grib2/tables/4/4.2.10.0.table @@ -13,8 +13,6 @@ 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/definitions/grib2/tables/4/4.2.10.1.table b/definitions/grib2/tables/4/4.2.10.1.table index df18f31dd..b9b2bd024 100644 --- a/definitions/grib2/tables/4/4.2.10.1.table +++ b/definitions/grib2/tables/4/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/4/4.2.10.2.table b/definitions/grib2/tables/4/4.2.10.2.table index cb73da46c..8e5a41949 100644 --- a/definitions/grib2/tables/4/4.2.10.2.table +++ b/definitions/grib2/tables/4/4.2.10.2.table @@ -7,6 +7,4 @@ 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/definitions/grib2/tables/4/4.2.10.3.table b/definitions/grib2/tables/4/4.2.10.3.table index a14ae22e3..5315b46c6 100644 --- a/definitions/grib2/tables/4/4.2.10.3.table +++ b/definitions/grib2/tables/4/4.2.10.3.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/4/4.2.10.4.table b/definitions/grib2/tables/4/4.2.10.4.table index a24c3c8c4..c76136014 100644 --- a/definitions/grib2/tables/4/4.2.10.4.table +++ b/definitions/grib2/tables/4/4.2.10.4.table @@ -3,7 +3,5 @@ 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/definitions/grib2/tables/4/4.2.2.0.table b/definitions/grib2/tables/4/4.2.2.0.table index 67ad39b6c..2e64b8d80 100644 --- a/definitions/grib2/tables/4/4.2.2.0.table +++ b/definitions/grib2/tables/4/4.2.2.0.table @@ -23,7 +23,5 @@ 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/definitions/grib2/tables/4/4.2.2.3.table b/definitions/grib2/tables/4/4.2.2.3.table index d6376fecb..fcca2b27f 100644 --- a/definitions/grib2/tables/4/4.2.2.3.table +++ b/definitions/grib2/tables/4/4.2.2.3.table @@ -10,7 +10,5 @@ 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/definitions/grib2/tables/4/4.2.3.0.table b/definitions/grib2/tables/4/4.2.3.0.table index 944566388..209542d4e 100644 --- a/definitions/grib2/tables/4/4.2.3.0.table +++ b/definitions/grib2/tables/4/4.2.3.0.table @@ -8,7 +8,5 @@ 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/definitions/grib2/tables/4/4.2.3.1.table b/definitions/grib2/tables/4/4.2.3.1.table index 60d6e8420..2a34fc2c6 100644 --- a/definitions/grib2/tables/4/4.2.3.1.table +++ b/definitions/grib2/tables/4/4.2.3.1.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/4/4.230.table b/definitions/grib2/tables/4/4.230.table index 638358ead..db1211ab6 100644 --- a/definitions/grib2/tables/4/4.230.table +++ b/definitions/grib2/tables/4/4.230.table @@ -27,7 +27,6 @@ 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 @@ -42,6 +41,4 @@ 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/definitions/grib2/tables/4/4.3.table b/definitions/grib2/tables/4/4.3.table index 84a72352b..c786df210 100644 --- a/definitions/grib2/tables/4/4.3.table +++ b/definitions/grib2/tables/4/4.3.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/4/4.4.table b/definitions/grib2/tables/4/4.4.table index 61aa20c5f..ae3c412b5 100644 --- a/definitions/grib2/tables/4/4.4.table +++ b/definitions/grib2/tables/4/4.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/4/4.5.table b/definitions/grib2/tables/4/4.5.table index d2a6d7876..584a8c784 100644 --- a/definitions/grib2/tables/4/4.5.table +++ b/definitions/grib2/tables/4/4.5.table @@ -9,9 +9,7 @@ 7 sfc 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) @@ -24,10 +22,6 @@ 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/definitions/grib2/tables/4/4.6.table b/definitions/grib2/tables/4/4.6.table index dc6d94c20..2147b6e13 100644 --- a/definitions/grib2/tables/4/4.6.table +++ b/definitions/grib2/tables/4/4.6.table @@ -4,5 +4,4 @@ 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/definitions/grib2/tables/4/5.0.table b/definitions/grib2/tables/4/5.0.table index b9b301151..7613820fc 100644 --- a/definitions/grib2/tables/4/5.0.table +++ b/definitions/grib2/tables/4/5.0.table @@ -9,7 +9,6 @@ 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/definitions/grib2/tables/4/5.1.table b/definitions/grib2/tables/4/5.1.table index d7ca4bedc..52ac8d861 100644 --- a/definitions/grib2/tables/4/5.1.table +++ b/definitions/grib2/tables/4/5.1.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/4/5.2.table b/definitions/grib2/tables/4/5.2.table index a048d712e..040c7fd6d 100644 --- a/definitions/grib2/tables/4/5.2.table +++ b/definitions/grib2/tables/4/5.2.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/4/5.3.table b/definitions/grib2/tables/4/5.3.table index 4a673ef85..e92a2b74c 100644 --- a/definitions/grib2/tables/4/5.3.table +++ b/definitions/grib2/tables/4/5.3.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/4/5.4.table b/definitions/grib2/tables/4/5.4.table index 1fd37966f..aed51082a 100644 --- a/definitions/grib2/tables/4/5.4.table +++ b/definitions/grib2/tables/4/5.4.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/4/5.40.table b/definitions/grib2/tables/4/5.40.table index 1eef7c763..a31bebc59 100644 --- a/definitions/grib2/tables/4/5.40.table +++ b/definitions/grib2/tables/4/5.40.table @@ -1,5 +1,4 @@ # Code Table 5.40: Type of Compression 0 0 Lossless 1 1 Lossy -#2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/4/5.5.table b/definitions/grib2/tables/4/5.5.table index d1caac9e8..2143388cb 100644 --- a/definitions/grib2/tables/4/5.5.table +++ b/definitions/grib2/tables/4/5.5.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/5/0.0.table b/definitions/grib2/tables/5/0.0.table index fd2056350..39475306e 100644 --- a/definitions/grib2/tables/5/0.0.table +++ b/definitions/grib2/tables/5/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/5/1.2.table b/definitions/grib2/tables/5/1.2.table index eb8755209..65b1aca9a 100644 --- a/definitions/grib2/tables/5/1.2.table +++ b/definitions/grib2/tables/5/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/5/1.3.table b/definitions/grib2/tables/5/1.3.table index d4ed48c63..d2a1c2770 100644 --- a/definitions/grib2/tables/5/1.3.table +++ b/definitions/grib2/tables/5/1.3.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/5/1.4.table b/definitions/grib2/tables/5/1.4.table index 8166b7761..058f301af 100644 --- a/definitions/grib2/tables/5/1.4.table +++ b/definitions/grib2/tables/5/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/5/3.0.table b/definitions/grib2/tables/5/3.0.table index 6030a5132..4f4fd7be4 100644 --- a/definitions/grib2/tables/5/3.0.table +++ b/definitions/grib2/tables/5/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/5/3.1.table b/definitions/grib2/tables/5/3.1.table index a989a78a9..837586d9a 100644 --- a/definitions/grib2/tables/5/3.1.table +++ b/definitions/grib2/tables/5/3.1.table @@ -3,41 +3,25 @@ 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/definitions/grib2/tables/5/3.15.table b/definitions/grib2/tables/5/3.15.table index 6a035be56..d4f7e0ed2 100644 --- a/definitions/grib2/tables/5/3.15.table +++ b/definitions/grib2/tables/5/3.15.table @@ -1,7 +1,5 @@ # 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 @@ -15,8 +13,5 @@ 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/definitions/grib2/tables/5/3.2.table b/definitions/grib2/tables/5/3.2.table index d037ee120..2bf054512 100644 --- a/definitions/grib2/tables/5/3.2.table +++ b/definitions/grib2/tables/5/3.2.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/5/3.20.table b/definitions/grib2/tables/5/3.20.table index cfa35ae38..f79d193b6 100644 --- a/definitions/grib2/tables/5/3.20.table +++ b/definitions/grib2/tables/5/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/5/3.21.table b/definitions/grib2/tables/5/3.21.table index c2fd94586..d42c900cb 100644 --- a/definitions/grib2/tables/5/3.21.table +++ b/definitions/grib2/tables/5/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/5/3.7.table b/definitions/grib2/tables/5/3.7.table index b57c480a4..5937ea14d 100644 --- a/definitions/grib2/tables/5/3.7.table +++ b/definitions/grib2/tables/5/3.7.table @@ -1,5 +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) -# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/5/3.8.table b/definitions/grib2/tables/5/3.8.table index 0d9b7d001..a6b503617 100644 --- a/definitions/grib2/tables/5/3.8.table +++ b/definitions/grib2/tables/5/3.8.table @@ -2,7 +2,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 -#3-191 Reserved -#192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/5/4.1.0.table b/definitions/grib2/tables/5/4.1.0.table index 33d1c3984..d9660f77e 100644 --- a/definitions/grib2/tables/5/4.1.0.table +++ b/definitions/grib2/tables/5/4.1.0.table @@ -21,10 +21,8 @@ 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/definitions/grib2/tables/5/4.1.1.table b/definitions/grib2/tables/5/4.1.1.table index ebb7d9ea0..220c7fd5a 100644 --- a/definitions/grib2/tables/5/4.1.1.table +++ b/definitions/grib2/tables/5/4.1.1.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/5/4.1.10.table b/definitions/grib2/tables/5/4.1.10.table index 45b08caaa..5593171ac 100644 --- a/definitions/grib2/tables/5/4.1.10.table +++ b/definitions/grib2/tables/5/4.1.10.table @@ -5,8 +5,6 @@ 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/definitions/grib2/tables/5/4.1.2.table b/definitions/grib2/tables/5/4.1.2.table index f7f2ea2ba..0426852f0 100644 --- a/definitions/grib2/tables/5/4.1.2.table +++ b/definitions/grib2/tables/5/4.1.2.table @@ -4,8 +4,6 @@ 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/definitions/grib2/tables/5/4.1.3.table b/definitions/grib2/tables/5/4.1.3.table index f7578e163..744f02eba 100644 --- a/definitions/grib2/tables/5/4.1.3.table +++ b/definitions/grib2/tables/5/4.1.3.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/5/4.10.table b/definitions/grib2/tables/5/4.10.table index 9cf447b69..94bf593af 100644 --- a/definitions/grib2/tables/5/4.10.table +++ b/definitions/grib2/tables/5/4.10.table @@ -10,5 +10,4 @@ 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/definitions/grib2/tables/5/4.11.table b/definitions/grib2/tables/5/4.11.table index 68901aac4..28c7ebbd3 100644 --- a/definitions/grib2/tables/5/4.11.table +++ b/definitions/grib2/tables/5/4.11.table @@ -5,5 +5,4 @@ 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/definitions/grib2/tables/5/4.15.table b/definitions/grib2/tables/5/4.15.table index 504128024..fce304fe2 100644 --- a/definitions/grib2/tables/5/4.15.table +++ b/definitions/grib2/tables/5/4.15.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/5/4.2.0.20.table b/definitions/grib2/tables/5/4.2.0.20.table index 4d762c38e..2a66a0fe3 100644 --- a/definitions/grib2/tables/5/4.2.0.20.table +++ b/definitions/grib2/tables/5/4.2.0.20.table @@ -7,7 +7,6 @@ 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 @@ -17,10 +16,7 @@ 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/definitions/grib2/tables/5/4.203.table b/definitions/grib2/tables/5/4.203.table index 057f40910..d7a750534 100644 --- a/definitions/grib2/tables/5/4.203.table +++ b/definitions/grib2/tables/5/4.203.table @@ -21,5 +21,4 @@ 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/definitions/grib2/tables/5/4.230.table b/definitions/grib2/tables/5/4.230.table index 7bcbe3043..630393b96 100644 --- a/definitions/grib2/tables/5/4.230.table +++ b/definitions/grib2/tables/5/4.230.table @@ -62,7 +62,6 @@ 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 diff --git a/definitions/grib2/tables/5/4.3.table b/definitions/grib2/tables/5/4.3.table index 84a72352b..c786df210 100644 --- a/definitions/grib2/tables/5/4.3.table +++ b/definitions/grib2/tables/5/4.3.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/5/4.4.table b/definitions/grib2/tables/5/4.4.table index 61aa20c5f..ae3c412b5 100644 --- a/definitions/grib2/tables/5/4.4.table +++ b/definitions/grib2/tables/5/4.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/5/4.5.table b/definitions/grib2/tables/5/4.5.table index 5e8573cca..0e93b8b2e 100644 --- a/definitions/grib2/tables/5/4.5.table +++ b/definitions/grib2/tables/5/4.5.table @@ -12,9 +12,7 @@ 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) @@ -27,12 +25,8 @@ 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/definitions/grib2/tables/5/4.6.table b/definitions/grib2/tables/5/4.6.table index dc6d94c20..2147b6e13 100644 --- a/definitions/grib2/tables/5/4.6.table +++ b/definitions/grib2/tables/5/4.6.table @@ -4,5 +4,4 @@ 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/definitions/grib2/tables/5/5.0.table b/definitions/grib2/tables/5/5.0.table index ccf4f88cb..c6d03bef7 100644 --- a/definitions/grib2/tables/5/5.0.table +++ b/definitions/grib2/tables/5/5.0.table @@ -9,7 +9,6 @@ 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/definitions/grib2/tables/5/5.1.table b/definitions/grib2/tables/5/5.1.table index d7ca4bedc..52ac8d861 100644 --- a/definitions/grib2/tables/5/5.1.table +++ b/definitions/grib2/tables/5/5.1.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/5/5.2.table b/definitions/grib2/tables/5/5.2.table index a048d712e..040c7fd6d 100644 --- a/definitions/grib2/tables/5/5.2.table +++ b/definitions/grib2/tables/5/5.2.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/5/5.3.table b/definitions/grib2/tables/5/5.3.table index 4a673ef85..e92a2b74c 100644 --- a/definitions/grib2/tables/5/5.3.table +++ b/definitions/grib2/tables/5/5.3.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/5/5.4.table b/definitions/grib2/tables/5/5.4.table index 1fd37966f..aed51082a 100644 --- a/definitions/grib2/tables/5/5.4.table +++ b/definitions/grib2/tables/5/5.4.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/5/5.40.table b/definitions/grib2/tables/5/5.40.table index 1eef7c763..a31bebc59 100644 --- a/definitions/grib2/tables/5/5.40.table +++ b/definitions/grib2/tables/5/5.40.table @@ -1,5 +1,4 @@ # Code Table 5.40: Type of Compression 0 0 Lossless 1 1 Lossy -#2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/5/5.5.table b/definitions/grib2/tables/5/5.5.table index d1caac9e8..2143388cb 100644 --- a/definitions/grib2/tables/5/5.5.table +++ b/definitions/grib2/tables/5/5.5.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/6/0.0.table b/definitions/grib2/tables/6/0.0.table index fd2056350..39475306e 100644 --- a/definitions/grib2/tables/6/0.0.table +++ b/definitions/grib2/tables/6/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/6/1.2.table b/definitions/grib2/tables/6/1.2.table index eb8755209..65b1aca9a 100644 --- a/definitions/grib2/tables/6/1.2.table +++ b/definitions/grib2/tables/6/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/6/1.3.table b/definitions/grib2/tables/6/1.3.table index d4ed48c63..d2a1c2770 100644 --- a/definitions/grib2/tables/6/1.3.table +++ b/definitions/grib2/tables/6/1.3.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/6/1.4.table b/definitions/grib2/tables/6/1.4.table index 8166b7761..058f301af 100644 --- a/definitions/grib2/tables/6/1.4.table +++ b/definitions/grib2/tables/6/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/6/3.0.table b/definitions/grib2/tables/6/3.0.table index 6030a5132..4f4fd7be4 100644 --- a/definitions/grib2/tables/6/3.0.table +++ b/definitions/grib2/tables/6/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/6/3.1.table b/definitions/grib2/tables/6/3.1.table index 235fb8bd3..6ad006cb0 100644 --- a/definitions/grib2/tables/6/3.1.table +++ b/definitions/grib2/tables/6/3.1.table @@ -3,41 +3,25 @@ 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/definitions/grib2/tables/6/3.15.table b/definitions/grib2/tables/6/3.15.table index b3adaeb33..d4f7e0ed2 100644 --- a/definitions/grib2/tables/6/3.15.table +++ b/definitions/grib2/tables/6/3.15.table @@ -1,6 +1,5 @@ # 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 @@ -14,8 +13,5 @@ 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/definitions/grib2/tables/6/3.2.table b/definitions/grib2/tables/6/3.2.table index d037ee120..2bf054512 100644 --- a/definitions/grib2/tables/6/3.2.table +++ b/definitions/grib2/tables/6/3.2.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/6/3.20.table b/definitions/grib2/tables/6/3.20.table index cfa35ae38..f79d193b6 100644 --- a/definitions/grib2/tables/6/3.20.table +++ b/definitions/grib2/tables/6/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/6/3.21.table b/definitions/grib2/tables/6/3.21.table index c2fd94586..d42c900cb 100644 --- a/definitions/grib2/tables/6/3.21.table +++ b/definitions/grib2/tables/6/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/6/3.8.table b/definitions/grib2/tables/6/3.8.table index 0d9b7d001..a6b503617 100644 --- a/definitions/grib2/tables/6/3.8.table +++ b/definitions/grib2/tables/6/3.8.table @@ -2,7 +2,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 -#3-191 Reserved -#192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.0.table b/definitions/grib2/tables/6/4.0.table index e7e441f40..a1c1fb7b3 100644 --- a/definitions/grib2/tables/6/4.0.table +++ b/definitions/grib2/tables/6/4.0.table @@ -15,7 +15,6 @@ 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 diff --git a/definitions/grib2/tables/6/4.1.0.table b/definitions/grib2/tables/6/4.1.0.table index 33d1c3984..d9660f77e 100644 --- a/definitions/grib2/tables/6/4.1.0.table +++ b/definitions/grib2/tables/6/4.1.0.table @@ -21,10 +21,8 @@ 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/definitions/grib2/tables/6/4.1.1.table b/definitions/grib2/tables/6/4.1.1.table index ebb7d9ea0..220c7fd5a 100644 --- a/definitions/grib2/tables/6/4.1.1.table +++ b/definitions/grib2/tables/6/4.1.1.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/6/4.1.10.table b/definitions/grib2/tables/6/4.1.10.table index 45b08caaa..5593171ac 100644 --- a/definitions/grib2/tables/6/4.1.10.table +++ b/definitions/grib2/tables/6/4.1.10.table @@ -5,8 +5,6 @@ 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/definitions/grib2/tables/6/4.1.2.table b/definitions/grib2/tables/6/4.1.2.table index f7f2ea2ba..0426852f0 100644 --- a/definitions/grib2/tables/6/4.1.2.table +++ b/definitions/grib2/tables/6/4.1.2.table @@ -4,8 +4,6 @@ 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/definitions/grib2/tables/6/4.1.3.table b/definitions/grib2/tables/6/4.1.3.table index f7578e163..744f02eba 100644 --- a/definitions/grib2/tables/6/4.1.3.table +++ b/definitions/grib2/tables/6/4.1.3.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/6/4.10.table b/definitions/grib2/tables/6/4.10.table index 9cf447b69..94bf593af 100644 --- a/definitions/grib2/tables/6/4.10.table +++ b/definitions/grib2/tables/6/4.10.table @@ -10,5 +10,4 @@ 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/definitions/grib2/tables/6/4.11.table b/definitions/grib2/tables/6/4.11.table index 68901aac4..28c7ebbd3 100644 --- a/definitions/grib2/tables/6/4.11.table +++ b/definitions/grib2/tables/6/4.11.table @@ -5,5 +5,4 @@ 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/definitions/grib2/tables/6/4.12.table b/definitions/grib2/tables/6/4.12.table index 847e21317..689d30815 100644 --- a/definitions/grib2/tables/6/4.12.table +++ b/definitions/grib2/tables/6/4.12.table @@ -2,5 +2,4 @@ 0 0 Maintenance Mode 1 1 Clear air 2 2 Precipitation -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.13.table b/definitions/grib2/tables/6/4.13.table index 29ddf2a3c..255f90b78 100644 --- a/definitions/grib2/tables/6/4.13.table +++ b/definitions/grib2/tables/6/4.13.table @@ -1,5 +1,4 @@ # CODE TABLE 4.13, Quality Control Indicator 0 0 No quality control applied 1 1 Quality control applied -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.14.table b/definitions/grib2/tables/6/4.14.table index e19c14c2f..34b0931f7 100644 --- a/definitions/grib2/tables/6/4.14.table +++ b/definitions/grib2/tables/6/4.14.table @@ -1,5 +1,4 @@ # CODE TABLE 4.14, Clutter Filter Indicator 0 0 No clutter filter used 1 1 Clutter filter used -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.15.table b/definitions/grib2/tables/6/4.15.table index 504128024..fce304fe2 100644 --- a/definitions/grib2/tables/6/4.15.table +++ b/definitions/grib2/tables/6/4.15.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/6/4.151.table b/definitions/grib2/tables/6/4.151.table index 30487afb4..90a8c6ca0 100644 --- a/definitions/grib2/tables/6/4.151.table +++ b/definitions/grib2/tables/6/4.151.table @@ -3,5 +3,4 @@ 1 1 suspect 2 2 acceptable 3 3 excellent -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.2.10.191.table b/definitions/grib2/tables/6/4.2.10.191.table index 72cf1ce97..c76f2d6a8 100644 --- a/definitions/grib2/tables/6/4.2.10.191.table +++ b/definitions/grib2/tables/6/4.2.10.191.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/6/4.201.table b/definitions/grib2/tables/6/4.201.table index bd20dd356..d2da38501 100644 --- a/definitions/grib2/tables/6/4.201.table +++ b/definitions/grib2/tables/6/4.201.table @@ -4,5 +4,4 @@ 3 3 Freezing rain 4 4 Mixed/ice 5 5 Snow -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.202.table b/definitions/grib2/tables/6/4.202.table index 242f2d5af..8044d02aa 100644 --- a/definitions/grib2/tables/6/4.202.table +++ b/definitions/grib2/tables/6/4.202.table @@ -1,3 +1,2 @@ # CODE TABLE 4.202, Precipitable water category -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.203.table b/definitions/grib2/tables/6/4.203.table index 057f40910..d7a750534 100644 --- a/definitions/grib2/tables/6/4.203.table +++ b/definitions/grib2/tables/6/4.203.table @@ -21,5 +21,4 @@ 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/definitions/grib2/tables/6/4.204.table b/definitions/grib2/tables/6/4.204.table index 41b47ef7c..eebc517a6 100644 --- a/definitions/grib2/tables/6/4.204.table +++ b/definitions/grib2/tables/6/4.204.table @@ -4,5 +4,4 @@ 2 2 Few (3% - 15%) 3 3 Scattered (16% - 45%) 4 4 Numerous (> 45%) -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.205.table b/definitions/grib2/tables/6/4.205.table index 179b09e08..10a1f5bbf 100644 --- a/definitions/grib2/tables/6/4.205.table +++ b/definitions/grib2/tables/6/4.205.table @@ -1,5 +1,4 @@ # CODE TABLE 4.205, Aerosol type 0 0 Aerosol not present 1 1 Aerosol present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.206.table b/definitions/grib2/tables/6/4.206.table index ea5bfcbc2..33353e74b 100644 --- a/definitions/grib2/tables/6/4.206.table +++ b/definitions/grib2/tables/6/4.206.table @@ -1,5 +1,4 @@ # CODE TABLE 4.206, Volcanic ash 0 0 Not present 1 1 Present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.207.table b/definitions/grib2/tables/6/4.207.table index 1fa48a194..d92a6b811 100644 --- a/definitions/grib2/tables/6/4.207.table +++ b/definitions/grib2/tables/6/4.207.table @@ -3,5 +3,4 @@ 1 1 Light 2 2 Moderate 3 3 Severe -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.208.table b/definitions/grib2/tables/6/4.208.table index 902d03a57..a14539b22 100644 --- a/definitions/grib2/tables/6/4.208.table +++ b/definitions/grib2/tables/6/4.208.table @@ -4,5 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.209.table b/definitions/grib2/tables/6/4.209.table index 7218049e4..e0c422325 100644 --- a/definitions/grib2/tables/6/4.209.table +++ b/definitions/grib2/tables/6/4.209.table @@ -3,5 +3,4 @@ 2 2 Mechanically driven turbulence 3 3 Forced convection 4 4 Free convection -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.210.table b/definitions/grib2/tables/6/4.210.table index 53ae41be2..58bdd2da3 100644 --- a/definitions/grib2/tables/6/4.210.table +++ b/definitions/grib2/tables/6/4.210.table @@ -1,5 +1,4 @@ # CODE TABLE 4.210, Contrail intensity 0 0 Contrail not present 1 1 Contrail present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.211.table b/definitions/grib2/tables/6/4.211.table index 56565001c..01bb27657 100644 --- a/definitions/grib2/tables/6/4.211.table +++ b/definitions/grib2/tables/6/4.211.table @@ -2,5 +2,4 @@ 0 0 Low bypass 1 1 High bypass 2 2 Non bypass -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.212.table b/definitions/grib2/tables/6/4.212.table index 10f38d1ef..e7274d600 100644 --- a/definitions/grib2/tables/6/4.212.table +++ b/definitions/grib2/tables/6/4.212.table @@ -12,5 +12,4 @@ 11 11 Ice 12 12 Tropical forest 13 13 Savannah -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.213.table b/definitions/grib2/tables/6/4.213.table index 199042325..4bf4f0ab0 100644 --- a/definitions/grib2/tables/6/4.213.table +++ b/definitions/grib2/tables/6/4.213.table @@ -10,5 +10,4 @@ 9 9 Sandy clay 10 10 Silty clay 11 11 Clay -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.217.table b/definitions/grib2/tables/6/4.217.table index 2bd70f1d3..032b14964 100644 --- a/definitions/grib2/tables/6/4.217.table +++ b/definitions/grib2/tables/6/4.217.table @@ -3,5 +3,4 @@ 1 1 Clear over land 2 2 Cloud 3 3 No data -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.220.table b/definitions/grib2/tables/6/4.220.table index ea7c55e48..d2efbaae3 100644 --- a/definitions/grib2/tables/6/4.220.table +++ b/definitions/grib2/tables/6/4.220.table @@ -1,5 +1,4 @@ # CODE TABLE 4.220, Horizontal dimension processed 0 0 Latitude 1 1 Longitude -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.221.table b/definitions/grib2/tables/6/4.221.table index d63c545c5..27775d7d0 100644 --- a/definitions/grib2/tables/6/4.221.table +++ b/definitions/grib2/tables/6/4.221.table @@ -1,5 +1,4 @@ # CODE TABLE 4.221, Treatment of missing data 0 0 Not included 1 1 Extrapolated -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.230.table b/definitions/grib2/tables/6/4.230.table index 7bcbe3043..630393b96 100644 --- a/definitions/grib2/tables/6/4.230.table +++ b/definitions/grib2/tables/6/4.230.table @@ -62,7 +62,6 @@ 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 diff --git a/definitions/grib2/tables/6/4.3.table b/definitions/grib2/tables/6/4.3.table index 47bccd26b..6cddace73 100644 --- a/definitions/grib2/tables/6/4.3.table +++ b/definitions/grib2/tables/6/4.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/6/4.4.table b/definitions/grib2/tables/6/4.4.table index 61aa20c5f..ae3c412b5 100644 --- a/definitions/grib2/tables/6/4.4.table +++ b/definitions/grib2/tables/6/4.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/6/4.5.table b/definitions/grib2/tables/6/4.5.table index 5b80a90fc..81dae2dd3 100644 --- a/definitions/grib2/tables/6/4.5.table +++ b/definitions/grib2/tables/6/4.5.table @@ -12,9 +12,7 @@ 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) @@ -27,12 +25,8 @@ 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/definitions/grib2/tables/6/4.6.table b/definitions/grib2/tables/6/4.6.table index 300113b0f..5787dd26f 100644 --- a/definitions/grib2/tables/6/4.6.table +++ b/definitions/grib2/tables/6/4.6.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/6/4.7.table b/definitions/grib2/tables/6/4.7.table index 118508672..1dfaf3f0e 100644 --- a/definitions/grib2/tables/6/4.7.table +++ b/definitions/grib2/tables/6/4.7.table @@ -6,5 +6,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.8.table b/definitions/grib2/tables/6/4.8.table index bba75820a..47d463adf 100644 --- a/definitions/grib2/tables/6/4.8.table +++ b/definitions/grib2/tables/6/4.8.table @@ -1,5 +1,4 @@ # CODE TABLE 4.8, Clustering Method 0 0 Anomaly correlation 1 1 Root mean square -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.9.table b/definitions/grib2/tables/6/4.9.table index cd80b7818..95738e5bc 100644 --- a/definitions/grib2/tables/6/4.9.table +++ b/definitions/grib2/tables/6/4.9.table @@ -5,5 +5,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/6/4.91.table b/definitions/grib2/tables/6/4.91.table index f9606f201..8d2975f84 100644 --- a/definitions/grib2/tables/6/4.91.table +++ b/definitions/grib2/tables/6/4.91.table @@ -11,5 +11,4 @@ 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-254 Reserved for local use 255 missing Missing diff --git a/definitions/grib2/tables/6/5.0.table b/definitions/grib2/tables/6/5.0.table index ccf4f88cb..c6d03bef7 100644 --- a/definitions/grib2/tables/6/5.0.table +++ b/definitions/grib2/tables/6/5.0.table @@ -9,7 +9,6 @@ 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/definitions/grib2/tables/6/5.1.table b/definitions/grib2/tables/6/5.1.table index d7ca4bedc..52ac8d861 100644 --- a/definitions/grib2/tables/6/5.1.table +++ b/definitions/grib2/tables/6/5.1.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/6/5.2.table b/definitions/grib2/tables/6/5.2.table index a048d712e..040c7fd6d 100644 --- a/definitions/grib2/tables/6/5.2.table +++ b/definitions/grib2/tables/6/5.2.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/6/5.3.table b/definitions/grib2/tables/6/5.3.table index 4a673ef85..e92a2b74c 100644 --- a/definitions/grib2/tables/6/5.3.table +++ b/definitions/grib2/tables/6/5.3.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/6/5.4.table b/definitions/grib2/tables/6/5.4.table index 1fd37966f..aed51082a 100644 --- a/definitions/grib2/tables/6/5.4.table +++ b/definitions/grib2/tables/6/5.4.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/6/5.40.table b/definitions/grib2/tables/6/5.40.table index 1eef7c763..a31bebc59 100644 --- a/definitions/grib2/tables/6/5.40.table +++ b/definitions/grib2/tables/6/5.40.table @@ -1,5 +1,4 @@ # Code Table 5.40: Type of Compression 0 0 Lossless 1 1 Lossy -#2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/6/5.5.table b/definitions/grib2/tables/6/5.5.table index d1caac9e8..2143388cb 100644 --- a/definitions/grib2/tables/6/5.5.table +++ b/definitions/grib2/tables/6/5.5.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/6/5.6.table b/definitions/grib2/tables/6/5.6.table index 7dc16a994..aaf705d48 100644 --- a/definitions/grib2/tables/6/5.6.table +++ b/definitions/grib2/tables/6/5.6.table @@ -2,5 +2,4 @@ 1 1 First-order spatial differencing 2 2 Second-order spatial differencing -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/0.0.table b/definitions/grib2/tables/7/0.0.table index fd2056350..39475306e 100644 --- a/definitions/grib2/tables/7/0.0.table +++ b/definitions/grib2/tables/7/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/7/1.2.table b/definitions/grib2/tables/7/1.2.table index eb8755209..65b1aca9a 100644 --- a/definitions/grib2/tables/7/1.2.table +++ b/definitions/grib2/tables/7/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/7/1.3.table b/definitions/grib2/tables/7/1.3.table index 14667f9b8..40a139a24 100644 --- a/definitions/grib2/tables/7/1.3.table +++ b/definitions/grib2/tables/7/1.3.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/7/1.4.table b/definitions/grib2/tables/7/1.4.table index 997bfda9d..9ba78e668 100644 --- a/definitions/grib2/tables/7/1.4.table +++ b/definitions/grib2/tables/7/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/7/3.0.table b/definitions/grib2/tables/7/3.0.table index b01b00c64..b6aa6b18d 100644 --- a/definitions/grib2/tables/7/3.0.table +++ b/definitions/grib2/tables/7/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/7/3.1.table b/definitions/grib2/tables/7/3.1.table index ee6412390..83fd85cf2 100644 --- a/definitions/grib2/tables/7/3.1.table +++ b/definitions/grib2/tables/7/3.1.table @@ -3,41 +3,25 @@ 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/definitions/grib2/tables/7/3.10.table b/definitions/grib2/tables/7/3.10.table index 04686d32e..ec463ef0b 100644 --- a/definitions/grib2/tables/7/3.10.table +++ b/definitions/grib2/tables/7/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/7/3.11.table b/definitions/grib2/tables/7/3.11.table index b82a94f28..3b243b661 100644 --- a/definitions/grib2/tables/7/3.11.table +++ b/definitions/grib2/tables/7/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/7/3.2.table b/definitions/grib2/tables/7/3.2.table index 522e8731c..9f22f83e9 100644 --- a/definitions/grib2/tables/7/3.2.table +++ b/definitions/grib2/tables/7/3.2.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/7/3.20.table b/definitions/grib2/tables/7/3.20.table index cfa35ae38..f79d193b6 100644 --- a/definitions/grib2/tables/7/3.20.table +++ b/definitions/grib2/tables/7/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/7/3.21.table b/definitions/grib2/tables/7/3.21.table index 460303537..63de8ba93 100644 --- a/definitions/grib2/tables/7/3.21.table +++ b/definitions/grib2/tables/7/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/7/3.3.table b/definitions/grib2/tables/7/3.3.table index e662b20f2..6a11e242c 100644 --- a/definitions/grib2/tables/7/3.3.table +++ b/definitions/grib2/tables/7/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/7/3.4.table b/definitions/grib2/tables/7/3.4.table index d3cad225c..51d0664b2 100644 --- a/definitions/grib2/tables/7/3.4.table +++ b/definitions/grib2/tables/7/3.4.table @@ -7,4 +7,3 @@ 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/definitions/grib2/tables/7/3.8.table b/definitions/grib2/tables/7/3.8.table index 0d9b7d001..a6b503617 100644 --- a/definitions/grib2/tables/7/3.8.table +++ b/definitions/grib2/tables/7/3.8.table @@ -2,7 +2,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 -#3-191 Reserved -#192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/3.9.table b/definitions/grib2/tables/7/3.9.table index cc2e6104b..e95fb5922 100644 --- a/definitions/grib2/tables/7/3.9.table +++ b/definitions/grib2/tables/7/3.9.table @@ -1,4 +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 -# 2-8 Reserved diff --git a/definitions/grib2/tables/7/4.0.table b/definitions/grib2/tables/7/4.0.table index 97223a788..b72c6a584 100644 --- a/definitions/grib2/tables/7/4.0.table +++ b/definitions/grib2/tables/7/4.0.table @@ -15,13 +15,10 @@ 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 @@ -33,21 +30,15 @@ 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/definitions/grib2/tables/7/4.1.0.table b/definitions/grib2/tables/7/4.1.0.table index 65d694699..78c2e5cbd 100644 --- a/definitions/grib2/tables/7/4.1.0.table +++ b/definitions/grib2/tables/7/4.1.0.table @@ -21,8 +21,6 @@ 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/definitions/grib2/tables/7/4.1.1.table b/definitions/grib2/tables/7/4.1.1.table index ebb7d9ea0..220c7fd5a 100644 --- a/definitions/grib2/tables/7/4.1.1.table +++ b/definitions/grib2/tables/7/4.1.1.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/7/4.1.10.table b/definitions/grib2/tables/7/4.1.10.table index 9c1bfc31b..bd45687bf 100644 --- a/definitions/grib2/tables/7/4.1.10.table +++ b/definitions/grib2/tables/7/4.1.10.table @@ -5,7 +5,5 @@ 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/definitions/grib2/tables/7/4.1.2.table b/definitions/grib2/tables/7/4.1.2.table index 34e0423bf..e15bd8d55 100644 --- a/definitions/grib2/tables/7/4.1.2.table +++ b/definitions/grib2/tables/7/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/7/4.1.3.table b/definitions/grib2/tables/7/4.1.3.table index f7578e163..744f02eba 100644 --- a/definitions/grib2/tables/7/4.1.3.table +++ b/definitions/grib2/tables/7/4.1.3.table @@ -2,8 +2,6 @@ #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/definitions/grib2/tables/7/4.10.table b/definitions/grib2/tables/7/4.10.table index e25f8cafd..5ecfe1836 100644 --- a/definitions/grib2/tables/7/4.10.table +++ b/definitions/grib2/tables/7/4.10.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/7/4.11.table b/definitions/grib2/tables/7/4.11.table index 30b90be0d..2454aa234 100644 --- a/definitions/grib2/tables/7/4.11.table +++ b/definitions/grib2/tables/7/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/7/4.12.table b/definitions/grib2/tables/7/4.12.table index b119996a6..6ad61a7b0 100644 --- a/definitions/grib2/tables/7/4.12.table +++ b/definitions/grib2/tables/7/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/7/4.13.table b/definitions/grib2/tables/7/4.13.table index 29ddf2a3c..255f90b78 100644 --- a/definitions/grib2/tables/7/4.13.table +++ b/definitions/grib2/tables/7/4.13.table @@ -1,5 +1,4 @@ # CODE TABLE 4.13, Quality Control Indicator 0 0 No quality control applied 1 1 Quality control applied -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.14.table b/definitions/grib2/tables/7/4.14.table index e19c14c2f..34b0931f7 100644 --- a/definitions/grib2/tables/7/4.14.table +++ b/definitions/grib2/tables/7/4.14.table @@ -1,5 +1,4 @@ # CODE TABLE 4.14, Clutter Filter Indicator 0 0 No clutter filter used 1 1 Clutter filter used -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.15.table b/definitions/grib2/tables/7/4.15.table index 504128024..fce304fe2 100644 --- a/definitions/grib2/tables/7/4.15.table +++ b/definitions/grib2/tables/7/4.15.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/7/4.151.table b/definitions/grib2/tables/7/4.151.table index 30487afb4..90a8c6ca0 100644 --- a/definitions/grib2/tables/7/4.151.table +++ b/definitions/grib2/tables/7/4.151.table @@ -3,5 +3,4 @@ 1 1 suspect 2 2 acceptable 3 3 excellent -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.2.0.0.table b/definitions/grib2/tables/7/4.2.0.0.table index 6ed6b944a..98fc9552d 100644 --- a/definitions/grib2/tables/7/4.2.0.0.table +++ b/definitions/grib2/tables/7/4.2.0.0.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/7/4.2.0.1.table b/definitions/grib2/tables/7/4.2.0.1.table index 95e016a2a..722e1ab58 100644 --- a/definitions/grib2/tables/7/4.2.0.1.table +++ b/definitions/grib2/tables/7/4.2.0.1.table @@ -86,6 +86,4 @@ 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/definitions/grib2/tables/7/4.2.0.13.table b/definitions/grib2/tables/7/4.2.0.13.table index 58f38e3dd..8aaeeb308 100644 --- a/definitions/grib2/tables/7/4.2.0.13.table +++ b/definitions/grib2/tables/7/4.2.0.13.table @@ -1,5 +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) -#1-191 1-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) 255 255 Missing (-) diff --git a/definitions/grib2/tables/7/4.2.0.14.table b/definitions/grib2/tables/7/4.2.0.14.table index 23cae2c4c..230b0bb65 100644 --- a/definitions/grib2/tables/7/4.2.0.14.table +++ b/definitions/grib2/tables/7/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/7/4.2.0.15.table b/definitions/grib2/tables/7/4.2.0.15.table index a42e5b7d9..51ea2499f 100644 --- a/definitions/grib2/tables/7/4.2.0.15.table +++ b/definitions/grib2/tables/7/4.2.0.15.table @@ -14,6 +14,4 @@ 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/definitions/grib2/tables/7/4.2.0.16.table b/definitions/grib2/tables/7/4.2.0.16.table index e8a9d2be9..0b8fbd46a 100644 --- a/definitions/grib2/tables/7/4.2.0.16.table +++ b/definitions/grib2/tables/7/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/7/4.2.0.18.table b/definitions/grib2/tables/7/4.2.0.18.table index e6b3ab049..6de688a0b 100644 --- a/definitions/grib2/tables/7/4.2.0.18.table +++ b/definitions/grib2/tables/7/4.2.0.18.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/7/4.2.0.19.table b/definitions/grib2/tables/7/4.2.0.19.table index 46cb8515d..0af7a5191 100644 --- a/definitions/grib2/tables/7/4.2.0.19.table +++ b/definitions/grib2/tables/7/4.2.0.19.table @@ -26,6 +26,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/definitions/grib2/tables/7/4.2.0.190.table b/definitions/grib2/tables/7/4.2.0.190.table index faa27c532..378f9705f 100644 --- a/definitions/grib2/tables/7/4.2.0.190.table +++ b/definitions/grib2/tables/7/4.2.0.190.table @@ -1,5 +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) -#1-191 1-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) 255 255 Missing (-) diff --git a/definitions/grib2/tables/7/4.2.0.191.table b/definitions/grib2/tables/7/4.2.0.191.table index 6c40c61ce..feef9300e 100644 --- a/definitions/grib2/tables/7/4.2.0.191.table +++ b/definitions/grib2/tables/7/4.2.0.191.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/7/4.2.0.2.table b/definitions/grib2/tables/7/4.2.0.2.table index 8380d5160..efc60025d 100644 --- a/definitions/grib2/tables/7/4.2.0.2.table +++ b/definitions/grib2/tables/7/4.2.0.2.table @@ -32,6 +32,4 @@ 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/definitions/grib2/tables/7/4.2.0.20.table b/definitions/grib2/tables/7/4.2.0.20.table index ca4189468..e28466561 100644 --- a/definitions/grib2/tables/7/4.2.0.20.table +++ b/definitions/grib2/tables/7/4.2.0.20.table @@ -8,7 +8,6 @@ 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) @@ -18,9 +17,6 @@ 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/definitions/grib2/tables/7/4.2.0.3.table b/definitions/grib2/tables/7/4.2.0.3.table index ade052931..31f31d2e1 100644 --- a/definitions/grib2/tables/7/4.2.0.3.table +++ b/definitions/grib2/tables/7/4.2.0.3.table @@ -25,6 +25,4 @@ 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/definitions/grib2/tables/7/4.2.0.4.table b/definitions/grib2/tables/7/4.2.0.4.table index d22ce42d3..365fd98a1 100644 --- a/definitions/grib2/tables/7/4.2.0.4.table +++ b/definitions/grib2/tables/7/4.2.0.4.table @@ -12,9 +12,6 @@ 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/definitions/grib2/tables/7/4.2.0.5.table b/definitions/grib2/tables/7/4.2.0.5.table index 6128eb9c0..719325746 100644 --- a/definitions/grib2/tables/7/4.2.0.5.table +++ b/definitions/grib2/tables/7/4.2.0.5.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/7/4.2.0.6.table b/definitions/grib2/tables/7/4.2.0.6.table index b7f10a431..ca5688e25 100644 --- a/definitions/grib2/tables/7/4.2.0.6.table +++ b/definitions/grib2/tables/7/4.2.0.6.table @@ -26,7 +26,6 @@ 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) @@ -34,6 +33,4 @@ 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/definitions/grib2/tables/7/4.2.0.7.table b/definitions/grib2/tables/7/4.2.0.7.table index bced218f0..e233a8311 100644 --- a/definitions/grib2/tables/7/4.2.0.7.table +++ b/definitions/grib2/tables/7/4.2.0.7.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/7/4.2.1.0.table b/definitions/grib2/tables/7/4.2.1.0.table index 277ecf6d9..babfba396 100644 --- a/definitions/grib2/tables/7/4.2.1.0.table +++ b/definitions/grib2/tables/7/4.2.1.0.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/7/4.2.1.1.table b/definitions/grib2/tables/7/4.2.1.1.table index 979e94557..56bf798d4 100644 --- a/definitions/grib2/tables/7/4.2.1.1.table +++ b/definitions/grib2/tables/7/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/7/4.2.10.0.table b/definitions/grib2/tables/7/4.2.10.0.table index 7671a7a5c..b40fa4313 100644 --- a/definitions/grib2/tables/7/4.2.10.0.table +++ b/definitions/grib2/tables/7/4.2.10.0.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/7/4.2.10.1.table b/definitions/grib2/tables/7/4.2.10.1.table index cc238fbb1..d5514d76d 100644 --- a/definitions/grib2/tables/7/4.2.10.1.table +++ b/definitions/grib2/tables/7/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/7/4.2.10.191.table b/definitions/grib2/tables/7/4.2.10.191.table index 72cf1ce97..c76f2d6a8 100644 --- a/definitions/grib2/tables/7/4.2.10.191.table +++ b/definitions/grib2/tables/7/4.2.10.191.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/7/4.2.10.2.table b/definitions/grib2/tables/7/4.2.10.2.table index bf3dd9f12..48bd23ca7 100644 --- a/definitions/grib2/tables/7/4.2.10.2.table +++ b/definitions/grib2/tables/7/4.2.10.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/7/4.2.10.3.table b/definitions/grib2/tables/7/4.2.10.3.table index 62b2a8e83..949e05071 100644 --- a/definitions/grib2/tables/7/4.2.10.3.table +++ b/definitions/grib2/tables/7/4.2.10.3.table @@ -1,6 +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) -#2-191 2-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) 255 255 Missing (-) diff --git a/definitions/grib2/tables/7/4.2.10.4.table b/definitions/grib2/tables/7/4.2.10.4.table index a0d465e28..8d2ced728 100644 --- a/definitions/grib2/tables/7/4.2.10.4.table +++ b/definitions/grib2/tables/7/4.2.10.4.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/7/4.2.2.0.table b/definitions/grib2/tables/7/4.2.2.0.table index 948baa63c..a82307d23 100644 --- a/definitions/grib2/tables/7/4.2.2.0.table +++ b/definitions/grib2/tables/7/4.2.2.0.table @@ -32,6 +32,4 @@ 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/definitions/grib2/tables/7/4.2.2.3.table b/definitions/grib2/tables/7/4.2.2.3.table index 8f377590b..c46c49d9c 100644 --- a/definitions/grib2/tables/7/4.2.2.3.table +++ b/definitions/grib2/tables/7/4.2.2.3.table @@ -22,6 +22,4 @@ 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/definitions/grib2/tables/7/4.2.3.0.table b/definitions/grib2/tables/7/4.2.3.0.table index 119edb304..9d2ea2129 100644 --- a/definitions/grib2/tables/7/4.2.3.0.table +++ b/definitions/grib2/tables/7/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/7/4.2.3.1.table b/definitions/grib2/tables/7/4.2.3.1.table index d0a16c127..b146969d9 100644 --- a/definitions/grib2/tables/7/4.2.3.1.table +++ b/definitions/grib2/tables/7/4.2.3.1.table @@ -23,6 +23,4 @@ 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/definitions/grib2/tables/7/4.201.table b/definitions/grib2/tables/7/4.201.table index 29d8daad7..18941cf39 100644 --- a/definitions/grib2/tables/7/4.201.table +++ b/definitions/grib2/tables/7/4.201.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/7/4.202.table b/definitions/grib2/tables/7/4.202.table index 242f2d5af..8044d02aa 100644 --- a/definitions/grib2/tables/7/4.202.table +++ b/definitions/grib2/tables/7/4.202.table @@ -1,3 +1,2 @@ # CODE TABLE 4.202, Precipitable water category -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.203.table b/definitions/grib2/tables/7/4.203.table index 057f40910..d7a750534 100644 --- a/definitions/grib2/tables/7/4.203.table +++ b/definitions/grib2/tables/7/4.203.table @@ -21,5 +21,4 @@ 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/definitions/grib2/tables/7/4.204.table b/definitions/grib2/tables/7/4.204.table index 41b47ef7c..eebc517a6 100644 --- a/definitions/grib2/tables/7/4.204.table +++ b/definitions/grib2/tables/7/4.204.table @@ -4,5 +4,4 @@ 2 2 Few (3% - 15%) 3 3 Scattered (16% - 45%) 4 4 Numerous (> 45%) -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.205.table b/definitions/grib2/tables/7/4.205.table index 0e16fb9a9..08267bb19 100644 --- a/definitions/grib2/tables/7/4.205.table +++ b/definitions/grib2/tables/7/4.205.table @@ -1,5 +1,4 @@ # CODE TABLE 4.205, Presence of aerosol 0 0 Aerosol not present 1 1 Aerosol present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.206.table b/definitions/grib2/tables/7/4.206.table index ea5bfcbc2..33353e74b 100644 --- a/definitions/grib2/tables/7/4.206.table +++ b/definitions/grib2/tables/7/4.206.table @@ -1,5 +1,4 @@ # CODE TABLE 4.206, Volcanic ash 0 0 Not present 1 1 Present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.207.table b/definitions/grib2/tables/7/4.207.table index 1fa48a194..d92a6b811 100644 --- a/definitions/grib2/tables/7/4.207.table +++ b/definitions/grib2/tables/7/4.207.table @@ -3,5 +3,4 @@ 1 1 Light 2 2 Moderate 3 3 Severe -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.208.table b/definitions/grib2/tables/7/4.208.table index 902d03a57..a14539b22 100644 --- a/definitions/grib2/tables/7/4.208.table +++ b/definitions/grib2/tables/7/4.208.table @@ -4,5 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.209.table b/definitions/grib2/tables/7/4.209.table index 7218049e4..e0c422325 100644 --- a/definitions/grib2/tables/7/4.209.table +++ b/definitions/grib2/tables/7/4.209.table @@ -3,5 +3,4 @@ 2 2 Mechanically driven turbulence 3 3 Forced convection 4 4 Free convection -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.210.table b/definitions/grib2/tables/7/4.210.table index 53ae41be2..58bdd2da3 100644 --- a/definitions/grib2/tables/7/4.210.table +++ b/definitions/grib2/tables/7/4.210.table @@ -1,5 +1,4 @@ # CODE TABLE 4.210, Contrail intensity 0 0 Contrail not present 1 1 Contrail present -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.211.table b/definitions/grib2/tables/7/4.211.table index 56565001c..01bb27657 100644 --- a/definitions/grib2/tables/7/4.211.table +++ b/definitions/grib2/tables/7/4.211.table @@ -2,5 +2,4 @@ 0 0 Low bypass 1 1 High bypass 2 2 Non bypass -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.212.table b/definitions/grib2/tables/7/4.212.table index 10f38d1ef..e7274d600 100644 --- a/definitions/grib2/tables/7/4.212.table +++ b/definitions/grib2/tables/7/4.212.table @@ -12,5 +12,4 @@ 11 11 Ice 12 12 Tropical forest 13 13 Savannah -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.213.table b/definitions/grib2/tables/7/4.213.table index 199042325..4bf4f0ab0 100644 --- a/definitions/grib2/tables/7/4.213.table +++ b/definitions/grib2/tables/7/4.213.table @@ -10,5 +10,4 @@ 9 9 Sandy clay 10 10 Silty clay 11 11 Clay -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.217.table b/definitions/grib2/tables/7/4.217.table index 2bd70f1d3..032b14964 100644 --- a/definitions/grib2/tables/7/4.217.table +++ b/definitions/grib2/tables/7/4.217.table @@ -3,5 +3,4 @@ 1 1 Clear over land 2 2 Cloud 3 3 No data -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.220.table b/definitions/grib2/tables/7/4.220.table index ea7c55e48..d2efbaae3 100644 --- a/definitions/grib2/tables/7/4.220.table +++ b/definitions/grib2/tables/7/4.220.table @@ -1,5 +1,4 @@ # CODE TABLE 4.220, Horizontal dimension processed 0 0 Latitude 1 1 Longitude -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.221.table b/definitions/grib2/tables/7/4.221.table index d63c545c5..27775d7d0 100644 --- a/definitions/grib2/tables/7/4.221.table +++ b/definitions/grib2/tables/7/4.221.table @@ -1,5 +1,4 @@ # CODE TABLE 4.221, Treatment of missing data 0 0 Not included 1 1 Extrapolated -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.224.table b/definitions/grib2/tables/7/4.224.table index 4128aea6a..e306458a0 100644 --- a/definitions/grib2/tables/7/4.224.table +++ b/definitions/grib2/tables/7/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/7/4.230.table b/definitions/grib2/tables/7/4.230.table index 7bcbe3043..630393b96 100644 --- a/definitions/grib2/tables/7/4.230.table +++ b/definitions/grib2/tables/7/4.230.table @@ -62,7 +62,6 @@ 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 diff --git a/definitions/grib2/tables/7/4.3.table b/definitions/grib2/tables/7/4.3.table index 47bccd26b..6cddace73 100644 --- a/definitions/grib2/tables/7/4.3.table +++ b/definitions/grib2/tables/7/4.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/7/4.4.table b/definitions/grib2/tables/7/4.4.table index 61aa20c5f..ae3c412b5 100644 --- a/definitions/grib2/tables/7/4.4.table +++ b/definitions/grib2/tables/7/4.4.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/7/4.5.table b/definitions/grib2/tables/7/4.5.table index 5b80a90fc..81dae2dd3 100644 --- a/definitions/grib2/tables/7/4.5.table +++ b/definitions/grib2/tables/7/4.5.table @@ -12,9 +12,7 @@ 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) @@ -27,12 +25,8 @@ 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/definitions/grib2/tables/7/4.6.table b/definitions/grib2/tables/7/4.6.table index 1e89185fd..5787dd26f 100644 --- a/definitions/grib2/tables/7/4.6.table +++ b/definitions/grib2/tables/7/4.6.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/7/4.7.table b/definitions/grib2/tables/7/4.7.table index 2f3d96720..82638a049 100644 --- a/definitions/grib2/tables/7/4.7.table +++ b/definitions/grib2/tables/7/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/7/4.8.table b/definitions/grib2/tables/7/4.8.table index d1665027d..fa145a835 100644 --- a/definitions/grib2/tables/7/4.8.table +++ b/definitions/grib2/tables/7/4.8.table @@ -1,5 +1,4 @@ # CODE TABLE 4.8, Clustering Method 0 0 Anomaly correlation 1 1 Root mean square -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.9.table b/definitions/grib2/tables/7/4.9.table index cd80b7818..95738e5bc 100644 --- a/definitions/grib2/tables/7/4.9.table +++ b/definitions/grib2/tables/7/4.9.table @@ -5,5 +5,4 @@ 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-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/7/4.91.table b/definitions/grib2/tables/7/4.91.table index 253a84126..e23884f11 100644 --- a/definitions/grib2/tables/7/4.91.table +++ b/definitions/grib2/tables/7/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/7/5.0.table b/definitions/grib2/tables/7/5.0.table index ccf4f88cb..c6d03bef7 100644 --- a/definitions/grib2/tables/7/5.0.table +++ b/definitions/grib2/tables/7/5.0.table @@ -9,7 +9,6 @@ 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/definitions/grib2/tables/7/5.1.table b/definitions/grib2/tables/7/5.1.table index d7ca4bedc..52ac8d861 100644 --- a/definitions/grib2/tables/7/5.1.table +++ b/definitions/grib2/tables/7/5.1.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/7/5.2.table b/definitions/grib2/tables/7/5.2.table index a048d712e..040c7fd6d 100644 --- a/definitions/grib2/tables/7/5.2.table +++ b/definitions/grib2/tables/7/5.2.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/7/5.3.table b/definitions/grib2/tables/7/5.3.table index 4a673ef85..e92a2b74c 100644 --- a/definitions/grib2/tables/7/5.3.table +++ b/definitions/grib2/tables/7/5.3.table @@ -2,5 +2,4 @@ 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/definitions/grib2/tables/7/5.4.table b/definitions/grib2/tables/7/5.4.table index 1fd37966f..aed51082a 100644 --- a/definitions/grib2/tables/7/5.4.table +++ b/definitions/grib2/tables/7/5.4.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/7/5.40.table b/definitions/grib2/tables/7/5.40.table index 1eef7c763..a31bebc59 100644 --- a/definitions/grib2/tables/7/5.40.table +++ b/definitions/grib2/tables/7/5.40.table @@ -1,5 +1,4 @@ # Code Table 5.40: Type of Compression 0 0 Lossless 1 1 Lossy -#2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/7/5.5.table b/definitions/grib2/tables/7/5.5.table index d1caac9e8..2143388cb 100644 --- a/definitions/grib2/tables/7/5.5.table +++ b/definitions/grib2/tables/7/5.5.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/7/5.6.table b/definitions/grib2/tables/7/5.6.table index 7dc16a994..aaf705d48 100644 --- a/definitions/grib2/tables/7/5.6.table +++ b/definitions/grib2/tables/7/5.6.table @@ -2,5 +2,4 @@ 1 1 First-order spatial differencing 2 2 Second-order spatial differencing -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/8/0.0.table b/definitions/grib2/tables/8/0.0.table index 88d8b2cb3..41ff90231 100644 --- a/definitions/grib2/tables/8/0.0.table +++ b/definitions/grib2/tables/8/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/8/1.2.table b/definitions/grib2/tables/8/1.2.table index 606bf8300..05dc8c2ea 100644 --- a/definitions/grib2/tables/8/1.2.table +++ b/definitions/grib2/tables/8/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/8/1.3.table b/definitions/grib2/tables/8/1.3.table index 712bb2ba8..7c0132a8e 100644 --- a/definitions/grib2/tables/8/1.3.table +++ b/definitions/grib2/tables/8/1.3.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/8/1.4.table b/definitions/grib2/tables/8/1.4.table index 7f47afd96..d14ca167a 100644 --- a/definitions/grib2/tables/8/1.4.table +++ b/definitions/grib2/tables/8/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/8/3.0.table b/definitions/grib2/tables/8/3.0.table index 4269b25ad..a803cb068 100644 --- a/definitions/grib2/tables/8/3.0.table +++ b/definitions/grib2/tables/8/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/3.1.table b/definitions/grib2/tables/8/3.1.table index 15cbf2d57..8b4aa217f 100644 --- a/definitions/grib2/tables/8/3.1.table +++ b/definitions/grib2/tables/8/3.1.table @@ -3,39 +3,24 @@ 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-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/definitions/grib2/tables/8/3.10.table b/definitions/grib2/tables/8/3.10.table index da36dc664..da6ef60f8 100644 --- a/definitions/grib2/tables/8/3.10.table +++ b/definitions/grib2/tables/8/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/8/3.11.table b/definitions/grib2/tables/8/3.11.table index 0a299af98..bad05e213 100644 --- a/definitions/grib2/tables/8/3.11.table +++ b/definitions/grib2/tables/8/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/8/3.15.table b/definitions/grib2/tables/8/3.15.table index 976862747..8430006e7 100644 --- a/definitions/grib2/tables/8/3.15.table +++ b/definitions/grib2/tables/8/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -15,8 +13,5 @@ 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/definitions/grib2/tables/8/3.2.table b/definitions/grib2/tables/8/3.2.table index 563efbdb5..ed45a51b2 100644 --- a/definitions/grib2/tables/8/3.2.table +++ b/definitions/grib2/tables/8/3.2.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/8/3.20.table b/definitions/grib2/tables/8/3.20.table index 63de6b1a9..49f742062 100644 --- a/definitions/grib2/tables/8/3.20.table +++ b/definitions/grib2/tables/8/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/3.21.table b/definitions/grib2/tables/8/3.21.table index 2bc46aae9..6a3956a8e 100644 --- a/definitions/grib2/tables/8/3.21.table +++ b/definitions/grib2/tables/8/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/8/3.3.table b/definitions/grib2/tables/8/3.3.table index bd47e2509..cf950fbcf 100644 --- a/definitions/grib2/tables/8/3.3.table +++ b/definitions/grib2/tables/8/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/8/3.4.table b/definitions/grib2/tables/8/3.4.table index 752c70757..9d4a7abca 100644 --- a/definitions/grib2/tables/8/3.4.table +++ b/definitions/grib2/tables/8/3.4.table @@ -7,4 +7,3 @@ 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/definitions/grib2/tables/8/3.7.table b/definitions/grib2/tables/8/3.7.table index 4b2e684d3..13c931d84 100644 --- a/definitions/grib2/tables/8/3.7.table +++ b/definitions/grib2/tables/8/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/8/3.8.table b/definitions/grib2/tables/8/3.8.table index 6df554ae9..719e18df9 100644 --- a/definitions/grib2/tables/8/3.8.table +++ b/definitions/grib2/tables/8/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/8/3.9.table b/definitions/grib2/tables/8/3.9.table index 530d1dee0..5e7d3d880 100644 --- a/definitions/grib2/tables/8/3.9.table +++ b/definitions/grib2/tables/8/3.9.table @@ -1,4 +1,3 @@ # 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/definitions/grib2/tables/8/4.0.table b/definitions/grib2/tables/8/4.0.table index 0852d9f0d..17b813507 100644 --- a/definitions/grib2/tables/8/4.0.table +++ b/definitions/grib2/tables/8/4.0.table @@ -15,13 +15,10 @@ 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 @@ -33,21 +30,15 @@ 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/definitions/grib2/tables/8/4.1.0.table b/definitions/grib2/tables/8/4.1.0.table index 3413dbad5..c5f166b65 100644 --- a/definitions/grib2/tables/8/4.1.0.table +++ b/definitions/grib2/tables/8/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/8/4.1.1.table b/definitions/grib2/tables/8/4.1.1.table index dea5bc49e..51d3e1752 100644 --- a/definitions/grib2/tables/8/4.1.1.table +++ b/definitions/grib2/tables/8/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/8/4.1.10.table b/definitions/grib2/tables/8/4.1.10.table index e6ce6faf7..2541195f0 100644 --- a/definitions/grib2/tables/8/4.1.10.table +++ b/definitions/grib2/tables/8/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/8/4.1.2.table b/definitions/grib2/tables/8/4.1.2.table index 805836998..014bdf18e 100644 --- a/definitions/grib2/tables/8/4.1.2.table +++ b/definitions/grib2/tables/8/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/8/4.1.3.table b/definitions/grib2/tables/8/4.1.3.table index c96617665..d8c64da46 100644 --- a/definitions/grib2/tables/8/4.1.3.table +++ b/definitions/grib2/tables/8/4.1.3.table @@ -1,8 +1,6 @@ # 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/definitions/grib2/tables/8/4.10.table b/definitions/grib2/tables/8/4.10.table index a13fb00b4..c14ded40c 100644 --- a/definitions/grib2/tables/8/4.10.table +++ b/definitions/grib2/tables/8/4.10.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/8/4.11.table b/definitions/grib2/tables/8/4.11.table index af9ff29ad..54d5c84de 100644 --- a/definitions/grib2/tables/8/4.11.table +++ b/definitions/grib2/tables/8/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/8/4.12.table b/definitions/grib2/tables/8/4.12.table index 6cab67bf5..64c3bdbd9 100644 --- a/definitions/grib2/tables/8/4.12.table +++ b/definitions/grib2/tables/8/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/8/4.13.table b/definitions/grib2/tables/8/4.13.table index f090fb9ae..20415bfc5 100644 --- a/definitions/grib2/tables/8/4.13.table +++ b/definitions/grib2/tables/8/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/4.14.table b/definitions/grib2/tables/8/4.14.table index bcb04f328..d8a259329 100644 --- a/definitions/grib2/tables/8/4.14.table +++ b/definitions/grib2/tables/8/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/4.15.table b/definitions/grib2/tables/8/4.15.table index 6e1ef5745..8e1a90426 100644 --- a/definitions/grib2/tables/8/4.15.table +++ b/definitions/grib2/tables/8/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/8/4.151.table b/definitions/grib2/tables/8/4.151.table index 30487afb4..90a8c6ca0 100644 --- a/definitions/grib2/tables/8/4.151.table +++ b/definitions/grib2/tables/8/4.151.table @@ -3,5 +3,4 @@ 1 1 suspect 2 2 acceptable 3 3 excellent -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/8/4.2.0.0.table b/definitions/grib2/tables/8/4.2.0.0.table index 8656f8974..79dd8518e 100644 --- a/definitions/grib2/tables/8/4.2.0.0.table +++ b/definitions/grib2/tables/8/4.2.0.0.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/8/4.2.0.1.table b/definitions/grib2/tables/8/4.2.0.1.table index 8ee93e99b..a7dcbfbca 100644 --- a/definitions/grib2/tables/8/4.2.0.1.table +++ b/definitions/grib2/tables/8/4.2.0.1.table @@ -86,10 +86,7 @@ 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/definitions/grib2/tables/8/4.2.0.13.table b/definitions/grib2/tables/8/4.2.0.13.table index 90ab7d1b9..3aead6cbd 100644 --- a/definitions/grib2/tables/8/4.2.0.13.table +++ b/definitions/grib2/tables/8/4.2.0.13.table @@ -1,5 +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) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/8/4.2.0.14.table b/definitions/grib2/tables/8/4.2.0.14.table index fca42ccc7..62943028c 100644 --- a/definitions/grib2/tables/8/4.2.0.14.table +++ b/definitions/grib2/tables/8/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/8/4.2.0.15.table b/definitions/grib2/tables/8/4.2.0.15.table index c89ecd203..a945211ce 100644 --- a/definitions/grib2/tables/8/4.2.0.15.table +++ b/definitions/grib2/tables/8/4.2.0.15.table @@ -14,6 +14,4 @@ 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/definitions/grib2/tables/8/4.2.0.16.table b/definitions/grib2/tables/8/4.2.0.16.table index 18dedb7c0..98630ec0e 100644 --- a/definitions/grib2/tables/8/4.2.0.16.table +++ b/definitions/grib2/tables/8/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/8/4.2.0.18.table b/definitions/grib2/tables/8/4.2.0.18.table index 165aa6008..6de688a0b 100644 --- a/definitions/grib2/tables/8/4.2.0.18.table +++ b/definitions/grib2/tables/8/4.2.0.18.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/8/4.2.0.19.table b/definitions/grib2/tables/8/4.2.0.19.table index 1a2f91974..3a6a60ba8 100644 --- a/definitions/grib2/tables/8/4.2.0.19.table +++ b/definitions/grib2/tables/8/4.2.0.19.table @@ -26,6 +26,4 @@ 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/definitions/grib2/tables/8/4.2.0.190.table b/definitions/grib2/tables/8/4.2.0.190.table index 3d9d5ff85..f401ef529 100644 --- a/definitions/grib2/tables/8/4.2.0.190.table +++ b/definitions/grib2/tables/8/4.2.0.190.table @@ -1,5 +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 (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/8/4.2.0.191.table b/definitions/grib2/tables/8/4.2.0.191.table index 4ff12e532..c44d4c807 100644 --- a/definitions/grib2/tables/8/4.2.0.191.table +++ b/definitions/grib2/tables/8/4.2.0.191.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/8/4.2.0.2.table b/definitions/grib2/tables/8/4.2.0.2.table index f93074e5e..2ea1c3cb9 100644 --- a/definitions/grib2/tables/8/4.2.0.2.table +++ b/definitions/grib2/tables/8/4.2.0.2.table @@ -33,6 +33,4 @@ 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/definitions/grib2/tables/8/4.2.0.20.table b/definitions/grib2/tables/8/4.2.0.20.table index 2bee70352..db394b8af 100644 --- a/definitions/grib2/tables/8/4.2.0.20.table +++ b/definitions/grib2/tables/8/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -25,7 +24,6 @@ 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) @@ -37,6 +35,4 @@ 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/definitions/grib2/tables/8/4.2.0.3.table b/definitions/grib2/tables/8/4.2.0.3.table index 18c33fdf8..470cdf795 100644 --- a/definitions/grib2/tables/8/4.2.0.3.table +++ b/definitions/grib2/tables/8/4.2.0.3.table @@ -25,6 +25,4 @@ 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/definitions/grib2/tables/8/4.2.0.4.table b/definitions/grib2/tables/8/4.2.0.4.table index 336fdb421..6c69548e3 100644 --- a/definitions/grib2/tables/8/4.2.0.4.table +++ b/definitions/grib2/tables/8/4.2.0.4.table @@ -12,9 +12,6 @@ 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/definitions/grib2/tables/8/4.2.0.5.table b/definitions/grib2/tables/8/4.2.0.5.table index 607235064..dfe89bc00 100644 --- a/definitions/grib2/tables/8/4.2.0.5.table +++ b/definitions/grib2/tables/8/4.2.0.5.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/8/4.2.0.6.table b/definitions/grib2/tables/8/4.2.0.6.table index 747fd8088..50bd10c2f 100644 --- a/definitions/grib2/tables/8/4.2.0.6.table +++ b/definitions/grib2/tables/8/4.2.0.6.table @@ -33,6 +33,4 @@ 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/definitions/grib2/tables/8/4.2.0.7.table b/definitions/grib2/tables/8/4.2.0.7.table index 6c1794c73..4d22c0129 100644 --- a/definitions/grib2/tables/8/4.2.0.7.table +++ b/definitions/grib2/tables/8/4.2.0.7.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/8/4.2.1.0.table b/definitions/grib2/tables/8/4.2.1.0.table index 9c4d129da..4d79bd24f 100644 --- a/definitions/grib2/tables/8/4.2.1.0.table +++ b/definitions/grib2/tables/8/4.2.1.0.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/8/4.2.1.1.table b/definitions/grib2/tables/8/4.2.1.1.table index aa560e479..24efd5d1a 100644 --- a/definitions/grib2/tables/8/4.2.1.1.table +++ b/definitions/grib2/tables/8/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/8/4.2.10.0.table b/definitions/grib2/tables/8/4.2.10.0.table index c00ce058f..b378fbbd2 100644 --- a/definitions/grib2/tables/8/4.2.10.0.table +++ b/definitions/grib2/tables/8/4.2.10.0.table @@ -48,6 +48,4 @@ 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/definitions/grib2/tables/8/4.2.10.1.table b/definitions/grib2/tables/8/4.2.10.1.table index a076fb07c..d179812e2 100644 --- a/definitions/grib2/tables/8/4.2.10.1.table +++ b/definitions/grib2/tables/8/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/8/4.2.10.191.table b/definitions/grib2/tables/8/4.2.10.191.table index 6cafbd3d4..9b1fb12bb 100644 --- a/definitions/grib2/tables/8/4.2.10.191.table +++ b/definitions/grib2/tables/8/4.2.10.191.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/4.2.10.2.table b/definitions/grib2/tables/8/4.2.10.2.table index 80fe973be..a00b5c03c 100644 --- a/definitions/grib2/tables/8/4.2.10.2.table +++ b/definitions/grib2/tables/8/4.2.10.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/8/4.2.10.3.table b/definitions/grib2/tables/8/4.2.10.3.table index 3b9a2df46..7e8a250e4 100644 --- a/definitions/grib2/tables/8/4.2.10.3.table +++ b/definitions/grib2/tables/8/4.2.10.3.table @@ -1,6 +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) -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/8/4.2.10.4.table b/definitions/grib2/tables/8/4.2.10.4.table index 91ffb2b29..21aae1504 100644 --- a/definitions/grib2/tables/8/4.2.10.4.table +++ b/definitions/grib2/tables/8/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/8/4.2.2.0.table b/definitions/grib2/tables/8/4.2.2.0.table index 083fc5913..7bdb96520 100644 --- a/definitions/grib2/tables/8/4.2.2.0.table +++ b/definitions/grib2/tables/8/4.2.2.0.table @@ -32,6 +32,4 @@ 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/definitions/grib2/tables/8/4.2.2.3.table b/definitions/grib2/tables/8/4.2.2.3.table index a9ec602e6..a0d49bfe3 100644 --- a/definitions/grib2/tables/8/4.2.2.3.table +++ b/definitions/grib2/tables/8/4.2.2.3.table @@ -22,6 +22,4 @@ 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/definitions/grib2/tables/8/4.2.3.0.table b/definitions/grib2/tables/8/4.2.3.0.table index 8c19d43b2..e06377ac2 100644 --- a/definitions/grib2/tables/8/4.2.3.0.table +++ b/definitions/grib2/tables/8/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/8/4.2.3.1.table b/definitions/grib2/tables/8/4.2.3.1.table index d199aff60..dc43abe25 100644 --- a/definitions/grib2/tables/8/4.2.3.1.table +++ b/definitions/grib2/tables/8/4.2.3.1.table @@ -23,6 +23,4 @@ 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/definitions/grib2/tables/8/4.201.table b/definitions/grib2/tables/8/4.201.table index e16d5d808..83a129c62 100644 --- a/definitions/grib2/tables/8/4.201.table +++ b/definitions/grib2/tables/8/4.201.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/8/4.202.table b/definitions/grib2/tables/8/4.202.table index aa93458f1..31ea5e959 100644 --- a/definitions/grib2/tables/8/4.202.table +++ b/definitions/grib2/tables/8/4.202.table @@ -1,4 +1,2 @@ # 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/definitions/grib2/tables/8/4.203.table b/definitions/grib2/tables/8/4.203.table index 9a8d29e01..2df01049f 100644 --- a/definitions/grib2/tables/8/4.203.table +++ b/definitions/grib2/tables/8/4.203.table @@ -19,7 +19,5 @@ 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/definitions/grib2/tables/8/4.204.table b/definitions/grib2/tables/8/4.204.table index 8d8bca9b2..9bc7d0300 100644 --- a/definitions/grib2/tables/8/4.204.table +++ b/definitions/grib2/tables/8/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/8/4.205.table b/definitions/grib2/tables/8/4.205.table index 3fadf7d80..0cc467381 100644 --- a/definitions/grib2/tables/8/4.205.table +++ b/definitions/grib2/tables/8/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/4.206.table b/definitions/grib2/tables/8/4.206.table index 43b0ba137..dd078ebf5 100644 --- a/definitions/grib2/tables/8/4.206.table +++ b/definitions/grib2/tables/8/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/4.207.table b/definitions/grib2/tables/8/4.207.table index 815a5777e..7b30c9f9f 100644 --- a/definitions/grib2/tables/8/4.207.table +++ b/definitions/grib2/tables/8/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/8/4.208.table b/definitions/grib2/tables/8/4.208.table index 23ea97317..62c937cfa 100644 --- a/definitions/grib2/tables/8/4.208.table +++ b/definitions/grib2/tables/8/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/8/4.209.table b/definitions/grib2/tables/8/4.209.table index 53c6c5eba..92983f0b7 100644 --- a/definitions/grib2/tables/8/4.209.table +++ b/definitions/grib2/tables/8/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/8/4.210.table b/definitions/grib2/tables/8/4.210.table index 149b2ba06..c54c5581f 100644 --- a/definitions/grib2/tables/8/4.210.table +++ b/definitions/grib2/tables/8/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/4.211.table b/definitions/grib2/tables/8/4.211.table index b5753f19f..a1b6c828c 100644 --- a/definitions/grib2/tables/8/4.211.table +++ b/definitions/grib2/tables/8/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/8/4.212.table b/definitions/grib2/tables/8/4.212.table index 738c45d2c..f7cf87a3e 100644 --- a/definitions/grib2/tables/8/4.212.table +++ b/definitions/grib2/tables/8/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/8/4.213.table b/definitions/grib2/tables/8/4.213.table index 5cee0b798..0d3af0fab 100644 --- a/definitions/grib2/tables/8/4.213.table +++ b/definitions/grib2/tables/8/4.213.table @@ -16,6 +16,4 @@ 14 14 Rock 15 15 Ice 16 16 Water -# 17-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/8/4.215.table b/definitions/grib2/tables/8/4.215.table index 5ed37c034..582bc6f69 100644 --- a/definitions/grib2/tables/8/4.215.table +++ b/definitions/grib2/tables/8/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/8/4.216.table b/definitions/grib2/tables/8/4.216.table index 2fd143724..786d56e95 100644 --- a/definitions/grib2/tables/8/4.216.table +++ b/definitions/grib2/tables/8/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/8/4.217.table b/definitions/grib2/tables/8/4.217.table index 6a014c9c3..34089434a 100644 --- a/definitions/grib2/tables/8/4.217.table +++ b/definitions/grib2/tables/8/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/8/4.218.table b/definitions/grib2/tables/8/4.218.table index b6087448f..54af038dc 100644 --- a/definitions/grib2/tables/8/4.218.table +++ b/definitions/grib2/tables/8/4.218.table @@ -18,7 +18,6 @@ 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 @@ -33,6 +32,4 @@ 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/definitions/grib2/tables/8/4.219.table b/definitions/grib2/tables/8/4.219.table index a02452fc4..ead9d6b7b 100644 --- a/definitions/grib2/tables/8/4.219.table +++ b/definitions/grib2/tables/8/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/8/4.220.table b/definitions/grib2/tables/8/4.220.table index 7a18fa1fd..8d6d6c124 100644 --- a/definitions/grib2/tables/8/4.220.table +++ b/definitions/grib2/tables/8/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/4.221.table b/definitions/grib2/tables/8/4.221.table index eb0b64502..dc0d2201b 100644 --- a/definitions/grib2/tables/8/4.221.table +++ b/definitions/grib2/tables/8/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/4.222.table b/definitions/grib2/tables/8/4.222.table index f554a7f3d..a4790257b 100644 --- a/definitions/grib2/tables/8/4.222.table +++ b/definitions/grib2/tables/8/4.222.table @@ -1,6 +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 -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/8/4.224.table b/definitions/grib2/tables/8/4.224.table index cf67496b8..ae077e6f0 100644 --- a/definitions/grib2/tables/8/4.224.table +++ b/definitions/grib2/tables/8/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/8/4.230.table b/definitions/grib2/tables/8/4.230.table index afd1ab8db..9058b4b51 100644 --- a/definitions/grib2/tables/8/4.230.table +++ b/definitions/grib2/tables/8/4.230.table @@ -37,7 +37,6 @@ 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 @@ -61,9 +60,7 @@ 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 @@ -85,9 +82,7 @@ 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 @@ -373,7 +368,6 @@ 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 @@ -391,7 +385,6 @@ 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 @@ -411,5 +404,4 @@ 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/definitions/grib2/tables/8/4.3.table b/definitions/grib2/tables/8/4.3.table index 8a4e919c9..18a944e21 100644 --- a/definitions/grib2/tables/8/4.3.table +++ b/definitions/grib2/tables/8/4.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/8/4.4.table b/definitions/grib2/tables/8/4.4.table index 511c76aa9..f766917ee 100644 --- a/definitions/grib2/tables/8/4.4.table +++ b/definitions/grib2/tables/8/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/8/4.5.table b/definitions/grib2/tables/8/4.5.table index dfba82870..062808c3e 100644 --- a/definitions/grib2/tables/8/4.5.table +++ b/definitions/grib2/tables/8/4.5.table @@ -12,9 +12,7 @@ 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) @@ -29,13 +27,10 @@ 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 sfc Lake or river bottom @@ -43,6 +38,4 @@ 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave 166 sfc Mixing layer -# 167-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/8/4.6.table b/definitions/grib2/tables/8/4.6.table index eaa5c4362..30146761b 100644 --- a/definitions/grib2/tables/8/4.6.table +++ b/definitions/grib2/tables/8/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/8/4.7.table b/definitions/grib2/tables/8/4.7.table index e6d887bdb..48fdee35d 100644 --- a/definitions/grib2/tables/8/4.7.table +++ b/definitions/grib2/tables/8/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/8/4.8.table b/definitions/grib2/tables/8/4.8.table index d06153079..60e79328c 100644 --- a/definitions/grib2/tables/8/4.8.table +++ b/definitions/grib2/tables/8/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/4.9.table b/definitions/grib2/tables/8/4.9.table index 5243e58dd..0e32bf392 100644 --- a/definitions/grib2/tables/8/4.9.table +++ b/definitions/grib2/tables/8/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/8/4.91.table b/definitions/grib2/tables/8/4.91.table index cea421695..d33725b40 100644 --- a/definitions/grib2/tables/8/4.91.table +++ b/definitions/grib2/tables/8/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/8/5.0.table b/definitions/grib2/tables/8/5.0.table index e554b5c4b..29a47997c 100644 --- a/definitions/grib2/tables/8/5.0.table +++ b/definitions/grib2/tables/8/5.0.table @@ -6,15 +6,10 @@ 4 4 Grid point data - IEEE floating point data 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 diff --git a/definitions/grib2/tables/8/5.1.table b/definitions/grib2/tables/8/5.1.table index 158a35850..445d053a3 100644 --- a/definitions/grib2/tables/8/5.1.table +++ b/definitions/grib2/tables/8/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/5.2.table b/definitions/grib2/tables/8/5.2.table index d9896e11f..e64f52513 100644 --- a/definitions/grib2/tables/8/5.2.table +++ b/definitions/grib2/tables/8/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/8/5.3.table b/definitions/grib2/tables/8/5.3.table index 6f228aeec..e140f88e8 100644 --- a/definitions/grib2/tables/8/5.3.table +++ b/definitions/grib2/tables/8/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/8/5.4.table b/definitions/grib2/tables/8/5.4.table index f844f557e..7e69a3535 100644 --- a/definitions/grib2/tables/8/5.4.table +++ b/definitions/grib2/tables/8/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/8/5.40.table b/definitions/grib2/tables/8/5.40.table index 2431eb547..e9241d100 100644 --- a/definitions/grib2/tables/8/5.40.table +++ b/definitions/grib2/tables/8/5.40.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/8/5.5.table b/definitions/grib2/tables/8/5.5.table index f2216e273..aa71c5fa1 100644 --- a/definitions/grib2/tables/8/5.5.table +++ b/definitions/grib2/tables/8/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/8/5.6.table b/definitions/grib2/tables/8/5.6.table index 3b0892d37..d91c3592f 100644 --- a/definitions/grib2/tables/8/5.6.table +++ b/definitions/grib2/tables/8/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/8/5.7.table b/definitions/grib2/tables/8/5.7.table index f056d3059..493d0826a 100644 --- a/definitions/grib2/tables/8/5.7.table +++ b/definitions/grib2/tables/8/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/9/0.0.table b/definitions/grib2/tables/9/0.0.table index 88d8b2cb3..41ff90231 100644 --- a/definitions/grib2/tables/9/0.0.table +++ b/definitions/grib2/tables/9/0.0.table @@ -3,8 +3,5 @@ 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/definitions/grib2/tables/9/1.2.table b/definitions/grib2/tables/9/1.2.table index 606bf8300..05dc8c2ea 100644 --- a/definitions/grib2/tables/9/1.2.table +++ b/definitions/grib2/tables/9/1.2.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/9/1.3.table b/definitions/grib2/tables/9/1.3.table index 712bb2ba8..7c0132a8e 100644 --- a/definitions/grib2/tables/9/1.3.table +++ b/definitions/grib2/tables/9/1.3.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/9/1.4.table b/definitions/grib2/tables/9/1.4.table index 7f47afd96..d14ca167a 100644 --- a/definitions/grib2/tables/9/1.4.table +++ b/definitions/grib2/tables/9/1.4.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/9/3.0.table b/definitions/grib2/tables/9/3.0.table index 4269b25ad..a803cb068 100644 --- a/definitions/grib2/tables/9/3.0.table +++ b/definitions/grib2/tables/9/3.0.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/3.1.table b/definitions/grib2/tables/9/3.1.table index 15cbf2d57..8b4aa217f 100644 --- a/definitions/grib2/tables/9/3.1.table +++ b/definitions/grib2/tables/9/3.1.table @@ -3,39 +3,24 @@ 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-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/definitions/grib2/tables/9/3.10.table b/definitions/grib2/tables/9/3.10.table index da36dc664..da6ef60f8 100644 --- a/definitions/grib2/tables/9/3.10.table +++ b/definitions/grib2/tables/9/3.10.table @@ -5,4 +5,3 @@ 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/definitions/grib2/tables/9/3.11.table b/definitions/grib2/tables/9/3.11.table index 0a299af98..bad05e213 100644 --- a/definitions/grib2/tables/9/3.11.table +++ b/definitions/grib2/tables/9/3.11.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/9/3.15.table b/definitions/grib2/tables/9/3.15.table index 44e7a0983..85a02f31a 100644 --- a/definitions/grib2/tables/9/3.15.table +++ b/definitions/grib2/tables/9/3.15.table @@ -1,7 +1,5 @@ # 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) @@ -16,8 +14,5 @@ 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/definitions/grib2/tables/9/3.2.table b/definitions/grib2/tables/9/3.2.table index 563efbdb5..ed45a51b2 100644 --- a/definitions/grib2/tables/9/3.2.table +++ b/definitions/grib2/tables/9/3.2.table @@ -8,6 +8,4 @@ 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/definitions/grib2/tables/9/3.20.table b/definitions/grib2/tables/9/3.20.table index 63de6b1a9..49f742062 100644 --- a/definitions/grib2/tables/9/3.20.table +++ b/definitions/grib2/tables/9/3.20.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/3.21.table b/definitions/grib2/tables/9/3.21.table index 2bc46aae9..6a3956a8e 100644 --- a/definitions/grib2/tables/9/3.21.table +++ b/definitions/grib2/tables/9/3.21.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/9/3.3.table b/definitions/grib2/tables/9/3.3.table index bd47e2509..cf950fbcf 100644 --- a/definitions/grib2/tables/9/3.3.table +++ b/definitions/grib2/tables/9/3.3.table @@ -1,9 +1,7 @@ # 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/definitions/grib2/tables/9/3.4.table b/definitions/grib2/tables/9/3.4.table index 752c70757..9d4a7abca 100644 --- a/definitions/grib2/tables/9/3.4.table +++ b/definitions/grib2/tables/9/3.4.table @@ -7,4 +7,3 @@ 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/definitions/grib2/tables/9/3.7.table b/definitions/grib2/tables/9/3.7.table index 4b2e684d3..13c931d84 100644 --- a/definitions/grib2/tables/9/3.7.table +++ b/definitions/grib2/tables/9/3.7.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/9/3.8.table b/definitions/grib2/tables/9/3.8.table index 6df554ae9..719e18df9 100644 --- a/definitions/grib2/tables/9/3.8.table +++ b/definitions/grib2/tables/9/3.8.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/9/3.9.table b/definitions/grib2/tables/9/3.9.table index 530d1dee0..5e7d3d880 100644 --- a/definitions/grib2/tables/9/3.9.table +++ b/definitions/grib2/tables/9/3.9.table @@ -1,4 +1,3 @@ # 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/definitions/grib2/tables/9/4.0.table b/definitions/grib2/tables/9/4.0.table index 0852d9f0d..17b813507 100644 --- a/definitions/grib2/tables/9/4.0.table +++ b/definitions/grib2/tables/9/4.0.table @@ -15,13 +15,10 @@ 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 @@ -33,21 +30,15 @@ 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/definitions/grib2/tables/9/4.1.0.table b/definitions/grib2/tables/9/4.1.0.table index 3413dbad5..c5f166b65 100644 --- a/definitions/grib2/tables/9/4.1.0.table +++ b/definitions/grib2/tables/9/4.1.0.table @@ -20,8 +20,6 @@ 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/definitions/grib2/tables/9/4.1.1.table b/definitions/grib2/tables/9/4.1.1.table index dea5bc49e..51d3e1752 100644 --- a/definitions/grib2/tables/9/4.1.1.table +++ b/definitions/grib2/tables/9/4.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/9/4.1.10.table b/definitions/grib2/tables/9/4.1.10.table index e6ce6faf7..2541195f0 100644 --- a/definitions/grib2/tables/9/4.1.10.table +++ b/definitions/grib2/tables/9/4.1.10.table @@ -4,7 +4,5 @@ 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/definitions/grib2/tables/9/4.1.2.table b/definitions/grib2/tables/9/4.1.2.table index 805836998..014bdf18e 100644 --- a/definitions/grib2/tables/9/4.1.2.table +++ b/definitions/grib2/tables/9/4.1.2.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/9/4.1.3.table b/definitions/grib2/tables/9/4.1.3.table index c96617665..d8c64da46 100644 --- a/definitions/grib2/tables/9/4.1.3.table +++ b/definitions/grib2/tables/9/4.1.3.table @@ -1,8 +1,6 @@ # 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/definitions/grib2/tables/9/4.10.table b/definitions/grib2/tables/9/4.10.table index a13fb00b4..c14ded40c 100644 --- a/definitions/grib2/tables/9/4.10.table +++ b/definitions/grib2/tables/9/4.10.table @@ -10,6 +10,4 @@ 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/definitions/grib2/tables/9/4.11.table b/definitions/grib2/tables/9/4.11.table index af9ff29ad..54d5c84de 100644 --- a/definitions/grib2/tables/9/4.11.table +++ b/definitions/grib2/tables/9/4.11.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/9/4.12.table b/definitions/grib2/tables/9/4.12.table index 6cab67bf5..64c3bdbd9 100644 --- a/definitions/grib2/tables/9/4.12.table +++ b/definitions/grib2/tables/9/4.12.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/9/4.13.table b/definitions/grib2/tables/9/4.13.table index f090fb9ae..20415bfc5 100644 --- a/definitions/grib2/tables/9/4.13.table +++ b/definitions/grib2/tables/9/4.13.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/4.14.table b/definitions/grib2/tables/9/4.14.table index bcb04f328..d8a259329 100644 --- a/definitions/grib2/tables/9/4.14.table +++ b/definitions/grib2/tables/9/4.14.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/4.15.table b/definitions/grib2/tables/9/4.15.table index 6e1ef5745..8e1a90426 100644 --- a/definitions/grib2/tables/9/4.15.table +++ b/definitions/grib2/tables/9/4.15.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/9/4.151.table b/definitions/grib2/tables/9/4.151.table index 30487afb4..90a8c6ca0 100644 --- a/definitions/grib2/tables/9/4.151.table +++ b/definitions/grib2/tables/9/4.151.table @@ -3,5 +3,4 @@ 1 1 suspect 2 2 acceptable 3 3 excellent -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.2.0.0.table b/definitions/grib2/tables/9/4.2.0.0.table index 8656f8974..79dd8518e 100644 --- a/definitions/grib2/tables/9/4.2.0.0.table +++ b/definitions/grib2/tables/9/4.2.0.0.table @@ -20,6 +20,4 @@ 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/definitions/grib2/tables/9/4.2.0.1.table b/definitions/grib2/tables/9/4.2.0.1.table index 8ee93e99b..a7dcbfbca 100644 --- a/definitions/grib2/tables/9/4.2.0.1.table +++ b/definitions/grib2/tables/9/4.2.0.1.table @@ -86,10 +86,7 @@ 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/definitions/grib2/tables/9/4.2.0.13.table b/definitions/grib2/tables/9/4.2.0.13.table index 90ab7d1b9..3aead6cbd 100644 --- a/definitions/grib2/tables/9/4.2.0.13.table +++ b/definitions/grib2/tables/9/4.2.0.13.table @@ -1,5 +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) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.2.0.14.table b/definitions/grib2/tables/9/4.2.0.14.table index fca42ccc7..62943028c 100644 --- a/definitions/grib2/tables/9/4.2.0.14.table +++ b/definitions/grib2/tables/9/4.2.0.14.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/9/4.2.0.15.table b/definitions/grib2/tables/9/4.2.0.15.table index 66ccff19d..734440838 100644 --- a/definitions/grib2/tables/9/4.2.0.15.table +++ b/definitions/grib2/tables/9/4.2.0.15.table @@ -14,6 +14,4 @@ 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/definitions/grib2/tables/9/4.2.0.16.table b/definitions/grib2/tables/9/4.2.0.16.table index 18dedb7c0..98630ec0e 100644 --- a/definitions/grib2/tables/9/4.2.0.16.table +++ b/definitions/grib2/tables/9/4.2.0.16.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/9/4.2.0.18.table b/definitions/grib2/tables/9/4.2.0.18.table index 165aa6008..6de688a0b 100644 --- a/definitions/grib2/tables/9/4.2.0.18.table +++ b/definitions/grib2/tables/9/4.2.0.18.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/9/4.2.0.19.table b/definitions/grib2/tables/9/4.2.0.19.table index cbce2f76c..2b9656bf3 100644 --- a/definitions/grib2/tables/9/4.2.0.19.table +++ b/definitions/grib2/tables/9/4.2.0.19.table @@ -27,6 +27,4 @@ 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/definitions/grib2/tables/9/4.2.0.190.table b/definitions/grib2/tables/9/4.2.0.190.table index 3d9d5ff85..f401ef529 100644 --- a/definitions/grib2/tables/9/4.2.0.190.table +++ b/definitions/grib2/tables/9/4.2.0.190.table @@ -1,5 +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 (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.2.0.191.table b/definitions/grib2/tables/9/4.2.0.191.table index 4ff12e532..c44d4c807 100644 --- a/definitions/grib2/tables/9/4.2.0.191.table +++ b/definitions/grib2/tables/9/4.2.0.191.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/9/4.2.0.2.table b/definitions/grib2/tables/9/4.2.0.2.table index 68aa47ba6..4c3059e8b 100644 --- a/definitions/grib2/tables/9/4.2.0.2.table +++ b/definitions/grib2/tables/9/4.2.0.2.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/9/4.2.0.20.table b/definitions/grib2/tables/9/4.2.0.20.table index 898a774eb..59518592d 100644 --- a/definitions/grib2/tables/9/4.2.0.20.table +++ b/definitions/grib2/tables/9/4.2.0.20.table @@ -14,7 +14,6 @@ 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) @@ -25,7 +24,6 @@ 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) @@ -37,6 +35,4 @@ 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/definitions/grib2/tables/9/4.2.0.3.table b/definitions/grib2/tables/9/4.2.0.3.table index 08c1c7bc3..03f4c15ff 100644 --- a/definitions/grib2/tables/9/4.2.0.3.table +++ b/definitions/grib2/tables/9/4.2.0.3.table @@ -26,6 +26,4 @@ 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/definitions/grib2/tables/9/4.2.0.4.table b/definitions/grib2/tables/9/4.2.0.4.table index 336fdb421..6c69548e3 100644 --- a/definitions/grib2/tables/9/4.2.0.4.table +++ b/definitions/grib2/tables/9/4.2.0.4.table @@ -12,9 +12,6 @@ 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/definitions/grib2/tables/9/4.2.0.5.table b/definitions/grib2/tables/9/4.2.0.5.table index 607235064..dfe89bc00 100644 --- a/definitions/grib2/tables/9/4.2.0.5.table +++ b/definitions/grib2/tables/9/4.2.0.5.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/9/4.2.0.6.table b/definitions/grib2/tables/9/4.2.0.6.table index fb935344e..6f3724ceb 100644 --- a/definitions/grib2/tables/9/4.2.0.6.table +++ b/definitions/grib2/tables/9/4.2.0.6.table @@ -35,6 +35,4 @@ 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/definitions/grib2/tables/9/4.2.0.7.table b/definitions/grib2/tables/9/4.2.0.7.table index 6c1794c73..4d22c0129 100644 --- a/definitions/grib2/tables/9/4.2.0.7.table +++ b/definitions/grib2/tables/9/4.2.0.7.table @@ -15,6 +15,4 @@ 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/definitions/grib2/tables/9/4.2.1.0.table b/definitions/grib2/tables/9/4.2.1.0.table index 9c4d129da..4d79bd24f 100644 --- a/definitions/grib2/tables/9/4.2.1.0.table +++ b/definitions/grib2/tables/9/4.2.1.0.table @@ -6,6 +6,4 @@ 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/definitions/grib2/tables/9/4.2.1.1.table b/definitions/grib2/tables/9/4.2.1.1.table index aa560e479..24efd5d1a 100644 --- a/definitions/grib2/tables/9/4.2.1.1.table +++ b/definitions/grib2/tables/9/4.2.1.1.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/9/4.2.10.0.table b/definitions/grib2/tables/9/4.2.10.0.table index 8bba32cf5..c68ed8ab8 100644 --- a/definitions/grib2/tables/9/4.2.10.0.table +++ b/definitions/grib2/tables/9/4.2.10.0.table @@ -45,6 +45,4 @@ 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/definitions/grib2/tables/9/4.2.10.1.table b/definitions/grib2/tables/9/4.2.10.1.table index a076fb07c..d179812e2 100644 --- a/definitions/grib2/tables/9/4.2.10.1.table +++ b/definitions/grib2/tables/9/4.2.10.1.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/9/4.2.10.191.table b/definitions/grib2/tables/9/4.2.10.191.table index 6cafbd3d4..9b1fb12bb 100644 --- a/definitions/grib2/tables/9/4.2.10.191.table +++ b/definitions/grib2/tables/9/4.2.10.191.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/4.2.10.2.table b/definitions/grib2/tables/9/4.2.10.2.table index 80fe973be..a00b5c03c 100644 --- a/definitions/grib2/tables/9/4.2.10.2.table +++ b/definitions/grib2/tables/9/4.2.10.2.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/9/4.2.10.3.table b/definitions/grib2/tables/9/4.2.10.3.table index 3b9a2df46..7e8a250e4 100644 --- a/definitions/grib2/tables/9/4.2.10.3.table +++ b/definitions/grib2/tables/9/4.2.10.3.table @@ -1,6 +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) -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.2.10.4.table b/definitions/grib2/tables/9/4.2.10.4.table index 91ffb2b29..21aae1504 100644 --- a/definitions/grib2/tables/9/4.2.10.4.table +++ b/definitions/grib2/tables/9/4.2.10.4.table @@ -7,12 +7,9 @@ 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/definitions/grib2/tables/9/4.2.2.0.table b/definitions/grib2/tables/9/4.2.2.0.table index bbd328f0a..2c288398e 100644 --- a/definitions/grib2/tables/9/4.2.2.0.table +++ b/definitions/grib2/tables/9/4.2.2.0.table @@ -32,6 +32,4 @@ 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/definitions/grib2/tables/9/4.2.2.3.table b/definitions/grib2/tables/9/4.2.2.3.table index a9ec602e6..a0d49bfe3 100644 --- a/definitions/grib2/tables/9/4.2.2.3.table +++ b/definitions/grib2/tables/9/4.2.2.3.table @@ -22,6 +22,4 @@ 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/definitions/grib2/tables/9/4.2.2.4.table b/definitions/grib2/tables/9/4.2.2.4.table index 24f2bfbae..ec677d0b2 100644 --- a/definitions/grib2/tables/9/4.2.2.4.table +++ b/definitions/grib2/tables/9/4.2.2.4.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/9/4.2.3.0.table b/definitions/grib2/tables/9/4.2.3.0.table index 8c19d43b2..e06377ac2 100644 --- a/definitions/grib2/tables/9/4.2.3.0.table +++ b/definitions/grib2/tables/9/4.2.3.0.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/9/4.2.3.1.table b/definitions/grib2/tables/9/4.2.3.1.table index d199aff60..dc43abe25 100644 --- a/definitions/grib2/tables/9/4.2.3.1.table +++ b/definitions/grib2/tables/9/4.2.3.1.table @@ -23,6 +23,4 @@ 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/definitions/grib2/tables/9/4.201.table b/definitions/grib2/tables/9/4.201.table index e16d5d808..83a129c62 100644 --- a/definitions/grib2/tables/9/4.201.table +++ b/definitions/grib2/tables/9/4.201.table @@ -5,6 +5,4 @@ 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/definitions/grib2/tables/9/4.202.table b/definitions/grib2/tables/9/4.202.table index aa93458f1..31ea5e959 100644 --- a/definitions/grib2/tables/9/4.202.table +++ b/definitions/grib2/tables/9/4.202.table @@ -1,4 +1,2 @@ # 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/definitions/grib2/tables/9/4.203.table b/definitions/grib2/tables/9/4.203.table index 9a8d29e01..2df01049f 100644 --- a/definitions/grib2/tables/9/4.203.table +++ b/definitions/grib2/tables/9/4.203.table @@ -19,7 +19,5 @@ 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/definitions/grib2/tables/9/4.204.table b/definitions/grib2/tables/9/4.204.table index 8d8bca9b2..9bc7d0300 100644 --- a/definitions/grib2/tables/9/4.204.table +++ b/definitions/grib2/tables/9/4.204.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/9/4.205.table b/definitions/grib2/tables/9/4.205.table index 3fadf7d80..0cc467381 100644 --- a/definitions/grib2/tables/9/4.205.table +++ b/definitions/grib2/tables/9/4.205.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/4.206.table b/definitions/grib2/tables/9/4.206.table index 43b0ba137..dd078ebf5 100644 --- a/definitions/grib2/tables/9/4.206.table +++ b/definitions/grib2/tables/9/4.206.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/4.207.table b/definitions/grib2/tables/9/4.207.table index 815a5777e..7b30c9f9f 100644 --- a/definitions/grib2/tables/9/4.207.table +++ b/definitions/grib2/tables/9/4.207.table @@ -5,6 +5,4 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.208.table b/definitions/grib2/tables/9/4.208.table index 23ea97317..62c937cfa 100644 --- a/definitions/grib2/tables/9/4.208.table +++ b/definitions/grib2/tables/9/4.208.table @@ -4,6 +4,4 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.209.table b/definitions/grib2/tables/9/4.209.table index 53c6c5eba..92983f0b7 100644 --- a/definitions/grib2/tables/9/4.209.table +++ b/definitions/grib2/tables/9/4.209.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/9/4.210.table b/definitions/grib2/tables/9/4.210.table index 149b2ba06..c54c5581f 100644 --- a/definitions/grib2/tables/9/4.210.table +++ b/definitions/grib2/tables/9/4.210.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/4.211.table b/definitions/grib2/tables/9/4.211.table index b5753f19f..a1b6c828c 100644 --- a/definitions/grib2/tables/9/4.211.table +++ b/definitions/grib2/tables/9/4.211.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/9/4.212.table b/definitions/grib2/tables/9/4.212.table index 738c45d2c..f7cf87a3e 100644 --- a/definitions/grib2/tables/9/4.212.table +++ b/definitions/grib2/tables/9/4.212.table @@ -13,6 +13,4 @@ 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/definitions/grib2/tables/9/4.213.table b/definitions/grib2/tables/9/4.213.table index 5cee0b798..0d3af0fab 100644 --- a/definitions/grib2/tables/9/4.213.table +++ b/definitions/grib2/tables/9/4.213.table @@ -16,6 +16,4 @@ 14 14 Rock 15 15 Ice 16 16 Water -# 17-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.215.table b/definitions/grib2/tables/9/4.215.table index 5ed37c034..582bc6f69 100644 --- a/definitions/grib2/tables/9/4.215.table +++ b/definitions/grib2/tables/9/4.215.table @@ -1,9 +1,5 @@ # 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/definitions/grib2/tables/9/4.216.table b/definitions/grib2/tables/9/4.216.table index 2fd143724..786d56e95 100644 --- a/definitions/grib2/tables/9/4.216.table +++ b/definitions/grib2/tables/9/4.216.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/9/4.217.table b/definitions/grib2/tables/9/4.217.table index 6a014c9c3..34089434a 100644 --- a/definitions/grib2/tables/9/4.217.table +++ b/definitions/grib2/tables/9/4.217.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/9/4.218.table b/definitions/grib2/tables/9/4.218.table index b6087448f..54af038dc 100644 --- a/definitions/grib2/tables/9/4.218.table +++ b/definitions/grib2/tables/9/4.218.table @@ -18,7 +18,6 @@ 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 @@ -33,6 +32,4 @@ 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/definitions/grib2/tables/9/4.219.table b/definitions/grib2/tables/9/4.219.table index a02452fc4..ead9d6b7b 100644 --- a/definitions/grib2/tables/9/4.219.table +++ b/definitions/grib2/tables/9/4.219.table @@ -3,6 +3,4 @@ 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/definitions/grib2/tables/9/4.220.table b/definitions/grib2/tables/9/4.220.table index 7a18fa1fd..8d6d6c124 100644 --- a/definitions/grib2/tables/9/4.220.table +++ b/definitions/grib2/tables/9/4.220.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/4.221.table b/definitions/grib2/tables/9/4.221.table index eb0b64502..dc0d2201b 100644 --- a/definitions/grib2/tables/9/4.221.table +++ b/definitions/grib2/tables/9/4.221.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/4.222.table b/definitions/grib2/tables/9/4.222.table index f554a7f3d..a4790257b 100644 --- a/definitions/grib2/tables/9/4.222.table +++ b/definitions/grib2/tables/9/4.222.table @@ -1,6 +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 -# 2-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.224.table b/definitions/grib2/tables/9/4.224.table index cf67496b8..ae077e6f0 100644 --- a/definitions/grib2/tables/9/4.224.table +++ b/definitions/grib2/tables/9/4.224.table @@ -8,11 +8,7 @@ 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/definitions/grib2/tables/9/4.227.table b/definitions/grib2/tables/9/4.227.table index 5a0771c0f..c22673c5f 100644 --- a/definitions/grib2/tables/9/4.227.table +++ b/definitions/grib2/tables/9/4.227.table @@ -5,6 +5,4 @@ 2 2 Convective 3 3 Stratiform 4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.230.table b/definitions/grib2/tables/9/4.230.table index afd1ab8db..9058b4b51 100644 --- a/definitions/grib2/tables/9/4.230.table +++ b/definitions/grib2/tables/9/4.230.table @@ -37,7 +37,6 @@ 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 @@ -61,9 +60,7 @@ 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 @@ -85,9 +82,7 @@ 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 @@ -373,7 +368,6 @@ 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 @@ -391,7 +385,6 @@ 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 @@ -411,5 +404,4 @@ 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/definitions/grib2/tables/9/4.3.table b/definitions/grib2/tables/9/4.3.table index 8a4e919c9..18a944e21 100644 --- a/definitions/grib2/tables/9/4.3.table +++ b/definitions/grib2/tables/9/4.3.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/9/4.4.table b/definitions/grib2/tables/9/4.4.table index 511c76aa9..f766917ee 100644 --- a/definitions/grib2/tables/9/4.4.table +++ b/definitions/grib2/tables/9/4.4.table @@ -7,11 +7,8 @@ 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/definitions/grib2/tables/9/4.5.table b/definitions/grib2/tables/9/4.5.table index d07c799a8..a65238870 100644 --- a/definitions/grib2/tables/9/4.5.table +++ b/definitions/grib2/tables/9/4.5.table @@ -12,9 +12,7 @@ 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) @@ -29,13 +27,10 @@ 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 sfc Lake or river bottom @@ -43,6 +38,4 @@ 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave 166 sfc Mixing layer -# 167-191 Reserved -# 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.6.table b/definitions/grib2/tables/9/4.6.table index eaa5c4362..30146761b 100644 --- a/definitions/grib2/tables/9/4.6.table +++ b/definitions/grib2/tables/9/4.6.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/9/4.7.table b/definitions/grib2/tables/9/4.7.table index e6d887bdb..48fdee35d 100644 --- a/definitions/grib2/tables/9/4.7.table +++ b/definitions/grib2/tables/9/4.7.table @@ -9,6 +9,4 @@ 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/definitions/grib2/tables/9/4.8.table b/definitions/grib2/tables/9/4.8.table index d06153079..60e79328c 100644 --- a/definitions/grib2/tables/9/4.8.table +++ b/definitions/grib2/tables/9/4.8.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/4.9.table b/definitions/grib2/tables/9/4.9.table index 5243e58dd..0e32bf392 100644 --- a/definitions/grib2/tables/9/4.9.table +++ b/definitions/grib2/tables/9/4.9.table @@ -4,6 +4,4 @@ 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/definitions/grib2/tables/9/4.91.table b/definitions/grib2/tables/9/4.91.table index cea421695..d33725b40 100644 --- a/definitions/grib2/tables/9/4.91.table +++ b/definitions/grib2/tables/9/4.91.table @@ -11,6 +11,4 @@ 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/definitions/grib2/tables/9/5.0.table b/definitions/grib2/tables/9/5.0.table index e554b5c4b..29a47997c 100644 --- a/definitions/grib2/tables/9/5.0.table +++ b/definitions/grib2/tables/9/5.0.table @@ -6,15 +6,10 @@ 4 4 Grid point data - IEEE floating point data 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 diff --git a/definitions/grib2/tables/9/5.1.table b/definitions/grib2/tables/9/5.1.table index 158a35850..445d053a3 100644 --- a/definitions/grib2/tables/9/5.1.table +++ b/definitions/grib2/tables/9/5.1.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/5.2.table b/definitions/grib2/tables/9/5.2.table index d9896e11f..e64f52513 100644 --- a/definitions/grib2/tables/9/5.2.table +++ b/definitions/grib2/tables/9/5.2.table @@ -1,8 +1,5 @@ # 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/definitions/grib2/tables/9/5.3.table b/definitions/grib2/tables/9/5.3.table index 6f228aeec..e140f88e8 100644 --- a/definitions/grib2/tables/9/5.3.table +++ b/definitions/grib2/tables/9/5.3.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/9/5.4.table b/definitions/grib2/tables/9/5.4.table index f844f557e..7e69a3535 100644 --- a/definitions/grib2/tables/9/5.4.table +++ b/definitions/grib2/tables/9/5.4.table @@ -1,6 +1,4 @@ # 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/definitions/grib2/tables/9/5.40.table b/definitions/grib2/tables/9/5.40.table index 2431eb547..e9241d100 100644 --- a/definitions/grib2/tables/9/5.40.table +++ b/definitions/grib2/tables/9/5.40.table @@ -1,5 +1,4 @@ # 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/definitions/grib2/tables/9/5.5.table b/definitions/grib2/tables/9/5.5.table index f2216e273..aa71c5fa1 100644 --- a/definitions/grib2/tables/9/5.5.table +++ b/definitions/grib2/tables/9/5.5.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/9/5.6.table b/definitions/grib2/tables/9/5.6.table index 3b0892d37..d91c3592f 100644 --- a/definitions/grib2/tables/9/5.6.table +++ b/definitions/grib2/tables/9/5.6.table @@ -2,6 +2,4 @@ 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/definitions/grib2/tables/9/5.7.table b/definitions/grib2/tables/9/5.7.table index f056d3059..493d0826a 100644 --- a/definitions/grib2/tables/9/5.7.table +++ b/definitions/grib2/tables/9/5.7.table @@ -3,5 +3,4 @@ 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/definitions/grib2/tables/local/ecmf/4/1.2.table b/definitions/grib2/tables/local/ecmf/4/1.2.table index a0f9c9739..5fb6fbd14 100644 --- a/definitions/grib2/tables/local/ecmf/4/1.2.table +++ b/definitions/grib2/tables/local/ecmf/4/1.2.table @@ -1,4 +1,3 @@ # 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/definitions/grib2/tables/local/kwbc/1/4.5.table b/definitions/grib2/tables/local/kwbc/1/4.5.table index f89c21674..bbfaebe57 100644 --- a/definitions/grib2/tables/local/kwbc/1/4.5.table +++ b/definitions/grib2/tables/local/kwbc/1/4.5.table @@ -16,13 +16,11 @@ 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) @@ -39,14 +37,11 @@ 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 (-) @@ -55,20 +50,16 @@ 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) 201 201 Entire ocean (considered as a single layer) From 3a58cdcaeb88c704b415b9d64b15b5cacd5fd890 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 8 Jul 2024 09:38:22 +0000 Subject: [PATCH 12/17] ECC-1856: GRIB2: Add volumetric soil moisture top 20cm/100cm parameters --- definitions/grib2/cfVarName.def | 50 +++++++++++++++++++++++++++++++++ definitions/grib2/name.def | 50 +++++++++++++++++++++++++++++++++ definitions/grib2/paramId.def | 50 +++++++++++++++++++++++++++++++++ definitions/grib2/shortName.def | 50 +++++++++++++++++++++++++++++++++ definitions/grib2/units.def | 50 +++++++++++++++++++++++++++++++++ 5 files changed, 250 insertions(+) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index ec7335aa4..32e68a667 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -4968,6 +4968,32 @@ scaleFactorOfFirstFixedSurface = missing() ; typeOfStatisticalProcessing = 0 ; } +#Time-mean volumetric soil moisture top 20 cm +'avg_vsw20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Time-mean volumetric soil moisture top 100 cm +'avg_vsw100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } #Time-mean geopotential 'avg_z' = { discipline = 0 ; @@ -7467,6 +7493,30 @@ parameterCategory = 22 ; parameterNumber = 6 ; } +#Volumetric soil moisture top 20 cm +'vsw20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Volumetric soil moisture top 100 cm +'vsw100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + } #Universal thermal climate index 'utci' = { discipline = 20 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 64a3da1a7..7764aed03 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -4968,6 +4968,32 @@ scaleFactorOfFirstFixedSurface = missing() ; typeOfStatisticalProcessing = 0 ; } +#Time-mean volumetric soil moisture top 20 cm +'Time-mean volumetric soil moisture top 20 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Time-mean volumetric soil moisture top 100 cm +'Time-mean volumetric soil moisture top 100 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } #Time-mean geopotential 'Time-mean geopotential' = { discipline = 0 ; @@ -7467,6 +7493,30 @@ parameterCategory = 22 ; parameterNumber = 6 ; } +#Volumetric soil moisture top 20 cm +'Volumetric soil moisture top 20 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Volumetric soil moisture top 100 cm +'Volumetric soil moisture top 100 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + } #Universal thermal climate index 'Universal thermal climate index' = { discipline = 20 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 00069255d..4364fde7b 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -4968,6 +4968,32 @@ scaleFactorOfFirstFixedSurface = missing() ; typeOfStatisticalProcessing = 0 ; } +#Time-mean volumetric soil moisture top 20 cm +'235118' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Time-mean volumetric soil moisture top 100 cm +'235119' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } #Time-mean geopotential '235129' = { discipline = 0 ; @@ -7467,6 +7493,30 @@ parameterCategory = 22 ; parameterNumber = 6 ; } +#Volumetric soil moisture top 20 cm +'260665' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Volumetric soil moisture top 100 cm +'260666' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + } #Universal thermal climate index '261001' = { discipline = 20 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 7aa4259b2..c85560c5a 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -4968,6 +4968,32 @@ scaleFactorOfFirstFixedSurface = missing() ; typeOfStatisticalProcessing = 0 ; } +#Time-mean volumetric soil moisture top 20 cm +'avg_vsw20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Time-mean volumetric soil moisture top 100 cm +'avg_vsw100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } #Time-mean geopotential 'avg_z' = { discipline = 0 ; @@ -7467,6 +7493,30 @@ parameterCategory = 22 ; parameterNumber = 6 ; } +#Volumetric soil moisture top 20 cm +'vsw20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Volumetric soil moisture top 100 cm +'vsw100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + } #Universal thermal climate index 'utci' = { discipline = 20 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index de6a94650..c2f4e3270 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -4968,6 +4968,32 @@ scaleFactorOfFirstFixedSurface = missing() ; typeOfStatisticalProcessing = 0 ; } +#Time-mean volumetric soil moisture top 20 cm +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Time-mean volumetric soil moisture top 100 cm +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } #Time-mean geopotential 'm**2 s**-2' = { discipline = 0 ; @@ -7467,6 +7493,30 @@ parameterCategory = 22 ; parameterNumber = 6 ; } +#Volumetric soil moisture top 20 cm +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Volumetric soil moisture top 100 cm +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + } #Universal thermal climate index 'K' = { discipline = 20 ; From 1cb4a57c5565191290f1a7f2f3861310b367fe58 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 8 Jul 2024 10:42:45 +0000 Subject: [PATCH 13/17] ECC-1760: GRIB2: remove is_chemical_srcsink key from chemistry related paramIds --- definitions/grib2/cfVarName.def | 28 ------------------- .../grib2/localConcepts/ecmf/cfVarName.def | 9 ------ definitions/grib2/localConcepts/ecmf/name.def | 9 ------ .../grib2/localConcepts/ecmf/paramId.def | 9 ------ .../grib2/localConcepts/ecmf/shortName.def | 9 ------ .../grib2/localConcepts/ecmf/units.def | 9 ------ definitions/grib2/name.def | 28 ------------------- definitions/grib2/paramId.def | 28 ------------------- definitions/grib2/shortName.def | 28 ------------------- definitions/grib2/units.def | 28 ------------------- tests/grib_local.sh | 5 ++-- 11 files changed, 3 insertions(+), 187 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 32e68a667..437d399ce 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -9930,7 +9930,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 255 ; } #Dry deposition velocity @@ -9980,7 +9979,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 6 ; } #Emission mass flux from anthropogenic sources @@ -9988,7 +9986,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 4 ; } #Emission mass flux from elevated anthropogenic sources @@ -9996,7 +9993,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 12 ; } #Emission mass flux from surface anthropogenic sources @@ -10004,7 +10000,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 13 ; } #Emission from aviation @@ -10012,7 +10007,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 1 ; } #Emission mass flux from agriculture livestock @@ -10020,7 +10014,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 14 ; } #Emission mass flux from agriculture soils @@ -10028,7 +10021,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 15 ; } #Emission mass flux from agricultural waste burning @@ -10036,7 +10028,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 16 ; } #Emission mass flux from residential, commercial and other combustion @@ -10044,7 +10035,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 18 ; } #Emission mass flux from power generation @@ -10052,7 +10042,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 19 ; } #Emission mass flux from fugitives @@ -10060,7 +10049,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 21 ; } #Emission mass flux from industrial process @@ -10068,7 +10056,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 22 ; } #Emission mass flux from solvents @@ -10076,7 +10063,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 23 ; } #Emission mass flux from ships @@ -10084,7 +10070,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 24 ; } #Emission mass flux from wastes (solid and water) @@ -10092,7 +10077,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 25 ; } #Emission mass flux from off-road transportation @@ -10100,7 +10084,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 27 ; } #Emission mass flux from road transportation @@ -10108,7 +10091,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 26 ; } #Emission mass flux from super power stations @@ -10116,7 +10098,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 20 ; } #Emission mass flux from volcanoes @@ -10124,7 +10105,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Emission mass flux from wetlands @@ -10132,7 +10112,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 10 ; } #Net ecosystem exchange flux @@ -10200,7 +10179,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 8 ; } #Emission mass flux from fossil fuel @@ -10208,7 +10186,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 9 ; } #Emission mass flux from other @@ -10216,7 +10193,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 0 ; } #Emission mass flux from oceans @@ -10224,7 +10200,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 11 ; } #Accumulated wet deposition mass flux @@ -10252,7 +10227,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Total column vertically-integrated mass density from volcanoes @@ -10262,7 +10236,6 @@ parameterNumber = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Dry deposition velocity from volcanoes @@ -10270,7 +10243,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Aerosol optical depth diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index f1a26b807..b2c177989 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -14121,7 +14121,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 192 ; } #Emission mass flux from biomass burning @@ -14130,7 +14129,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 193 ; } #Emission mass flux from settlements @@ -14139,7 +14137,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 194 ; } #Emission mass flux from soil @@ -14148,7 +14145,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 195 ; } #Emission mass flux from wild animals @@ -14157,7 +14153,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 196 ; } #Aerosol negative fixer mass flux @@ -14187,7 +14182,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 197 ; } #Emission mass flux from residential heating @@ -14196,7 +14190,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 198 ; } #Emission mass flux from oil refineries and transformation industry @@ -14205,7 +14198,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 199 ; } #Emission mass flux from gas production @@ -14214,7 +14206,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 200 ; } #Stream function gradient diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index 46f80dc2c..888748dfb 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -14121,7 +14121,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 192 ; } #Emission mass flux from biomass burning @@ -14130,7 +14129,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 193 ; } #Emission mass flux from settlements @@ -14139,7 +14137,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 194 ; } #Emission mass flux from soil @@ -14148,7 +14145,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 195 ; } #Emission mass flux from wild animals @@ -14157,7 +14153,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 196 ; } #Aerosol negative fixer mass flux @@ -14187,7 +14182,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 197 ; } #Emission mass flux from residential heating @@ -14196,7 +14190,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 198 ; } #Emission mass flux from oil refineries and transformation industry @@ -14205,7 +14198,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 199 ; } #Emission mass flux from gas production @@ -14214,7 +14206,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 200 ; } #Stream function gradient diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index 10245c6bb..3ca97c1b6 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -14121,7 +14121,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 192 ; } #Emission mass flux from biomass burning @@ -14130,7 +14129,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 193 ; } #Emission mass flux from settlements @@ -14139,7 +14137,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 194 ; } #Emission mass flux from soil @@ -14148,7 +14145,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 195 ; } #Emission mass flux from wild animals @@ -14157,7 +14153,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 196 ; } #Aerosol negative fixer mass flux @@ -14187,7 +14182,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 197 ; } #Emission mass flux from residential heating @@ -14196,7 +14190,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 198 ; } #Emission mass flux from oil refineries and transformation industry @@ -14205,7 +14198,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 199 ; } #Emission mass flux from gas production @@ -14214,7 +14206,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 200 ; } #Stream function gradient diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index 88148b199..32d77c7e1 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -14121,7 +14121,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 192 ; } #Emission mass flux from biomass burning @@ -14130,7 +14129,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 193 ; } #Emission mass flux from settlements @@ -14139,7 +14137,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 194 ; } #Emission mass flux from soil @@ -14148,7 +14145,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 195 ; } #Emission mass flux from wild animals @@ -14157,7 +14153,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 196 ; } #Aerosol negative fixer mass flux @@ -14187,7 +14182,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 197 ; } #Emission mass flux from residential heating @@ -14196,7 +14190,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 198 ; } #Emission mass flux from oil refineries and transformation industry @@ -14205,7 +14198,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 199 ; } #Emission mass flux from gas production @@ -14214,7 +14206,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 200 ; } #Stream function gradient diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 720c17198..53160fa65 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -14121,7 +14121,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 192 ; } #Emission mass flux from biomass burning @@ -14130,7 +14129,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 193 ; } #Emission mass flux from settlements @@ -14139,7 +14137,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 194 ; } #Emission mass flux from soil @@ -14148,7 +14145,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 195 ; } #Emission mass flux from wild animals @@ -14157,7 +14153,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 196 ; } #Aerosol negative fixer mass flux @@ -14187,7 +14182,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 197 ; } #Emission mass flux from residential heating @@ -14196,7 +14190,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 198 ; } #Emission mass flux from oil refineries and transformation industry @@ -14205,7 +14198,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 199 ; } #Emission mass flux from gas production @@ -14214,7 +14206,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 200 ; } #Stream function gradient diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 7764aed03..f2baef1fb 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -9930,7 +9930,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 255 ; } #Dry deposition velocity @@ -9980,7 +9979,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 6 ; } #Emission mass flux from anthropogenic sources @@ -9988,7 +9986,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 4 ; } #Emission mass flux from elevated anthropogenic sources @@ -9996,7 +9993,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 12 ; } #Emission mass flux from surface anthropogenic sources @@ -10004,7 +10000,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 13 ; } #Emission from aviation @@ -10012,7 +10007,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 1 ; } #Emission mass flux from agriculture livestock @@ -10020,7 +10014,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 14 ; } #Emission mass flux from agriculture soils @@ -10028,7 +10021,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 15 ; } #Emission mass flux from agricultural waste burning @@ -10036,7 +10028,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 16 ; } #Emission mass flux from residential, commercial and other combustion @@ -10044,7 +10035,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 18 ; } #Emission mass flux from power generation @@ -10052,7 +10042,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 19 ; } #Emission mass flux from fugitives @@ -10060,7 +10049,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 21 ; } #Emission mass flux from industrial process @@ -10068,7 +10056,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 22 ; } #Emission mass flux from solvents @@ -10076,7 +10063,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 23 ; } #Emission mass flux from ships @@ -10084,7 +10070,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 24 ; } #Emission mass flux from wastes (solid and water) @@ -10092,7 +10077,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 25 ; } #Emission mass flux from off-road transportation @@ -10100,7 +10084,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 27 ; } #Emission mass flux from road transportation @@ -10108,7 +10091,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 26 ; } #Emission mass flux from super power stations @@ -10116,7 +10098,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 20 ; } #Emission mass flux from volcanoes @@ -10124,7 +10105,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Emission mass flux from wetlands @@ -10132,7 +10112,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 10 ; } #Net ecosystem exchange flux @@ -10200,7 +10179,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 8 ; } #Emission mass flux from fossil fuel @@ -10208,7 +10186,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 9 ; } #Emission mass flux from other @@ -10216,7 +10193,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 0 ; } #Emission mass flux from oceans @@ -10224,7 +10200,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 11 ; } #Accumulated wet deposition mass flux @@ -10252,7 +10227,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Total column vertically-integrated mass density from volcanoes @@ -10262,7 +10236,6 @@ parameterNumber = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Dry deposition velocity from volcanoes @@ -10270,7 +10243,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Aerosol optical depth diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 4364fde7b..edc5f855c 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -9930,7 +9930,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 255 ; } #Dry deposition velocity @@ -9980,7 +9979,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 6 ; } #Emission mass flux from anthropogenic sources @@ -9988,7 +9986,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 4 ; } #Emission mass flux from elevated anthropogenic sources @@ -9996,7 +9993,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 12 ; } #Emission mass flux from surface anthropogenic sources @@ -10004,7 +10000,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 13 ; } #Emission from aviation @@ -10012,7 +10007,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 1 ; } #Emission mass flux from agriculture livestock @@ -10020,7 +10014,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 14 ; } #Emission mass flux from agriculture soils @@ -10028,7 +10021,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 15 ; } #Emission mass flux from agricultural waste burning @@ -10036,7 +10028,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 16 ; } #Emission mass flux from residential, commercial and other combustion @@ -10044,7 +10035,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 18 ; } #Emission mass flux from power generation @@ -10052,7 +10042,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 19 ; } #Emission mass flux from fugitives @@ -10060,7 +10049,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 21 ; } #Emission mass flux from industrial process @@ -10068,7 +10056,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 22 ; } #Emission mass flux from solvents @@ -10076,7 +10063,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 23 ; } #Emission mass flux from ships @@ -10084,7 +10070,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 24 ; } #Emission mass flux from wastes (solid and water) @@ -10092,7 +10077,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 25 ; } #Emission mass flux from off-road transportation @@ -10100,7 +10084,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 27 ; } #Emission mass flux from road transportation @@ -10108,7 +10091,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 26 ; } #Emission mass flux from super power stations @@ -10116,7 +10098,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 20 ; } #Emission mass flux from volcanoes @@ -10124,7 +10105,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Emission mass flux from wetlands @@ -10132,7 +10112,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 10 ; } #Net ecosystem exchange flux @@ -10200,7 +10179,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 8 ; } #Emission mass flux from fossil fuel @@ -10208,7 +10186,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 9 ; } #Emission mass flux from other @@ -10216,7 +10193,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 0 ; } #Emission mass flux from oceans @@ -10224,7 +10200,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 11 ; } #Accumulated wet deposition mass flux @@ -10252,7 +10227,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Total column vertically-integrated mass density from volcanoes @@ -10262,7 +10236,6 @@ parameterNumber = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Dry deposition velocity from volcanoes @@ -10270,7 +10243,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Aerosol optical depth diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index c85560c5a..208d8f372 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -9930,7 +9930,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 255 ; } #Dry deposition velocity @@ -9980,7 +9979,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 6 ; } #Emission mass flux from anthropogenic sources @@ -9988,7 +9986,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 4 ; } #Emission mass flux from elevated anthropogenic sources @@ -9996,7 +9993,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 12 ; } #Emission mass flux from surface anthropogenic sources @@ -10004,7 +10000,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 13 ; } #Emission from aviation @@ -10012,7 +10007,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 1 ; } #Emission mass flux from agriculture livestock @@ -10020,7 +10014,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 14 ; } #Emission mass flux from agriculture soils @@ -10028,7 +10021,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 15 ; } #Emission mass flux from agricultural waste burning @@ -10036,7 +10028,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 16 ; } #Emission mass flux from residential, commercial and other combustion @@ -10044,7 +10035,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 18 ; } #Emission mass flux from power generation @@ -10052,7 +10042,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 19 ; } #Emission mass flux from fugitives @@ -10060,7 +10049,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 21 ; } #Emission mass flux from industrial process @@ -10068,7 +10056,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 22 ; } #Emission mass flux from solvents @@ -10076,7 +10063,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 23 ; } #Emission mass flux from ships @@ -10084,7 +10070,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 24 ; } #Emission mass flux from wastes (solid and water) @@ -10092,7 +10077,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 25 ; } #Emission mass flux from off-road transportation @@ -10100,7 +10084,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 27 ; } #Emission mass flux from road transportation @@ -10108,7 +10091,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 26 ; } #Emission mass flux from super power stations @@ -10116,7 +10098,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 20 ; } #Emission mass flux from volcanoes @@ -10124,7 +10105,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Emission mass flux from wetlands @@ -10132,7 +10112,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 10 ; } #Net ecosystem exchange flux @@ -10200,7 +10179,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 8 ; } #Emission mass flux from fossil fuel @@ -10208,7 +10186,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 9 ; } #Emission mass flux from other @@ -10216,7 +10193,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 0 ; } #Emission mass flux from oceans @@ -10224,7 +10200,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 11 ; } #Accumulated wet deposition mass flux @@ -10252,7 +10227,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Total column vertically-integrated mass density from volcanoes @@ -10262,7 +10236,6 @@ parameterNumber = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Dry deposition velocity from volcanoes @@ -10270,7 +10243,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Aerosol optical depth diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index c2f4e3270..e11e8ddc9 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -9930,7 +9930,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 255 ; } #Dry deposition velocity @@ -9980,7 +9979,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 6 ; } #Emission mass flux from anthropogenic sources @@ -9988,7 +9986,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 4 ; } #Emission mass flux from elevated anthropogenic sources @@ -9996,7 +9993,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 12 ; } #Emission mass flux from surface anthropogenic sources @@ -10004,7 +10000,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 13 ; } #Emission from aviation @@ -10012,7 +10007,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 1 ; } #Emission mass flux from agriculture livestock @@ -10020,7 +10014,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 14 ; } #Emission mass flux from agriculture soils @@ -10028,7 +10021,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 15 ; } #Emission mass flux from agricultural waste burning @@ -10036,7 +10028,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 16 ; } #Emission mass flux from residential, commercial and other combustion @@ -10044,7 +10035,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 18 ; } #Emission mass flux from power generation @@ -10052,7 +10042,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 19 ; } #Emission mass flux from fugitives @@ -10060,7 +10049,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 21 ; } #Emission mass flux from industrial process @@ -10068,7 +10056,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 22 ; } #Emission mass flux from solvents @@ -10076,7 +10063,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 23 ; } #Emission mass flux from ships @@ -10084,7 +10070,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 24 ; } #Emission mass flux from wastes (solid and water) @@ -10092,7 +10077,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 25 ; } #Emission mass flux from off-road transportation @@ -10100,7 +10084,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 27 ; } #Emission mass flux from road transportation @@ -10108,7 +10091,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 26 ; } #Emission mass flux from super power stations @@ -10116,7 +10098,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 20 ; } #Emission mass flux from volcanoes @@ -10124,7 +10105,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Emission mass flux from wetlands @@ -10132,7 +10112,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 10 ; } #Net ecosystem exchange flux @@ -10200,7 +10179,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 8 ; } #Emission mass flux from fossil fuel @@ -10208,7 +10186,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 9 ; } #Emission mass flux from other @@ -10216,7 +10193,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 0 ; } #Emission mass flux from oceans @@ -10224,7 +10200,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 77 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 11 ; } #Accumulated wet deposition mass flux @@ -10252,7 +10227,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Total column vertically-integrated mass density from volcanoes @@ -10262,7 +10236,6 @@ parameterNumber = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Dry deposition velocity from volcanoes @@ -10270,7 +10243,6 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Aerosol optical depth diff --git a/tests/grib_local.sh b/tests/grib_local.sh index 62b1b27e4..830dd124d 100755 --- a/tests/grib_local.sh +++ b/tests/grib_local.sh @@ -217,8 +217,9 @@ ${tools_dir}/grib_compare $temp $temp.1 ${tools_dir}/grib_set -s paramId=211123,setLocalDefinition=1,localDefinitionNumber=36 $sample_g2 $temp grib_check_key_equals $temp productDefinitionTemplateNumber 40 -${tools_dir}/grib_set -s paramId=456000,setLocalDefinition=1,localDefinitionNumber=36 $sample_g2 $temp -grib_check_key_equals $temp productDefinitionTemplateNumber 76 +# Also see ECC-1760: is_chemical_srcsink removed so no automaric selection of product definition template +${tools_dir}/grib_set -s productDefinitionTemplateNumber=76,paramId=456000,setLocalDefinition=1,localDefinitionNumber=36 $sample_g2 $temp +grib_check_key_equals $temp shortName drydep_vel_vol ${tools_dir}/grib_set -s paramId=215225,setLocalDefinition=1,localDefinitionNumber=36 $sample_g2 $temp grib_check_key_equals $temp productDefinitionTemplateNumber 48 From 9b25a231ebc4c7aae67b8a78d286273afa1f438b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 8 Jul 2024 11:05:40 +0000 Subject: [PATCH 14/17] ECC-1857: GRIB2: Update WMO encoding in soil moisture parameters and add time-mean variant --- definitions/grib2/cfVarName.def | 38 ++++++++++++++++--- .../grib2/localConcepts/s2s/cfVarName.def | 26 +++++++++++++ definitions/grib2/localConcepts/s2s/name.def | 26 +++++++++++++ .../grib2/localConcepts/s2s/paramId.def | 26 +++++++++++++ .../grib2/localConcepts/s2s/shortName.def | 26 +++++++++++++ definitions/grib2/localConcepts/s2s/units.def | 26 +++++++++++++ definitions/grib2/name.def | 38 ++++++++++++++++--- definitions/grib2/paramId.def | 38 ++++++++++++++++--- definitions/grib2/shortName.def | 38 ++++++++++++++++--- definitions/grib2/units.def | 38 ++++++++++++++++--- 10 files changed, 290 insertions(+), 30 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 437d399ce..279f9a2c4 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -3060,8 +3060,8 @@ #Soil moisture top 20 cm 'sm20' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; @@ -3072,14 +3072,14 @@ #Soil moisture top 100 cm 'sm100' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; } #Total column supercooled liquid water 'tcslw' = { @@ -4958,6 +4958,32 @@ parameterNumber = 32 ; typeOfStatisticalProcessing = 0 ; } +#Time-mean soil moisture top 20 cm +'avg_sm20' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Time-mean soil moisture top 100 cm +'avg_sm100' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } #Time-mean most-unstable CAPE 'avg_mucape' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/s2s/cfVarName.def b/definitions/grib2/localConcepts/s2s/cfVarName.def index 551609168..ebbc8da75 100644 --- a/definitions/grib2/localConcepts/s2s/cfVarName.def +++ b/definitions/grib2/localConcepts/s2s/cfVarName.def @@ -173,6 +173,32 @@ scaleFactorOfSecondFixedSurface = missing() ; typeOfStatisticalProcessing = 0 ; } +#Soil moisture top 20 cm +'sm20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Soil moisture top 100 cm +'sm100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } #Eastward surface sea water velocity 'ocu' = { discipline = 10 ; diff --git a/definitions/grib2/localConcepts/s2s/name.def b/definitions/grib2/localConcepts/s2s/name.def index cf970208c..abed50244 100644 --- a/definitions/grib2/localConcepts/s2s/name.def +++ b/definitions/grib2/localConcepts/s2s/name.def @@ -173,6 +173,32 @@ scaleFactorOfSecondFixedSurface = missing() ; typeOfStatisticalProcessing = 0 ; } +#Soil moisture top 20 cm +'Soil moisture top 20 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Soil moisture top 100 cm +'Soil moisture top 100 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } #Eastward surface sea water velocity 'Eastward surface sea water velocity' = { discipline = 10 ; diff --git a/definitions/grib2/localConcepts/s2s/paramId.def b/definitions/grib2/localConcepts/s2s/paramId.def index bfc1c9ee1..b66fbed7d 100644 --- a/definitions/grib2/localConcepts/s2s/paramId.def +++ b/definitions/grib2/localConcepts/s2s/paramId.def @@ -173,6 +173,32 @@ scaleFactorOfSecondFixedSurface = missing() ; typeOfStatisticalProcessing = 0 ; } +#Soil moisture top 20 cm +'228086' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Soil moisture top 100 cm +'228087' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } #Eastward surface sea water velocity '151131' = { discipline = 10 ; diff --git a/definitions/grib2/localConcepts/s2s/shortName.def b/definitions/grib2/localConcepts/s2s/shortName.def index 135b5992a..20fda1a28 100644 --- a/definitions/grib2/localConcepts/s2s/shortName.def +++ b/definitions/grib2/localConcepts/s2s/shortName.def @@ -173,6 +173,32 @@ scaleFactorOfSecondFixedSurface = missing() ; typeOfStatisticalProcessing = 0 ; } +#Soil moisture top 20 cm +'sm20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Soil moisture top 100 cm +'sm100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } #Eastward surface sea water velocity 'ocu' = { discipline = 10 ; diff --git a/definitions/grib2/localConcepts/s2s/units.def b/definitions/grib2/localConcepts/s2s/units.def index a37997b56..ce7216cee 100644 --- a/definitions/grib2/localConcepts/s2s/units.def +++ b/definitions/grib2/localConcepts/s2s/units.def @@ -173,6 +173,32 @@ scaleFactorOfSecondFixedSurface = missing() ; typeOfStatisticalProcessing = 0 ; } +#Soil moisture top 20 cm +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Soil moisture top 100 cm +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } #Eastward surface sea water velocity 'm s**-1' = { discipline = 10 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index f2baef1fb..f7f2ae2b8 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -3060,8 +3060,8 @@ #Soil moisture top 20 cm 'Soil moisture top 20 cm' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; @@ -3072,14 +3072,14 @@ #Soil moisture top 100 cm 'Soil moisture top 100 cm' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; } #Total column supercooled liquid water 'Total column supercooled liquid water' = { @@ -4958,6 +4958,32 @@ parameterNumber = 32 ; typeOfStatisticalProcessing = 0 ; } +#Time-mean soil moisture top 20 cm +'Time-mean soil moisture top 20 cm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Time-mean soil moisture top 100 cm +'Time-mean soil moisture top 100 cm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } #Time-mean most-unstable CAPE 'Time-mean most-unstable CAPE' = { discipline = 0 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index edc5f855c..b120aa998 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -3060,8 +3060,8 @@ #Soil moisture top 20 cm '228086' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; @@ -3072,14 +3072,14 @@ #Soil moisture top 100 cm '228087' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; } #Total column supercooled liquid water '228088' = { @@ -4958,6 +4958,32 @@ parameterNumber = 32 ; typeOfStatisticalProcessing = 0 ; } +#Time-mean soil moisture top 20 cm +'235113' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Time-mean soil moisture top 100 cm +'235114' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } #Time-mean most-unstable CAPE '235117' = { discipline = 0 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 208d8f372..7699c9f35 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -3060,8 +3060,8 @@ #Soil moisture top 20 cm 'sm20' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; @@ -3072,14 +3072,14 @@ #Soil moisture top 100 cm 'sm100' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; } #Total column supercooled liquid water 'tcslw' = { @@ -4958,6 +4958,32 @@ parameterNumber = 32 ; typeOfStatisticalProcessing = 0 ; } +#Time-mean soil moisture top 20 cm +'avg_sm20' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Time-mean soil moisture top 100 cm +'avg_sm100' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } #Time-mean most-unstable CAPE 'avg_mucape' = { discipline = 0 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index e11e8ddc9..f4b4cb7df 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -3060,8 +3060,8 @@ #Soil moisture top 20 cm 'kg m**-3' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; @@ -3072,14 +3072,14 @@ #Soil moisture top 100 cm 'kg m**-3' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; } #Total column supercooled liquid water 'kg m**-2' = { @@ -4958,6 +4958,32 @@ parameterNumber = 32 ; typeOfStatisticalProcessing = 0 ; } +#Time-mean soil moisture top 20 cm +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Time-mean soil moisture top 100 cm +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 1 ; + scaleFactorOfSecondFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } #Time-mean most-unstable CAPE 'J kg**-1' = { discipline = 0 ; From 73e0b8241779b5da429f7f48a235552bf92e240c Mon Sep 17 00:00:00 2001 From: shahramn Date: Mon, 8 Jul 2024 15:47:40 +0100 Subject: [PATCH 15/17] Debugging messages --- src/grib_value.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grib_value.cc b/src/grib_value.cc index 1142fa6a6..32c637964 100644 --- a/src/grib_value.cc +++ b/src/grib_value.cc @@ -1773,7 +1773,7 @@ int grib_set_values(grib_handle* h, grib_values* args, size_t count) if (h->context->debug) { for (i = 0; i < count; i++) { - grib_print_values("ECCODES DEBUG set key/value pairs", &args[i], stderr); + grib_print_values("ECCODES DEBUG about to set key/value pair", &args[i], stderr); } } From 8cd742d75598ca2d07e3baf725eeaf94020865ee Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 8 Jul 2024 15:17:19 +0000 Subject: [PATCH 16/17] ECC-1862: GRIB2: Add parameter for water vapour increment --- definitions/grib2/localConcepts/ecmf/cfVarName.def | 10 ++++++++++ definitions/grib2/localConcepts/ecmf/name.def | 10 ++++++++++ definitions/grib2/localConcepts/ecmf/paramId.def | 10 ++++++++++ definitions/grib2/localConcepts/ecmf/shortName.def | 10 ++++++++++ definitions/grib2/localConcepts/ecmf/units.def | 10 ++++++++++ 5 files changed, 50 insertions(+) diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index b2c177989..1ddf27ad0 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -3035,6 +3035,16 @@ parameterCategory = 211 ; parameterNumber = 56 ; } +#Water vapour (chemistry) difference +'h2odiff' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 1 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Altitude of emitter 'alediff' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index 888748dfb..f2d776220 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -3035,6 +3035,16 @@ parameterCategory = 211 ; parameterNumber = 56 ; } +#Water vapour (chemistry) difference +'Water vapour (chemistry) difference' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 1 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Altitude of emitter 'Altitude of emitter' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index 3ca97c1b6..705e33a26 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -3035,6 +3035,16 @@ parameterCategory = 211 ; parameterNumber = 56 ; } +#Water vapour (chemistry) difference +'211059' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 1 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Altitude of emitter '211119' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index 32d77c7e1..78f8f2fe9 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -3035,6 +3035,16 @@ parameterCategory = 211 ; parameterNumber = 56 ; } +#Water vapour (chemistry) difference +'h2odiff' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 1 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Altitude of emitter 'alediff' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 53160fa65..4f611fb61 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -3035,6 +3035,16 @@ parameterCategory = 211 ; parameterNumber = 56 ; } +#Water vapour (chemistry) difference +'kg kg**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 1 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Altitude of emitter 'm' = { discipline = 192 ; From 4ba2be2f28052d2bd1bb9abe3b0cafd9ecc39826 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 8 Jul 2024 15:47:39 +0000 Subject: [PATCH 17/17] ECC-1863: GRIB2: Update WMO encoding in base soil moisture parameter --- definitions/grib2/cfVarName.def | 4 ++-- definitions/grib2/name.def | 4 ++-- definitions/grib2/paramId.def | 4 ++-- definitions/grib2/shortName.def | 4 ++-- definitions/grib2/units.def | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 279f9a2c4..8502798d2 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -11261,8 +11261,8 @@ #Soil moisture 'sm' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; } #10 metre u-component of neutral wind 'u10n' = { diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index f7f2ae2b8..819ad1af9 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -11261,8 +11261,8 @@ #Soil moisture 'Soil moisture' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; } #10 metre u-component of neutral wind '10 metre u-component of neutral wind' = { diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index b120aa998..e60c16b6d 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -11261,8 +11261,8 @@ #Soil moisture '228039' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; } #10 metre u-component of neutral wind '228131' = { diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 7699c9f35..a35b7af85 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -11261,8 +11261,8 @@ #Soil moisture 'sm' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; } #10 metre u-component of neutral wind 'u10n' = { diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index f4b4cb7df..ca27212b5 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -11261,8 +11261,8 @@ #Soil moisture 'kg m**-3' = { discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; + parameterCategory = 3 ; + parameterNumber = 19 ; } #10 metre u-component of neutral wind 'm s**-1' = {