Skip to content

Commit 0544b49

Browse files
committed
Merge pull request #210 from bsipocz/BUG_landing_pages_in_testing
BUG: do not run tests on non-notebook (landing) pages 4793f83
1 parent 0d66793 commit 0544b49

108 files changed

Lines changed: 1625 additions & 1004 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
-238 KB
Binary file not shown.
-27.9 KB
Binary file not shown.

build/1-euclid-q1-hats-int-68a8143768ea001f8be655ea6858c68c.md

Lines changed: 380 additions & 0 deletions
Large diffs are not rendered by default.

build/1_Euclid_intro_MER_i-ea95ec3cc835d1eb20e08c436e451aa9.md renamed to build/1_Euclid_intro_MER_i-8f6c3b0c8ad1f26aae44f081f56ce983.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
short_title: "MER Mosaics"
23
jupytext:
34
text_representation:
45
extension: .md
@@ -11,7 +12,7 @@ kernelspec:
1112
name: python3
1213
---
1314

14-
# Euclid Q1: MER mosaics
15+
# Euclid Q1: MER Mosaics
1516

1617
+++
1718

build/2_Euclid_intro_MER_c-e5a05e7b728ad1802d1b7b842b614702.md renamed to build/2_Euclid_intro_MER_c-26457ea338b39fd3d0d27e9992c6dba6.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
short_title: "MER Catalogs"
23
jupytext:
34
text_representation:
45
extension: .md
@@ -11,7 +12,7 @@ kernelspec:
1112
name: python3
1213
---
1314

14-
# Euclid Q1: MER catalogs
15+
# Euclid Q1: MER Catalogs
1516

1617
+++
1718

build/3_Euclid_intro_1D_sp-f46ae83ea319e1eb1876fd61ffcd8270.md renamed to build/3_Euclid_intro_1D_sp-f655d5003e1f9b2bc28ce9d93159fcec.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
short_title: "SIR 1D Spectra"
23
jupytext:
34
text_representation:
45
extension: .md
@@ -11,7 +12,7 @@ kernelspec:
1112
name: python3
1213
---
1314

14-
# Euclid Q1: 1D spectra
15+
# Euclid Q1: SIR 1D Spectra
1516

1617
+++
1718

@@ -86,7 +87,7 @@ table_1dspectra = 'euclid.objectid_spectrafile_association_q1'
8687
obj_id = 2689918641685825137
8788
```
8889

89-
We will use TAP and an ASQL query to find the spectral data for our galaxy. (ADQL is the [IVOA Astronomical Data Query Language](https://www.ivoa.net/documents/latest/ADQL.html) and is based on SQL.)
90+
We will use TAP and an ADQL query to find the spectral data for our galaxy. (ADQL is the [IVOA Astronomical Data Query Language](https://www.ivoa.net/documents/latest/ADQL.html) and is based on SQL.)
9091

9192
```{code-cell} ipython3
9293
adql_object = f"SELECT * FROM {table_1dspectra} WHERE objectid = {obj_id}"

build/4_Euclid_intro_PHZ_c-6872911f3f8521cf0716576f7a597af9.md renamed to build/4_Euclid_intro_PHZ_c-ba61af3945463df0b330ec8ebeae2319.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
short_title: "PHZ Catalogs"
23
jupytext:
34
text_representation:
45
extension: .md
@@ -11,7 +12,7 @@ kernelspec:
1112
name: python3
1213
---
1314

14-
# Euclid Q1: PHZ catalogs
15+
# Euclid Q1: PHZ Catalogs
1516

1617
+++
1718

build/5_Euclid_intro_SPE_c-b48adee1cd6079702d535aca19b3537e.md renamed to build/5_Euclid_intro_SPE_c-653f799c9fba8f2db756bb72df4fb955.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
---
2+
short_title: "SPE Catalogs"
23
jupytext:
34
text_representation:
45
extension: .md
56
format_name: myst
67
format_version: 0.13
7-
jupytext_version: 1.16.7
8+
jupytext_version: 1.18.1
89
kernelspec:
9-
display_name: Python 3 (ipykernel)
10-
language: python
1110
name: python3
11+
display_name: python3
12+
language: python
1213
---
1314

14-
# Euclid Q1: SPE catalogs
15+
# Euclid Q1: SPE Catalogs
1516

1617
+++
1718

@@ -54,7 +55,7 @@ We rely on ``astroquery`` features that have been recently added, so please make
5455

5556
```{code-cell} ipython3
5657
# Uncomment the next line to install dependencies if needed
57-
# !pip install matplotlib astropy 'astroquery>=0.4.10'
58+
# %pip install matplotlib astropy 'astroquery>=0.4.10'
5859
```
5960

