Skip to content

Commit 347e2e7

Browse files
committed
Remove datalink exmplanation as we don't yet ship DL for SIA
1 parent 58143c5 commit 347e2e7

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

tutorials/spherex/spherex_intro.md

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ There are currently three collections available:
9494

9595
* `'spherex_qr'` -- the Quick Release Observations, for more information see [SPHEREx archive documentation at IRSA]().
9696
* `'spherex_qr_cal'` -- the Quick Release Calibration products.
97-
* `'spherex_qr_deep'` --
97+
* `'spherex_qr_deep'` --
9898

9999
```{code-cell} ipython3
100100
results = Irsa.query_sia(pos=(coord, search_radius), collection='spherex_qr')
@@ -121,21 +121,6 @@ The `'access_url'` column is particularly important because it tells you how to
121121
results['access_url'][0]
122122
```
123123

124-
Examining this URL, it does not provide direct access to the SPHEREx spectral image. Rather, it returns a file that lists all the data products and services associated with this spectral image. For the SPHEREx Quick Release products, this includes:
125-
126-
(1) the primary product, a Spectral Image MEF ('semantics' column is #this); and
127-
128-
(2) a cutout service ('semantics' is #cutout).
129-
130-
Most users will be interested in the primary (#this) product. Here's how you get the URL to download it for the first row:
131-
132-
```{code-cell} ipython3
133-
datalink_url = results['access_url'][0]
134-
datalink_content = DatalinkResults.from_result_url(datalink_url)
135-
spectral_image_url = next(datalink_content.bysemantics("#this")).access_url
136-
spectral_image_url
137-
```
138-
139124
You can put this URL into a browser to download the file. Or you can work with it in Python, as shown below.
140125

141126
+++

0 commit comments

Comments
 (0)