IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 5 and Version 6 of SA9ndetections


Ignore:
Timestamp:
Sep 28, 2012, 4:30:56 PM (14 years ago)
Author:
heather
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SA9ndetections

    v5 v6  
    8181
    8282so it's looking (potentially) like the bulk of the stuff is on the edges... hmmm...
     83
     84range of -999 detections
     85
     86327.674428      339.401002      -5.56900272534  6.29028233733
     87
     88range of non -999 detections
     89
     90328.125006286168        339.785531622512        -5.56905205605347       6.24998288116431
     91
     92ooookay... lets see how many items are out of range and what they are
     93
     94{{{
     95select  ndetections, count(*) from object where ( ra < 328.125006286168  or ra > 339.785531622512 ) group by ndetections
     96}}}
     97
     98which gives me
     99[ndetections]:Int16     [Column1]:Int32
     100-999    60649
     101
     102ok, so most of those guys are ugh...  out of range...
     103
     104lets get the batch like thing:
     105
     106{{{
     107select  ippobjid/1000000000 , ndetections, count(*) as n from object where
     108( ra < 328.125006286168  or ra > 339.785531622512 
     109or dec > 6.24998288116431 or dec < -5.56905205605347) group by ndetections,ippobjid/1000000000 
     110order by n desc
     111}}}
     112
     113
     114ippobjid/thing || ndetections || count (*) ||
     115||93096 ||      -999 || 7398||
     116||18740 ||      -999    ||6601||
     117||93092 ||      -999 || 6577||
     118||18744 ||      -999    ||6351||
     119||93116 ||      -999    ||5752||
     120||93120 ||      -999    ||5657||
     121||93088 ||      -999    ||3902||
     122||93100 ||      -999    ||3866||
     123||18768 ||      -999    ||3552||
     124||18748 ||      -999    ||3463||
     125||93112 ||      -999    ||3323||
     126||18756 ||      -999    ||3205||
     127||18764 ||      -999    ||231||
     128||18986 ||      -999    ||213||
     129||93084 ||      -999    ||173||
     130||93104 ||      -999    ||121||
     131||93108 ||      -999    ||114||
     132||18985 ||      -999    ||77||
     133||18760 ||      -999    ||38||
     134||18752 ||      -999    ||35||
     135
     136these are the exact same numbers as above - so - '''The -999s almost entirely come from 2 sources.  12300 come from the failed batch, 60649 come from being outside of some range that heather doesn't understand ''' This is a psps problem..
    83137=== ndetections = very large number ===
    84138