We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DataTree
Once #10 is complete, we should be able to expose a DataTree reader function (open_alos2) and a DataTree backend, once that exists (xr.open_datatree)
open_alos2
xr.open_datatree
The text was updated successfully, but these errors were encountered:
xarray's version of open_datatree has the backend mechanism, so we should be able to just define a BackendEntrypoint. That would allow us to do this:
xarray
open_datatree
BackendEntrypoint
xr.open_datatree(path, engine="ceos-alos2", chunks={}, backend_kwargs={"records_per_chunk": 4096})
(and possibly the same with open_dataset, though not sure if that makes sense)
open_dataset
Sorry, something went wrong.
No branches or pull requests
Once #10 is complete, we should be able to expose a
DataTree
reader function (open_alos2
) and aDataTree
backend, once that exists (xr.open_datatree
)The text was updated successfully, but these errors were encountered: