Skip to content

Commit f437d65

Browse files
authored
Merge pull request #71 from tmesh/Meshkat_notebook2
A bit extra markdown in the second notebook
2 parents 6f63ebd + c4caa4d commit f437d65

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.binder/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ fsspec
2121
sep>=1.4
2222
# For supporting myst-based notebooks
2323
jupytext
24+
# Making admonotions look nice for the myst notebooks
25+
jupyterlab-myst

tutorials/euclid_access/2_Euclid_intro_MER_catalog.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,24 @@ for col in columns:
9292
print(f'{f"{col.name}":30s} {col.unit} {col.description}')
9393
```
9494

95+
```{tip}
96+
The MER catalog contains 476 columns, below are a few highlights:
97+
98+
- object_id
99+
- flux_vis_psf, mer.flux_y_templfit,flux_j_templfit, mer.flux_h_templfit
100+
- fwhm
101+
```
102+
103+
+++
104+
95105
### Define the following ADQL query to find the first 10k stars in the MER catalog
96106

97107
Since we are just using the MER catalog alone, it does not have a column for classification. We can use the point_like_flag = 1 or point_like_prob>0.99 for stars.
98108

99109
Set all the fluxes to be greater than 0 so the object is detected in all four Euclid MER mosaic images
100110

101111
```{code-cell} ipython3
102-
adql_stars = ("SELECT TOP 10000 mer.ra, mer.dec, mer.flux_vis_psf, mer.fluxerr_vis_psf, mer.flux_y_templfit,mer.fluxerr_y_templfit, "
112+
adql_stars = ("SELECT TOP 10000 mer.object_id, mer.ra, mer.dec, mer.flux_vis_psf, mer.fluxerr_vis_psf, mer.flux_y_templfit,mer.fluxerr_y_templfit, "
103113
"mer.flux_j_templfit, mer.fluxerr_j_templfit, mer.flux_h_templfit, mer.fluxerr_h_templfit, mer.point_like_prob, mer.extended_prob "
104114
f"FROM {table_mer} AS mer "
105115
"WHERE mer.flux_vis_psf > 0 "

0 commit comments

Comments
 (0)