Alan D. Snow
Alan D. Snow
I looked at your data, and it appears that your points don't properly represent the grid. If I do: ```python numpy.unique(xr.y.diff(dim="y")) ``` I get: ``` array([ 10., 710.]) ``` To...
> So I understand that rioxarray requires that the x-y points are evenly spaced ? Is that right? That is correct. > Is there a workaround solution that would take...
I am closing as I believe this has been resolved. If you have further questions, feel free to ask them.
> 700 columns That is a lot of columns. > For the 'nearest' option, imagine rasterizing a numbered index associated with the geometry features, and then simply mapping the remaining...
See: https://github.com/rasterio/rasterio/discussions/2517#discussioncomment-3137456 for an example of using MemoryFile using ``with``. @mraspaud, with [this addition](https://github.com/rasterio/rasterio/pull/2141) to rasterio 1.3 (recently released), I believe you should be able to use fsspec files directly...
> The example you provide does not seem to work (so passing a regular open file to open_rasterio): Haven't tested that feature with dask ... looks like we need a...
> I tried using the context, but that resulted in an empty data array being returned (which I think is quite logical this the context will be closed at the...
#558 should address this: https://github.com/corteva/rioxarray/issues/550#issuecomment-1187572731
> I think using `.load()` would go against what we generally try to do in Satpy which is to delay loading data until it is actually being computed. From what...
#429 should help.