-
-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
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
Add Google Cloud Storage example #1713
Conversation
Your example uses |
path_to_array = "a/b/c" | ||
|
||
fs = gcsfs.GCSFileSystem(project=bucket, token='anon', access='read_only') | ||
store = zarr.FSStore(url=bucket, fs=fs) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line throws an error:
AttributeError: module 'zarr' has no attribute 'FSStore'
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1713 +/- ##
=======================================
Coverage 99.99% 99.99%
=======================================
Files 38 38
Lines 14580 14580
=======================================
Hits 14579 14579
Misses 1 1 |
This adds an example of how to open an array that's in Google Cloud Storage. Fixes zarr-developers/n5py#14
I've added a new section to the docs, "Examples", for short, self-contained examples, that achieve a specific goal. This is distinct from existing sections of the docs, and should complement the existing tutorial and reference sections. For those familiar with Diataxis, this is essentially the "how-to guides" quadrant.
TODO: