Ian Carroll

Results 109 comments of Ian Carroll

~~A workaround is to supply `--TemplateExporter.filters="{'markdown2html': 'nbconvert.filters.markdown.markdown2html_pandoc'}"` in the call to `jupyter nbconvert ...`.~~ ~~Knowing little about how nbconvert works, this leads me to believe the bug is actually in...

The VIIRSJ1_L2_OC collection is not in the Earthdata Cloud, and it appears correct that the DAAC's on-prem server is not accepting byte range requests at the `getfile` endpoint. Was an...

Leaving aside the `cloud_hosted` argument issue, I'd suggest we close this as "won't fix" with a redirection to `fsspec`. I've opened [discussion](https://github.com/fsspec/filesystem_spec/discussions/1629) on the source of trouble. In short, there's...

Ran 4.3.5 (with `uvx --from "jupyterlab==4.3.5" jupyter-lab`) and see the same behavior.

The behavior came with 4.0.0. I tried removing the following two defaults in the notebook-extension schema, and that takes care of the corresponding metadata injections. https://github.com/jupyterlab/jupyterlab/blob/d23213cae9c0c194842860e0b22a01f1c8cc77dd/packages/notebook-extension/schema/tools.json#L19 https://github.com/jupyterlab/jupyterlab/blob/d23213cae9c0c194842860e0b22a01f1c8cc77dd/packages/notebook-extension/schema/tools.json#L34 What doesn't work...

No, don't use `__getattribute__` b/c it leads to infinite recursion. New idea: this is not a class that should be subclassing at all.

When #620 removed the inherited `fsspec.spec.AbstractBufferedFile` class from `earthaccess.EarthAccessFile`, it broke the ability of `xarray.backends.list_engines()["h5netcdf"].guess_can_open` to recognize these pointers. It comes back to MRO, and the fact that `EarthAccessFile` is...

It would be very helpful if we had an integration test for the behavior that the `EarthAccessFile` class enables.

A change to repair damage done in #620 is to reintroduce a base class on `EarthAccessFile` (and I think `io.IOBase` might work), but it doesn't fix this issue.

Merged #832 in order to make way for a release. Note that the test surfacing this bug has been marked as an expected fail. https://github.com/nsidc/earthaccess/blob/fb7880623d4a8bd79d2ac60e25284da10ab26e9d/tests/unit/test_store.py#L132-L141