mirror of https://github.com/ecmwf/eccodes.git
ECC-1510: GRIB2: Add support for template 5.200 (Run length packing with level values)
This commit is contained in:
parent
b5732d2b71
commit
a27bbd86dd
|
@ -52,7 +52,7 @@ struct accessor_class_hash { char *name; grib_accessor_class **cclass;};
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
static unsigned int
|
static unsigned int
|
||||||
grib_accessor_classes_get_id (register const char *str, register size_t len)
|
grib_accessor_classes_get_id (const char *str, size_t len)
|
||||||
{
|
{
|
||||||
static const unsigned short asso_values[] =
|
static const unsigned short asso_values[] =
|
||||||
{
|
{
|
||||||
|
@ -83,7 +83,7 @@ grib_accessor_classes_get_id (register const char *str, register size_t len)
|
||||||
832, 832, 832, 832, 832, 832, 832, 832, 832, 832,
|
832, 832, 832, 832, 832, 832, 832, 832, 832, 832,
|
||||||
832, 832, 832, 832, 832, 832
|
832, 832, 832, 832, 832, 832
|
||||||
};
|
};
|
||||||
register unsigned int hval = len;
|
unsigned int hval = len;
|
||||||
|
|
||||||
switch (hval)
|
switch (hval)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue