IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 2 and Version 3 of IspSasProcessing


Ignore:
Timestamp:
Sep 8, 2012, 10:16:23 AM (14 years ago)
Author:
heather
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IspSasProcessing

    v2 v3  
    9595
    9696}}}
     97
     98
     99and 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{{{
     101mysql> 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+----------+-----------------+-----------------+
     1071 row in set (0.01 sec)
     108}}}