IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 14 and Version 15 of SA9ndetections


Ignore:
Timestamp:
Oct 10, 2012, 10:55:42 AM (14 years ago)
Author:
heather
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SA9ndetections

    v14 v15  
    221221
    222222how do these get put into psps? ipptopsps grabs n[x] from NCODE in dvo, and ndetections from NMEASURE. This is something to ask Gene about (why NMEASURE sometimes is not equal to sum(NCODE))
     223
     224Some more investigations:
     225
     226{{{
     227select (ndetections - ng - nr -ni -nz -ny), count(*) from object where ndetections> -999 group by ((ndetections - ng - nr -ni -nz -ny) )
     228order by ((ndetections - ng - nr -ni -nz -ny) )
     229}}}
     230
     231This gives a table like this:
     232
     233{{{
     234diff    count(diff)
     2350       14332649
     2361       436944
     2372       113206
     2383       31720
     2394       12837
     2405       729
     2416       1337
     2427       78
     2438       299
     2449       37
     24510      5
     24611      6
     24712      15
     24813      2
     24922      1
     250}}}
     251
     252lets investigate in my subset of objects. Lets look at where the difference = 8
     253
     254{{{
     255select * from sas9objects2 where ((ndetections - ng - nr -ni -nz -ny) ) = 8
     256}}}
     257{{{
     258ippobjid        ra                      dec                    ndet    ng      nr      ni       nz      ny
     25918915000068213  334.003331264054        0.173672694705413       10      0       0       0       0       2
     26018914000071139  333.565131996048        0.0149163575293166      10      0       0       0       0       2
     26193274000064190  333.210589389621        -0.823610922500866      10      0       0       0       0       2
     26293274000064238  333.213851183943        -0.820473251004263      10      0       0       0       0       2
     26393278000058694  333.610383900768        -0.178547334031098      11      0       0       0       0       3
     26418916000069421  334.402330333111        0.388832517325818       19      0       0       4       4       3
     26593275000078069  333.805282911705        -0.811373935148214      10      0       0       0       0       2
     26693274000064493  333.229893419105        -0.807992283581902      10      0       0       0       0       2
     26793273000067099  333.017920578856        -0.798191607076108      10      0       0       0       0       2
     26818916000071745  334.794921756804        0.621440169464687       10      0       0       0       0       2
     26918920000067165  334.698473145177        0.799924706194001       10      0       0       0       0       2
     27018920000068631  334.80890851311         0.808805008767286       20      4       0       0       4       4
     27193279000050876  333.919744618416        -0.0100643274020041     11      0       0       0       0       3
     272}}}
     273
     274ok. I'm going to grab a couple of them (18915000068213 and 18920000068631) and see what they look like in stackdetectionfull and detectionfull:
     275
     276
     277for 18915000068213:
     278
     279{{{
     280select ippobjid, filterid, instflux, instfluxerr from stackdetectionfull where ippobjid = 18915000068213  order by filterid
     281}}}
     282
     283{{{
     284ippobjid       filterid instflux        instfluxerr
     28518915000068213  1       1.28959         -999
     28618915000068213  1       1.31326         -999
     28718915000068213  2       1.42652         -999
     28818915000068213  2       1.42781         -999
     28918915000068213  3       1.56402         -999
     29018915000068213  3       1.66755         -999
     29118915000068213  4       3.29652         -999
     29218915000068213  4       3.29929         -999
     29318915000068213  5       22.7659         4.12512
     29418915000068213  5       23.4272         4.06752
     295}}}
     296
     297for 18920000068631
     298
     299{{{
     300select ippobjid, filterid, instflux, instfluxerr from stackdetectionfull where ippobjid = 18920000068631  order by filterid
     301}}}
     302
     303{{{
     304ippobjid       filterid instflux         instfluxerr
     30518920000068631  1       0.44921         0.729298
     30618920000068631  1       0.857526        0.686621
     30718920000068631  1       0.905281        0.692741
     30818920000068631  1       1.10313         0.753273
     30918920000068631  2       1.43996         -999
     31018920000068631  2       1.50241         -999
     31118920000068631  2       1.50626         -999
     31218920000068631  2       1.759           -999
     31318920000068631  3       1.56143         -999
     31418920000068631  3       1.60222         -999
     31518920000068631  3       1.61214         -999
     31618920000068631  3       1.66739         -999
     31718920000068631  4       2.88612         1.94558
     31818920000068631  4       3.2843          1.95199
     31918920000068631  4       3.54056         1.91966
     32018920000068631  4       3.92929         1.96794
     32118920000068631  5       28.1172         4.92211
     32218920000068631  5       28.1232         4.99574
     32318920000068631  5       28.8979         5.30701
     32418920000068631  5       30.4016         5.37306
     325}}}
     326
     327checking detectionfull returns nothing for both of these objects, here are the queries to check:
     328
     329{{{
     330select ippobjid, filterid, instflux, instfluxerr from detectionfull where ippobjid = 18915000068213  order by filterid
     331select ippobjid, filterid, instflux, instfluxerr from detectionfull where ippobjid = 18920000068631  order by filterid
     332
     333}}}
     334
     335But, it appears that the missing detections do exist in stackdetectionfull as limiting magnitudes...