corrado9999
corrado9999
I am not sure if this is a bug and, if so, of what. ```python >>> path = "tests/data/S1B_IW_SLC__1SDV_20210401T052622_20210401T052650_026269_032297_EFA4.SAFE/manifest.safe" >>> group = 'IW1/R168-N471-E0118' >>> xs.sentinel1.open_dataset(path, group=group) Dimensions: (azimuth_time: 1501, slant_range_time:...
`rioxarray` returns fractional line-pixel coordinates (0.5, 1.5, ...), probably under the assumption that values are referred to the centre of the pixel. On the other hand, the calibration dataset (and...
It is easier to check at the result of `open_dataset`: ```python >>> url = "zip://*/manifest.safe::S1B_IW_SLC__1SDV_20210401T052622_20210401T052650_026269_032297_EFA4.zip" >>> xarray_sentinel.sentinel1.open_dataset(url) Dimensions: () Data variables: *empty* Attributes: (12/15) constellation: sentinel-1 platform: sentinel-1b instrument: ['c-sar']...
If I understood it correctly, Dask is not currently a dependency because it is needed only if chunking is explicitly required. Unfortunately, it looks like no check is performed when...
It looks like a job for np.einsum ```python def ss(a, axis=None): "Slow sum of squares used for unaccelerated dtypes." a = np.asarray(a) input_subscripts = range(a.ndim) output_subscripts = list(set(input_subscripts) - set([axis]))...
Starting from ogr2ogr 2.1 it is possible to use as query a pointer to a text file `"-sql @query.sql"`. It would be useful to be able to put some placeholder...
It would be useful to add as an overflow method "wrap", wrapping long fields on multiple lines. The enable-word-wrap command wraps full lines, but it messes up fields alignment. Fields...