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
This table lists all MER mosaic images available in this position. These mosaics include the Euclid VIS, Y, J, H images, as well as ground-based telescopes which have been put on the same pixel scale. For more information, see the [Euclid documentation at IPAC](https://euclid.caltech.edu/page/euclid-faq-tech/).
98
+
This table lists all MER mosaic images available in this position. These mosaics include the Euclid VIS, Y, J, H images, as well as ground-based telescopes which have been put on the same pixel scale. For more information, see the [Euclid documentation at IPAC](https://euclid.caltech.edu/page/euclid-faq-tech/).
99
99
```
100
100
101
101
```{code-cell} ipython3
@@ -123,14 +123,14 @@ print('The MER tile ID for this object is :',tileID)
123
123
```{code-cell} ipython3
124
124
## Use IRSA to search for catalogs
125
125
126
-
service = vo.dal.TAPService("https://irsadev.ipac.caltech.edu/TAP")
126
+
service = vo.dal.TAPService("https://irsa.ipac.caltech.edu/TAP")
127
127
128
128
129
-
## Search for all tables in IRSA labled as euclid_q1
129
+
## Search for all tables in IRSA labled as euclid_q1
130
130
tables = service.tables
131
131
for tablename in tables.keys():
132
132
if "tap_schema" not in tablename and "euclid_q1" in tablename:
133
-
tables[tablename].describe()
133
+
tables[tablename].describe()
134
134
```
135
135
136
136
```{code-cell} ipython3
@@ -169,7 +169,7 @@ The fluxes are different from the fluxes derived in the MER catalog. The _unif f
169
169
170
170
## Find some galaxies between 1.4 and 1.6 at a selected RA and Dec
171
171
172
-
We specify the following conditions on our search:
172
+
We specify the following conditions on our search:
173
173
- We select just the galaxies where the flux is greater than zero, to ensure the appear in all four of the Euclid MER images.
174
174
- Select only objects in a circle (search radius selected below) around our selected RA and Dec
175
175
- phz_classification =2 means we select only galaxies
@@ -215,26 +215,10 @@ df_g_irsa.head()
215
215
print(filename)
216
216
```
217
217
218
-
```{code-cell} ipython3
219
-
######### TEMP
220
-
######## Note to testers, for now we need to replace the irsa.ipac.caltech.edu url with irsadev
221
-
######## This will not be the same after the data are made public so this cell will be deleted at that time
222
-
def add_dev_to_domain(domain):
223
-
parts = domain.split('.', 1) # Split at the first dot
224
-
if len(parts) == 2:
225
-
return f"{parts[0]}dev.{parts[1]}"
226
-
return domain
227
-
228
-
filename_dev = add_dev_to_domain(filename)
229
-
print(filename_dev)
230
-
231
-
#####################
232
-
```
233
-
234
218
```{code-cell} ipython3
235
219
##Download the MER image -- note this file is about 1.46 GB
0 commit comments