xarray-sql
xarray-sql copied to clipboard
TIL Xarray has a `to_dask_dataframes()` method!
It looks like this has been around in some from since 2018!
https://docs.xarray.dev/en/stable/generated/xarray.Dataset.to_dask_dataframe.html#xarray.Dataset.to_dask_dataframe
On initial impression, this seems like it should reduce the need for this library. I'm still happy to investigate the intersection of SQL and raster data here.
If the core of this library so far can be replaced with a Xarray standard method, then this should free up development for other optimizations, for example #26.
On initial impression, this seems like it should reduce the need for this library. I'm still happy to investigate the intersection of SQL and raster data here.
That the SQL pattern is not canonically used on top of Dask/Xarray data tells me that this library is still needed. It also reinforces my choice to use straight DataFusion.