Skip to content

Commit 16a84de

Browse files
committed
Changing all irsadev back to irsa
1 parent 88b1350 commit 16a84de

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

tutorials/euclid_access/1_Euclid_intro_MER_images.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ This searches specifically in the euclid_DpdMerBksMosaic "collection" which is t
8787
This query will return any image with pixels that overlap the search region.
8888

8989
```{code-cell} ipython3
90-
irsa_service= vo.dal.sia2.SIA2Service('https://irsadev.ipac.caltech.edu/SIA')
90+
irsa_service= vo.dal.sia2.SIA2Service('https://irsa.ipac.caltech.edu/SIA')
9191
9292
image_table = irsa_service.search(pos=(coord, search_radius), collection='euclid_DpdMerBksMosaic')
9393
```
@@ -149,7 +149,7 @@ print('The MER tile ID for this object is :',tileID)
149149

150150
```{code-cell} ipython3
151151
######### TEMP
152-
######## Note to testers, for now we need to replace the irsa.ipac.caltech.edu url with irsadev
152+
######## Note to testers, for now we need to replace the irsa.ipac.caltech.edu url with irsa
153153
######## This will not be the same after the data are made public so this cell will be deleted at that time
154154
def add_dev_to_domain(domain):
155155
parts = domain.split('.', 1) # Split at the first dot
@@ -217,7 +217,7 @@ urls
217217

218218
```{code-cell} ipython3
219219
######### TEMP
220-
######## Note to testers, for now we need to replace the irsa.ipac.caltech.edu url with irsadev
220+
######## Note to testers, for now we need to replace the irsa.ipac.caltech.edu url with irsa
221221
######## reusing the add_dev_to_domain function from before
222222
######## This will not be the same after the data are made public so this cell will be deleted at that time
223223

tutorials/euclid_access/2_Euclid_intro_MER_catalog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ import pyvo as vo
5656
## 1. Download MER catalog from IRSA directly to this notebook
5757

5858
```{code-cell} ipython3
59-
service = vo.dal.TAPService("https://irsadev.ipac.caltech.edu/TAP")
59+
service = vo.dal.TAPService("https://irsa.ipac.caltech.edu/TAP")
6060
```
6161

6262
```{code-cell} ipython3

tutorials/euclid_access/3_Euclid_intro_1D_spectra.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ import pyvo as vo
6868
Search for all tables in IRSA labeled as euclid
6969

7070
```{code-cell} ipython3
71-
service = vo.dal.TAPService("https://irsadev.ipac.caltech.edu/TAP")
71+
service = vo.dal.TAPService("https://irsa.ipac.caltech.edu/TAP")
7272
7373
tables = service.tables
7474
for tablename in tables.keys():
@@ -115,7 +115,7 @@ df2
115115
### Create the full filename/url
116116

117117
```{code-cell} ipython3
118-
irsa_url='https://irsadev.ipac.caltech.edu/'
118+
irsa_url='https://irsa.ipac.caltech.edu/'
119119
120120
file_url=irsa_url+df2['uri'].iloc[0]
121121
file_url

tutorials/euclid_access/5_Euclid_intro_SPE_catalog.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ coord = SkyCoord.from_name('HD 168151')
7878
This 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
8383
im_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
121121
def add_dev_to_domain(domain):
122122
parts = domain.split('.', 1) # Split at the first dot
@@ -160,7 +160,7 @@ colorbar = plt.colorbar()
160160
Search 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
165165
tables = service.tables
166166
for tablename in tables.keys():
@@ -262,7 +262,7 @@ df2
262262
This 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
267267
file_url = irsa_url + df2['uri'].iloc[0]
268268
file_url

0 commit comments

Comments
 (0)