WY-CGhilardi
WY-CGhilardi
I cannot share the data but it sounds like this is a issue with how the series is stacked. For completeness here are the two configs requested above. The first...
I did also try adding the `stack_dim` parameter to the `open` call but that threw a different error before it made it to the `fit` ```python --------------------------------------------------------------------------- ValueError Traceback (most...
removing `band_names` with `stack_dim` set to `bands` returns the original off by one I was running into above ```python with gw.open( filenames, stack_dim='band' ) as src: X, Xy, clf =...
> Do you have polygons that exceed the bounds of the images? No, the polygons were explicitly drawn within this AOI. Doubling checking the bounding boxes for both the geodataframe...
I didn't see that geowombat exposed a `bounds` function! I ran that and I got slightly different values from my "manual parsing" version. It sounds like that isn't maybe the...
I am still seeing `16399` after installing `issue_310` branch ```python #pip install git+https://github.com/jgrss/geowombat@jgrss/issue_310 dask.array Coordinates: * band (band) int64 1 * y (y) float64 5.116e+06 5.116e+06 5.116e+06 ... 5.061e+06 5.061e+06...
Let me start off with a **big thank you** to both of you for working through this with me, I really appreciate it ```python with gw.config.update(ref_res=3.2175): with gw.open( filenames, band_names=['band1','band2','band3','band4','band5']...
That is just a formatting issue, I can confirm I still return mis-aligned arrays with the configs Using `3.2175` ```python with gw.config.update(ref_res=3.2175): with gw.open( filenames, band_names=['band1','band2','band3','band4','band5'] ) as src: #...
I have been poking around this some more locally and noticed something this morning. For a given image, the returned `xarray` is a slightly different shape on read than what...
I pulled down the `/reorg` branch and it looks like that does correct the initial image read dimensions, now matching `rasterio`/`GDAL`/... ```python with gw.open( filenames, ) as src: print(src) Size:...