Antonio Valentino pushed to branch master at Debian GIS Project / xarray-safe-s1
Commits: 2ab38a24 by Antonio Valentino at 2026-01-24T18:55:31+00:00 New upstream version 2026.1.23 - - - - - ef2829f2 by Antonio Valentino at 2026-01-24T18:55:32+00:00 Update upstream source from tag 'upstream/2026.1.23' Update to upstream version '2026.1.23' with Debian dir 0d007eecf47bf5762a482e393a0eb03687ef0282 - - - - - f715c466 by Antonio Valentino at 2026-01-24T18:56:11+00:00 New upstream release - - - - - 7d5b50b8 by Antonio Valentino at 2026-01-24T18:57:02+00:00 Update dates in d/copyright - - - - - 78486157 by Antonio Valentino at 2026-01-24T18:58:30+00:00 Set distribution to unstable - - - - - 5 changed files: - debian/changelog - debian/copyright - safe_s1/__init__.py - safe_s1/reader.py - safe_s1/sentinel1_xml_mappings.py Changes: ===================================== debian/changelog ===================================== @@ -1,10 +1,14 @@ -xarray-safe-s1 (2025.12.4-2) UNRELEASED; urgency=medium +xarray-safe-s1 (2026.1.23-1) unstable; urgency=medium - * Team upload. + [ Bas Couwenberg ] * Drop Priority: optional, default since dpkg 1.22.13. * Bump Standards-Version to 4.7.3, changes: priority. - -- Bas Couwenberg <[email protected]> Sat, 03 Jan 2026 14:23:28 +0100 + [ Antonio Valentino ] + * New upstream release. + * Update dates in d/copyright. + + -- Antonio Valentino <[email protected]> Sat, 24 Jan 2026 18:58:13 +0000 xarray-safe-s1 (2025.12.4-1) unstable; urgency=medium ===================================== debian/copyright ===================================== @@ -9,7 +9,7 @@ Copyright: 2023, xarray-safe-rcm developers License: Expat Files: debian/* -Copyright: 2023-2025, Antonio Valentino <[email protected]> +Copyright: 2023-2026, Antonio Valentino <[email protected]> License: Expat License: Expat ===================================== safe_s1/__init__.py ===================================== @@ -1,6 +1,6 @@ import traceback -from safe_s1.reader import Sentinel1Reader +from safe_s1.reader import Sentinel1Reader # noqa: F401 try: from importlib import metadata ===================================== safe_s1/reader.py ===================================== @@ -728,7 +728,7 @@ class Sentinel1Reader: noise_lut_azi_raw_ds[vari].attrs["description"] = hihi tmp.append(noise_lut_azi_raw_ds) - ds = xr.concat(tmp, pd.Index(pols, name="pol")) + ds = xr.concat(tmp, pd.Index(pols, name="pol", dtype=object)) ds.attrs["history"] = "\n".join(history) return ds @@ -767,7 +767,7 @@ class Sentinel1Reader: ) ) tmp.append(noise_lut_range_raw_ds) - ds = xr.concat(tmp, pd.Index(pols, name="pol")) + ds = xr.concat(tmp, pd.Index(pols, name="pol", dtype=object)) ds.attrs["history"] = "\n".join(history) return ds ===================================== safe_s1/sentinel1_xml_mappings.py ===================================== @@ -784,7 +784,7 @@ def df_files(annotation_files, measurement_files, noise_files, calibration_files # we want them uniques, and compatibles with gdal sentinel driver (ie 'WV_012') pols_count = len(set(pols)) subds_count = len(annotation_files) // pols_count - dsid_count = len(set(dsid)) + # dsid_count = len(set(dsid)) # if dsid_count != subds_count: if "WV" in dsid[0]: dsid_rad = dsid[0][:-1] # WV View it on GitLab: https://salsa.debian.org/debian-gis-team/xarray-safe-s1/-/compare/b34dce7666d00a079e2d757b3ee50e6f58ff457b...78486157ca1f7e70a3101512fd2f92b3a86ddd8f -- View it on GitLab: https://salsa.debian.org/debian-gis-team/xarray-safe-s1/-/compare/b34dce7666d00a079e2d757b3ee50e6f58ff457b...78486157ca1f7e70a3101512fd2f92b3a86ddd8f 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
