eccodes icon indicating copy to clipboard operation
eccodes copied to clipboard

ECMWF's GRIB and BUFR decoding/encoding library

Results 17 eccodes issues
Sort by recently updated
recently updated
newest added

Could you merge the codes to read the following data? http://www.jmbsc-west.jp/jp/online/online-sample/NOWC_GPV_Ggis1km/NOWC_GPV_Ggis1km_Prr05lv.zip Best regards

NOTE: Mark this as "Draft" because this depends on #63 and #60 On grib_bitsPerValue.sh, restrict maximum bitsPerValue value (MAX_BPV) to 31 on linux 32 bit, higher value is not supported....

Currently grib_encode_size_t / grib_decode_size_t are defined and especially on windows where size_t is 64 bit, encode_double_array and decode_double_array use them. So especially for 32 bit linux system, define uint64_t type...

On 32 bit system, unsigned 32 bit value cannot be read with atol. Use atoll and cast the result to long. The proposal patch fixes the following test failure on...

In grib_decode_unsigned_long and so on, when input argument nbits is 32 (which should be supported on 32bit) and in the case "bitsToRead might now be negative (too many bits read)"...

stdio.seek, which calls fseeko, uses "off_t" for argument, and when seeking toward head of the file, passing negative off_t value must be passed. Currently when callling stdio.seek, "size_t" variable is...

Resulted in poor performance when reading thousands of files.

When **_codes_index_add_file** is invoked from **codes_index_add_file**, a new file structure variable (**newfile**) is created and this variable is added to the list of index files. However, later when the field_tree...

Recently unit tests (mostly ubuntu/travis-ci) fail due to failure in downloading of test data. (The probability of seeing the problem is much higher if I run the test locally in...

It is thread-unsafe to dereference a pointer to a trie node outside of the critical region protected by the mutex because another thread may delete the node before the dereference,...