6061
```{code-cell} ipython3
@@ -66,9 +67,13 @@ from astropy.io import fits
6667
from astropy.table import QTable
6768
from astropy import units as u
6869
from astropy.utils.data import download_file
70+
from astropy.utils import data
6971
from astropy.visualization import ImageNormalize, PercentileInterval, AsinhStretch, quantity_support
7072
7173
from astroquery.ipac.irsa import Irsa
74+
75+
# Increase Astropy’s default network timeout (in seconds) for remote name resolution and data access
76+
data.conf.remote_timeout = 60
7277
```
7378

7479
## 1. Find the MER Tile ID that corresponds to a given RA and Dec
@@ -182,7 +187,6 @@ adql_query = ("SELECT DISTINCT mer.object_id,mer.ra, mer.dec, mer.tileid, mer.fl
182187
183188
# Use TAP with this ADQL string
184189
result_table = Irsa.query_tap(adql_query).to_table()
185-
186190
```
187191

188192
### Choose an object of interest, lets look at an object with a strong Halpha line detected with high SNR.
@@ -241,8 +245,10 @@ plt.title(f'Object ID {obj_id}')
241245

242246
## About this Notebook
243247

244-
**Author**: Tiffany Meshkat, Anahita Alavi, Anastasia Laity, Andreas Faisst, Brigitta Sipőcz, Dan Masters, Harry Teplitz, Jaladh Singhal, Shoubaneh Hemmati, Vandana Desai, Troy Raen
248+
**Author**: Tiffany Meshkat, Anahita Alavi, Anastasia Laity, Andreas Faisst, Brigitta Sipőcz, Dan Masters, Harry Teplitz, Jaladh Singhal, Shoubaneh Hemmati, Vandana Desai, Troy Raen, Jessica Krick
245249

246-
**Updated**: 2025-09-23
250+
**Updated**: 2025-12-17
247251

248252
**Contact:** [the IRSA Helpdesk](https://irsa.ipac.caltech.edu/docs/help_desk.html) with questions or reporting problems.
253+
254+
**Runtime:** As of the date above, this notebook takes about 90 seconds to run to completion on a machine with 8GB RAM and 4 CPU.

build/2c56ed657bf6fa89150edb4d7e85923b.html renamed to build/7bc041dd60f99a861f54b17234d72964.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div><i>Table length=328</i>
2-
<table id="table140490109117712" class="table-striped table-bordered table-condensed">
2+
<table id="table140417987923552" class="table-striped table-bordered table-condensed">
33
<thead><tr><th>s_ra</th><th>s_dec</th><th>facility_name</th><th>instrument_name</th><th>dataproduct_subtype</th><th>calib_level</th><th>dataproduct_type</th><th>energy_bandpassname</th><th>energy_emband</th><th>obs_id</th><th>s_resolution</th><th>em_min</th><th>em_max</th><th>em_res_power</th><th>proposal_title</th><th>access_url</th><th>access_format</th><th>access_estsize</th><th>t_exptime</th><th>s_region</th><th>obs_collection</th><th>obs_intent</th><th>algorithm_name</th><th>facility_keywords</th><th>instrument_keywords</th><th>environment_photometric</th><th>proposal_id</th><th>proposal_pi</th><th>proposal_project</th><th>target_name</th><th>target_type</th><th>target_standard</th><th>target_moving</th><th>target_keywords</th><th>obs_release_date</th><th>s_xel1</th><th>s_xel2</th><th>s_pixel_scale</th><th>position_timedependent</th><th>t_min</th><th>t_max</th><th>t_resolution</th><th>t_xel</th><th>obs_publisher_did</th><th>s_fov</th><th>em_xel</th><th>pol_states</th><th>pol_xel</th><th>cloud_access</th><th>o_ucd</th><th>upload_row_id</th><th>dist_to_point</th></tr></thead>
44
<thead><tr><th>deg</th><th>deg</th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th>arcsec</th><th>m</th><th>m</th><th></th><th></th><th></th><th></th><th>kbyte</th><th>s</th><th>deg</th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th>arcsec</th><th></th><th>d</th><th>d</th><th>s</th><th></th><th></th><th>deg</th><th></th><th></th><th></th><th></th><th></th><th></th><th></th></tr></thead>
55
<thead><tr><th>float64</th><th>float64</th><th>object</th><th>object</th><th>object</th><th>int16</th><th>object</th><th>object</th><th>object</th><th>object</th><th>float64</th><th>float64</th><th>float64</th><th>float64</th><th>object</th><th>object</th><th>object</th><th>int64</th><th>float64</th><th>object</th><th>object</th><th>object</th><th>object</th><th>object</th><th>object</th><th>bool</th><th>object</th><th>object</th><th>object</th><th>object</th><th>object</th><th>bool</th><th>bool</th><th>object</th><th>object</th><th>int64</th><th>int64</th><th>float64</th><th>bool</th><th>float64</th><th>float64</th><th>float64</th><th>int64</th><th>object</th><th>float64</th><th>int64</th><th>object</th><th>int64</th><th>object</th><th>object</th><th>int64</th><th>float64</th></tr></thead>
237 KB
Loading

0 commit comments

Comments
 (0)