@@ -78,7 +78,7 @@ coord = SkyCoord.from_name('HD 168151')
7878This searches specifically in the euclid_DpdMerBksMosaic "collection" which is the MER images and catalogs.
7979
8080``` {code-cell} ipython3
81- irsa_service= vo.dal.sia2.SIA2Service('https://irsadev .ipac.caltech.edu/SIA')
81+ irsa_service= vo.dal.sia2.SIA2Service('https://irsa .ipac.caltech.edu/SIA')
8282
8383im_table = irsa_service.search(pos=(coord, search_radius), collection='euclid_DpdMerBksMosaic')
8484
@@ -116,7 +116,7 @@ print('The MER tile ID for this object is :',tileID)
116116
117117``` {code-cell} ipython3
118118######### TEMP
119- ######## Note to testers, for now we need to replace the irsa.ipac.caltech.edu url with irsadev
119+ ######## Note to testers, for now we need to replace the irsa.ipac.caltech.edu url with irsa
120120######## This will not be the same after the data are made public so this cell will be deleted at that time
121121def add_dev_to_domain(domain):
122122 parts = domain.split('.', 1) # Split at the first dot
@@ -160,7 +160,7 @@ colorbar = plt.colorbar()
160160Search for all tables in IRSA labeled as euclid
161161
162162``` {code-cell} ipython3
163- service = vo.dal.TAPService("https://irsadev .ipac.caltech.edu/TAP")
163+ service = vo.dal.TAPService("https://irsa .ipac.caltech.edu/TAP")
164164
165165tables = service.tables
166166for tablename in tables.keys():
262262This involves reading in the spectrum without readin in the full FITS file, just pulling the extension we want.
263263
264264``` {code-cell} ipython3
265- irsa_url = 'https://irsadev .ipac.caltech.edu/'
265+ irsa_url = 'https://irsa .ipac.caltech.edu/'
266266
267267file_url = irsa_url + df2['uri'].iloc[0]
268268file_url
0 commit comments