| | 97 | |
| | 98 | |
| | 99 | and here's what I think are potentially good: I require sigma_ra < 1 (is that reasonable?), n_astrom > 0 (otherwise, astrometry failed), and fwhm_major < 5 (no ideas if this is reasonable or not...) |
| | 100 | {{{ |
| | 101 | mysql> select count(*), min(fwhm_major), max(fwhm_major) from camRun join camProcessedExp using (cam_id) where label = 'SAS.v0' and sigma_ra < 1 and n_astrom > 0 and fwhm_major < 5; |
| | 102 | +----------+-----------------+-----------------+ |
| | 103 | | count(*) | min(fwhm_major) | max(fwhm_major) | |
| | 104 | +----------+-----------------+-----------------+ |
| | 105 | | 1356 | 1.417240023613 | 4.9119601249695 | |
| | 106 | +----------+-----------------+-----------------+ |
| | 107 | 1 row in set (0.01 sec) |
| | 108 | }}} |