Changes between Version 1 and Version 2 of DetectionsToMeasurements
- Timestamp:
- Sep 16, 2015, 2:51:03 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DetectionsToMeasurements
v1 v2 11 11 12 12 The smf file contains 2 extensions for each OTA in the exposure. The extension that we are interested in is the '.psf' extension. The other 13 contains the results of the detection efficienc emeasurements.13 contains the results of the detection efficiency measurements. 14 14 15 15 == Creating a concatenated file containing all detections in one table == … … 23 23 neb://any/SAS2/SAS.20141118/o5745g0427o.356801/o5745g0427o.356801.cm.1218577.smf 24 24 }}} 25 And then the concatsmf may be used to extract xthe detections25 And then the concatsmf may be used to extract the detections 26 26 {{{ 27 27 % concatsmf neb://any/SAS2/SAS.20141118/o5745g0427o.356801/o5745g0427o.356801.cm.1218577.smf o5745g0427o.356801.cm.1218577.smf.tcat … … 34 34 HDU 1 Primary Array Image Int1(3627) 35 35 HDU 2 o5745g0427o.356801.cm.1218577.smf BinTable 58 cols x 58059 rows 36 37 NOTE: concatsmf assumes that the basename of the smf file has begins format $exp_name.$exp_id.cm.$cam_id (but only exp_id is currently used) 36 38 }}} 37 39 … … 39 41 40 42 Next we go to PSPS and find Detections from this exposure with the query 43 44 {{{ 45 select imageID/100 frameID, Detection.* INTO mydb.[o5745g0427o_356801] FROM Detection where imageID/100=356801 46 47 The frameID is not necessary, I added it because I thought that it might be useful. 48 }}} 49 50 After downloading the results of this query we find that there are only 58014 detections. 45 apparently did not make their way into PSPS. 51 52 Did they get lost loading into DVO or in the ippToPsps process? 53 54 Let's figure out what's missing. 55 56 The next step is to trace the detections in PSPS back to the DVO catalog. 41 57
