grib2io v2.2.2
What's Changed
- Fixed a bug where grib2io was not properly opening Gzipped GRIB2 files by @EricEngle-NOAA in 95e397d
- Fixed an issue with the scenario where of calling
flush_data()
on aGrib2Message
object created from a user (i.e. not read from file) would raise an error by @EricEngle-NOAA in 95e397d - Fixed an issue with the scenario of calling
pack()
method for aGrib2Message
object where data areNone
. Moving forward,pack()
will attempt to pack data if it can be found (i.e. reading data from disk) by @EricEngle-NOAA in 95e397d - Cleaned up logic of handling the
Grib2MessageOnDiskArray
object in theGrib2Message
object when flushing unpacked data. Moving forward, theGrib2Message._data
private attribute will be eitherNone
ornumpy.ndarray
andGrib2Message._ondiskarray
will always beNone
orGrib2MessageOnDiskArray
. by @EricEngle-NOAA in 95e397d
Full Changelog: v2.2.1...v2.2.2