File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
tutorials/parquet-catalog-demos Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ This notebook demonstrates the basics.
53
53
## Installs and imports
54
54
55
55
``` {code-cell}
56
- # !pip uninstall -y numpy pyerfa
56
+ # !pip uninstall -y numpy pyerfa # Helps resolve numpy>=2.0 dependency issues.
57
57
# !pip install 'hats>=0.5' 'lsdb>=0.5' matplotlib numpy s3fs
58
58
```
59
59
@@ -82,6 +82,9 @@ from upath import UPath
82
82
s3_bucket = "irsa-fornax-testdata"
83
83
s3_key = "EUCLID/q1/mer_catalogue/hats"
84
84
euclid_s3_path = UPath(f"s3://{s3_bucket}/{s3_key}")
85
+
86
+ # Note: If running from IPAC, you need an anonymous connection. Uncomment the next line.
87
+ # euclid_s3_path = UPath(f"s3://{s3_bucket}/{s3_key}", anon=True)
85
88
```
86
89
87
90
We will use [ ` hats ` ] ( https://hats.readthedocs.io/ ) to visualize the catalog and access the schema.
You can’t perform that action at this time.
0 commit comments