Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/cloud-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ da = lazycogs.open("items.parquet", ..., store=store)

`NasaEarthdataAsyncCredentialProvider` is not supported. It creates an `aiohttp` session bound to the event loop active when it is constructed. lazycogs runs each chunk read in a short-lived event loop (and in Jupyter, in a separate thread with its own loop), so the session ends up attached to the wrong loop and raises a runtime error. The synchronous provider uses `requests`, which is event-loop-agnostic and works correctly in all contexts.

See [NASA HLS example notebook](../notebooks/hls.ipynb) for a full worked example with direct S3 access.
See [NASA HLS S3 example notebook](../notebooks/hls-s3.ipynb) for a full worked example with direct S3 access.

See also: [API reference for open()](../api/open.md), [API reference for store_for()](../api/utils.md), [STAC item queries guide](stac-search.md)
Loading
Loading