[Git][debian-gis-team/xarray-safe-s1][master] 4 commits: New upstream version 2025.06.02
Antonio Valentino (@antonio.valentino)
gitlab at salsa.debian.org
Sun Aug 10 18:11:58 BST 2025
Antonio Valentino pushed to branch master at Debian GIS Project / xarray-safe-s1
Commits:
ccec99b3 by Antonio Valentino at 2025-08-09T15:54:52+00:00
New upstream version 2025.06.02
- - - - -
118c878a by Antonio Valentino at 2025-08-09T15:54:52+00:00
Update upstream source from tag 'upstream/2025.06.02'
Update to upstream version '2025.06.02'
with Debian dir 96fbfb042d42272472e6373edeb85e43598099fe
- - - - -
4093f724 by Antonio Valentino at 2025-08-09T15:55:23+00:00
New upstream release
- - - - -
f9c7a0b9 by Antonio Valentino at 2025-08-09T15:57:55+00:00
Set diatribution to unstable
- - - - -
3 changed files:
- ci/install-upstream-dev.sh
- debian/changelog
- safe_s1/reader.py
Changes:
=====================================
ci/install-upstream-dev.sh
=====================================
@@ -1,13 +1,14 @@
#!/usr/bin/env bash
-conda remove -y --force cytoolz numpy xarray toolz python-dateutil
+conda remove -y --force cytoolz numpy xarray pandas toolz python-dateutil
python -m pip install \
-i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
--no-deps \
--pre \
--upgrade \
numpy \
- xarray
+ xarray \
+ pandas
python -m pip install --upgrade \
git+https://github.com/pytoolz/toolz \
git+https://github.com/dateutil/dateutil
=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+xarray-safe-s1 (2025.06.02-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Antonio Valentino <antonio.valentino at tiscali.it> Sat, 09 Aug 2025 15:57:41 +0000
+
xarray-safe-s1 (2025.03.24-1) unstable; urgency=medium
[ Bas Couwenberg ]
=====================================
safe_s1/reader.py
=====================================
@@ -1,5 +1,6 @@
import logging
import os
+import pdb
import re
import dask
@@ -295,7 +296,9 @@ class Sentinel1Reader:
dn = dn.assign_coords({"line": line, "sample": sample})
# for GTiff driver, pols are already ordered. just rename them
- dn = dn.assign_coords(pol=self.manifest_attrs["polarizations"])
+ # fix 2 June 2025: https://github.com/umr-lops/xsar/issues/254
+ polas = [str(uu) for uu in self.manifest_attrs["polarizations"]]
+ dn = dn.assign_coords(pol=polas)
if not all(self.denoised.values()):
descr = "denoised"
View it on GitLab: https://salsa.debian.org/debian-gis-team/xarray-safe-s1/-/compare/859d5003c50e23bee3fd447388e1854866c4ae4d...f9c7a0b9674846b8b22d2a32424f2f16a71526b6
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/xarray-safe-s1/-/compare/859d5003c50e23bee3fd447388e1854866c4ae4d...f9c7a0b9674846b8b22d2a32424f2f16a71526b6
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20250810/8149a4a6/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list