Antonio Valentino pushed to branch master at Debian GIS Project / satpy
Commits: 03494610 by Antonio Valentino at 2021-01-10T09:31:35+00:00 New upstream version 0.25.1 - - - - - 1d58305c by Antonio Valentino at 2021-01-10T09:31:49+00:00 Update upstream source from tag 'upstream/0.25.1' Update to upstream version '0.25.1' with Debian dir 6f757454bd01d18350e23997f211c5b32e38f7a5 - - - - - 28d62b6c by Antonio Valentino at 2021-01-10T09:33:40+00:00 New upstream release - - - - - 93b33b15 by Antonio Valentino at 2021-01-10T09:42:09+00:00 Set distribution to unstable - - - - - 6 changed files: - .git_archival.txt - AUTHORS.md - CHANGELOG.md - debian/changelog - satpy/readers/agri_l1.py - satpy/tests/reader_tests/test_agri_l1.py Changes: ===================================== .git_archival.txt ===================================== @@ -1 +1 @@ -ref-names: tag: v0.25.0 \ No newline at end of file +ref-names: HEAD -> master, tag: v0.25.1 \ No newline at end of file ===================================== AUTHORS.md ===================================== @@ -33,6 +33,7 @@ The following people have made contributions to this project: - [Marc Honnorat (honnorat)](https://github.com/honnorat) - [Mikhail Itkin (mitkin)](https://github.com/mitkin) - [Tommy Jasmin (tommyjasmin)](https://github.com/tommyjasmin) +- [Jactry Zeng](https://github.com/jactry) - [Johannes Johansson (JohannesSMHI)](https://github.com/JohannesSMHI) - [Sauli Joro (sjoro)](https://github.com/sjoro) - [Janne Kotro (jkotro)](https://github.com/jkotro) ===================================== CHANGELOG.md ===================================== @@ -1,3 +1,21 @@ +## Version 0.25.1 (2021/01/06) + +### Issues Closed + +* [Issue 1500](https://github.com/pytroll/satpy/issues/1500) - Cannot create a scene for OLCI data + +In this release 1 issue was closed. + +### Pull Requests Merged + +#### Bugs fixed + +* [PR 1502](https://github.com/pytroll/satpy/pull/1502) - Fix the linting error of test_agri_l1 +* [PR 1459](https://github.com/pytroll/satpy/pull/1459) - Remove unnecessary string decode in agri_l1 reader + +In this release 2 pull requests were closed. + + ## Version 0.25.0 (2021/01/04) ### Issues Closed ===================================== debian/changelog ===================================== @@ -1,3 +1,9 @@ +satpy (0.25.1-1) unstable; urgency=medium + + * New upstream release. + + -- Antonio Valentino <[email protected]> Sun, 10 Jan 2021 09:41:47 +0000 + satpy (0.25.0-1) unstable; urgency=medium [ Bas Couwenberg ] ===================================== satpy/readers/agri_l1.py ===================================== @@ -62,12 +62,6 @@ class HDF_AGRI_L1(HDF5FileHandler): if data.ndim >= 2: data = data.rename({data.dims[-2]: 'y', data.dims[-1]: 'x'}) - # convert bytes to string - data.attrs['long_name'] = data.attrs['long_name'].decode('gbk') - data.attrs['band_names'] = data.attrs['band_names'].decode('gbk') - if ds_info['file_type'] != 'agri_l1_4000m_geo': - data.attrs['center_wavelength'] = data.attrs['center_wavelength'].decode('gbk') - # calibration calibration = ds_info['calibration'] ===================================== satpy/tests/reader_tests/test_agri_l1.py ===================================== @@ -73,7 +73,7 @@ class FakeHDF5FileHandler2(FakeHDF5FileHandler): 'Slope': 1., 'Intercept': 0., 'FillValue': 0, 'units': 'NUL', - 'band_names': 'NUL'.format(ch).encode('utf-8'), + 'band_names': 'NUL', 'long_name': b'Calibration coefficient (SCALE and OFFSET)', 'valid_range': [-500, 500], }, @@ -86,7 +86,7 @@ class FakeHDF5FileHandler2(FakeHDF5FileHandler): 'Slope': 1., 'Intercept': 0., 'FillValue': 0, 'units': 'NUL', - 'band_names': 'NUL'.format(ch).encode('utf-8'), + 'band_names': 'NUL', 'long_name': b'Calibration coefficient (SCALE and OFFSET)', 'valid_range': [-500, 500], }, @@ -99,7 +99,7 @@ class FakeHDF5FileHandler2(FakeHDF5FileHandler): 'Slope': 1., 'Intercept': 0., 'FillValue': 0, 'units': 'NUL', - 'band_names': 'NUL'.format(ch).encode('utf-8'), + 'band_names': 'NUL', 'long_name': b'Calibration coefficient (SCALE and OFFSET)', 'valid_range': [-500, 500], }, @@ -113,7 +113,7 @@ class FakeHDF5FileHandler2(FakeHDF5FileHandler): 'Slope': 1., 'Intercept': 0., 'FillValue': 0, 'units': 'NUL', - 'band_names': 'NUL'.format(ch).encode('utf-8'), + 'band_names': 'NUL', 'long_name': b'Calibration coefficient (SCALE and OFFSET)', 'valid_range': [-500, 500], }, View it on GitLab: https://salsa.debian.org/debian-gis-team/satpy/-/compare/06324395ea4cefb8e661372020e6c5745da5c6ad...93b33b155ce202c05ef1ea583f4e78007234ff89 -- View it on GitLab: https://salsa.debian.org/debian-gis-team/satpy/-/compare/06324395ea4cefb8e661372020e6c5745da5c6ad...93b33b155ce202c05ef1ea583f4e78007234ff89 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
