You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/irsa-sia-examples/sia_allwise_atlas.md
+33-43Lines changed: 33 additions & 43 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ The [NASA/IPAC Infrared Science Archive (IRSA)](https://irsa.ipac.caltech.edu) a
36
36
37
37
38
38
```{note}
39
-
IRSA supports both SIA v1 and SIA v2 protocols. The version used depends on the specific dataset. This IRSA [website](https://irsa.ipac.caltech.edu/ibe/sia.html) provides information on which version each service uses and how to access them. Further information on how to access IRSA data with different techniques is available [here](https://irsa.ipac.caltech.edu/docs/program_interface/api_images.html)
39
+
IRSA supports both SIA v1 and SIA v2 protocols. The version used depends on the specific dataset. This IRSA [website](https://irsa.ipac.caltech.edu/ibe/sia.html) provides information on which version each service uses and how to access them. Further information on how to access IRSA data with different techniques is available [here](https://irsa.ipac.caltech.edu/docs/program_interface/api_images.html). This tutorial uses SIA v2 for AllWISE Atlas images.
40
40
```
41
41
42
42
+++
@@ -49,7 +49,7 @@ IRSA supports both SIA v1 and SIA v2 protocols. The version used depends on the
49
49
-`matplotlib.pyplot` for plotting
50
50
-`astropy.io` to manipulate FITS files
51
51
-`firefly_client` for visuzlizing images
52
-
-`astroquery/ipac.irsa` for data access
52
+
-`astroquery.ipac.irsa` for IRSA data access
53
53
54
54
```{code-cell} ipython3
55
55
# Uncomment the next line to install dependencies if needed.
IRSA provides Simple Image Access (SIA) services for various datasets. A list of available datasets and their access URLs can be found at:
87
-
88
-
https://irsa.ipac.caltech.edu/ibe/sia.html
89
-
86
+
IRSA provides Simple Image Access (SIA) services for various datasets. A list of available datasets and their access URLs can be found [here](https://irsa.ipac.caltech.edu/ibe/sia.html).
90
87
This tutorial uses SIA v2 for AllWISE Atlas images.
88
+
To search for other datasets on SIA v2, try changing the filter string.
89
+
Or remove the filter keyword altogether to get a full list of available SIA v2 datasets at IRSA.
91
90
92
91
```{code-cell} ipython3
92
+
#first we need to know the name of the dataset on the IRSA system
93
93
names = Irsa.list_collections(filter="allwise")
94
94
names
95
95
96
96
# We see from the resulting table that the dataset collection we are interested in is called "wise_allwise"
97
97
```
98
98
99
-
## 3. Search for images
99
+
## 3. Search for images
100
+
Which images in the IRSA allwise dataset include our target of interest?
100
101
101
102
```{code-cell} ipython3
102
103
#get a table of all images within 1 arcsecond of our target position
103
-
104
-
dataset_name = names['collection'][0]
104
+
dataset_name = names['collection'][0] #name of our favorite dataset = "wise_allwise"
This publication makes use of data products from the Wide-field Infrared Survey Explorer, which is a joint project of the University of California, Los Angeles, and the Jet Propulsion Laboratory/California Institute of Technology, funded by the National Aeronautics and Space Administration."
209
+
Digital Object Identifier (DOI): [10.26131/IRSA153](https://www.ipac.caltech.edu/doi/irsa/10.26131/IRSA153)
221
210
222
-
+++
223
211
224
-
Please include the following in any published material that makes use of the WISE data products:
225
-
226
-
"This publication makes use of data products from the Wide-field Infrared Survey Explorer, which is a joint project of the University of California, Los Angeles, and the Jet Propulsion Laboratory/California Institute of Technology, funded by the National Aeronautics and Space Administration."
212
+
```{code-cell} ipython3
213
+
#import astropy
214
+
#import astroquery
227
215
228
-
Please also cite the dataset Digital Object Identifier (DOI): [10.26131/IRSA153](https://www.ipac.caltech.edu/doi/irsa/10.26131/IRSA153)
0 commit comments