You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Improve astrometry parameters for blue filters.
- Fix aperture photometry preview cutout size in admin.
- Increase number of calibrators added from PanSTARRS.
- Allow filtering by instruments and date with `--astrosource`.
logger.info(f"Filtered down to {len(catalog_data)} PanSTARRS field stars with {MIN_R_MAG} <= R <= {MAX_R_MAG}, std < {MAX_MAG_STD} and n_obs > {MIN_N_OBS}")
172
+
n_valid=len(catalog_data)
173
173
174
-
iflen(catalog_data) ==0:
174
+
logger.info(f"Filtered down to {n_valid} PanSTARRS field stars with {MIN_R_MAG} <= R <= {MAX_R_MAG}, std < {MAX_MAG_STD} and n_obs > {MIN_N_OBS}")
175
+
176
+
ifn_valid==0:
175
177
logger.error(f"No PanSTARRS field stars found for {main_src.name}, skipping")
176
178
177
179
# sort by number of observations in R, take top 10 only
178
-
iflen(catalog_data)>10:
179
-
logger.info("Keeping only top 10 field stars by number of R observations")
180
+
ifn_valid>30:
181
+
logger.info("Keeping only top 30 field stars by number of R observations")
0 commit comments