Skip to content

Commit 41212e5

Browse files
committed
fixup! IRSA-7363 Document spherex SIA delay
1 parent 595bef0 commit 41212e5

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

tutorials/spherex/spherex_cutouts.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ bandpass = 'SPHEREx-D2'
8383
output_filename = 'spherex_cutouts_mef.fits'
8484
```
8585

86-
(spherex-query-tap)=
8786
## 5. Query IRSA for a list of cutouts that satisfy the criteria specified above.
8887

8988
Here we show how to use the `pyvo` TAP SQL query to retrieve all images that overlap with the position defined above.
@@ -119,7 +118,7 @@ print("Number of images found: {}".format(len(results)))
119118
```
120119

121120
:::{note}
122-
SPHEREx data are also available via SIA which can provide a simpler interface for many queries, as demonstrated in {ref}`spherex-query-sia`.
121+
SPHEREx data are also available via SIA which can provide a simpler interface for many queries, as demonstrated in {ref}`spherex-intro`.
123122
An advantage of the method shown above is that it provides access to data immediately after ingestion (which occurs weekly) and is not subject to the same ~1 day delay as SIA.
124123
:::
125124

tutorials/spherex/spherex_intro.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ from astroquery.ipac.irsa import Irsa
6565
from firefly_client import FireflyClient
6666
```
6767

68-
(spherex-query-sia)=
6968
## 5. Search for SPHEREx Spectral Image MEFs that overlap coordinates you are interested in
7069

7170
+++
@@ -106,7 +105,7 @@ results = Irsa.query_sia(pos=(coord, search_radius), collection='spherex_qr2')
106105
:::{note}
107106
SPHEREx data are ingested on a weekly basis.
108107
Due to the nature of the ingestion process, availability via SIA will lag on the order of a day.
109-
To avoid this delay, users can access data through the browsable directories or the SPHEREx Data Explorer GUI (see [SPHEREx Data Access](https://caltech-ipac.github.io/spherex-archive-documentation/spherex-data-access)), or do a TAP query as shown in {ref}`spherex-query-tap`.
108+
To avoid this delay, users can access data through the browsable directories or the SPHEREx Data Explorer GUI (see [SPHEREx Data Access](https://caltech-ipac.github.io/spherex-archive-documentation/spherex-data-access)), or do a TAP query as shown in {ref}`spherex-cutouts`.
110109
:::
111110

112111
Each row of the results of your query represents a different spectral image.

tutorials/spherex/spherex_psf.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,11 @@ print("Time to do TAP query: {:2.2f} seconds.".format(time.time() - t1))
107107
print("Number of images found: {}".format(len(results)))
108108
```
109109

110+
:::{note}
111+
SPHEREx data are also available via SIA which can provide a simpler interface for many queries, as demonstrated in {ref}`spherex-intro`.
112+
An advantage of the method shown above is that it provides access to data immediately after ingestion (which occurs weekly) and is not subject to the same ~1 day delay as SIA.
113+
:::
114+
110115
For this example, we focus on the first one of the retrieved SPHEREx spectral images.
111116

112117
```{code-cell} ipython3

0 commit comments

Comments
 (0)