Skip to content

Commit 9305b61

Browse files
author
Tiffany Meshkat
committed
A bit extra markdown in the second notebook
1 parent cf7c4ca commit 9305b61

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tutorials/euclid_access/2_Euclid_intro_MER_catalog.md

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

95+
## Note that the mer catalog contains 476 columns, below are a few highlights:
96+
97+
- object_id
98+
- flux_vis_psf, mer.flux_y_templfit,flux_j_templfit, mer.flux_h_templfit
99+
- fwhm
100+
101+
+++
102+
95103
### Define the following ADQL query to find the first 10k stars in the MER catalog
96104

97105
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.
98106

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

101109
```{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, "
110+
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, "
103111
"mer.flux_j_templfit, mer.fluxerr_j_templfit, mer.flux_h_templfit, mer.fluxerr_h_templfit, mer.point_like_prob, mer.extended_prob "
104112
f"FROM {table_mer} AS mer "
105113
"WHERE mer.flux_vis_psf > 0 "

0 commit comments

Comments
 (0)