File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- conda remove -y --force cytoolz numpy xarray toolz python-dateutil
3
+ conda remove -y --force cytoolz numpy xarray pandas toolz python-dateutil
4
4
python -m pip install \
5
5
-i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
6
6
--no-deps \
7
7
--pre \
8
8
--upgrade \
9
9
numpy \
10
- xarray
10
+ xarray \
11
+ pandas
11
12
python -m pip install --upgrade \
12
13
git+https://github.com/pytoolz/toolz \
13
14
git+https://github.com/dateutil/dateutil
Original file line number Diff line number Diff line change 1
1
import logging
2
2
import os
3
+ import pdb
3
4
import re
4
5
5
6
import dask
@@ -295,7 +296,9 @@ def _get_glob(st):
295
296
dn = dn .assign_coords ({"line" : line , "sample" : sample })
296
297
297
298
# for GTiff driver, pols are already ordered. just rename them
298
- dn = dn .assign_coords (pol = self .manifest_attrs ["polarizations" ])
299
+ # fix 2 June 2025: https://github.com/umr-lops/xsar/issues/254
300
+ polas = [str (uu ) for uu in self .manifest_attrs ["polarizations" ]]
301
+ dn = dn .assign_coords (pol = polas )
299
302
300
303
if not all (self .denoised .values ()):
301
304
descr = "denoised"
You can’t perform that action at this time.
0 commit comments