| | 1 | = DR2 Wiki = |
| | 2 | |
| | 3 | == DVO/cmf/smf level == |
| | 4 | |
| | 5 | == IppToPsps Notes == |
| | 6 | |
| | 7 | == Batch Progress == |
| | 8 | |
| | 9 | *** last updated 9/27/2017 *** |
| | 10 | |
| | 11 | || ''batch type'' || ''dvo/cmf/smf status'' || ''schema status'' || ''ipptopsps ready?'' || ''batches expected'' || ''batches made'' || ''comments'' || |
| | 12 | || IN || || || |||| || || || |
| | 13 | || FW || duplicates in poles, needs gene || done || yes || 997k (need exact number) || 85% (need exact number) || || |
| | 14 | || P2 || done || done || yes || 374446 || 374272|| '''needs cleanup - had missing smf files''' || |
| | 15 | || OB || need new dvo cal || changes || no (changes) || || || |
| | 16 | || ST || need new dvo cal || || || || || |
| | 17 | || FO || ?? || || || || || |
| | 18 | || FG || need to build master dvodb || || || || || |
| | 19 | || DF || not for dr2 || || || || || |
| | 20 | || DO || not for dr2 || || || || || |
| | 21 | |
| | 22 | == PSPS database checks == |
| | 23 | |
| | 24 | === specific for Conrad === |
| | 25 | |
| | 26 | |
| | 27 | |
| | 28 | === specific for Conrad/Bernie === |
| | 29 | |
| | 30 | * batch row count checks for stacks |
| | 31 | {{{ |
| | 32 | |
| | 33 | select (uniquePspsSTid/1000000000) , count(*) from StackObjectThin group by (uniquePspsSTid/1000000000) |
| | 34 | |
| | 35 | select (uniquePspsSTid/1000000000) , count(*) from StackObjectThinAttributes group by (uniquePspsSTid/1000000000) |
| | 36 | |
| | 37 | select (uniquePspsSTid/1000000000) , count(*) from StackApFlx group by (uniquePspsSTid/1000000000) |
| | 38 | |
| | 39 | select (uniquePspsSTid/1000000000) , count(*) from StackApFlxExGalUnc group by (uniquePspsSTid/1000000000) |
| | 40 | |
| | 41 | select (uniquePspsSTid/1000000000) , count(*) from StackApFlxExGalCon6 group by (uniquePspsSTid/1000000000) |
| | 42 | |
| | 43 | select (uniquePspsSTid/1000000000) , count(*) from StackApFlxExGalCon8 group by (uniquePspsSTid/1000000000) |
| | 44 | }}} |
| | 45 | |
| | 46 | * batch row count checks for forced warps |
| | 47 | |
| | 48 | * ForcedWarpMeta -- need to think about this, it's a small table, should be easy to verify. |
| | 49 | * ForcedWarpToImage -- need to to think about this, it's a small table, should be easy to verify. |
| | 50 | |
| | 51 | These queries will effectively make a list of 'batchid', and rows in each batch, for each of these tables. HAF needs to make a master list of what we expect. It's easy to join in topcat, and correlate batchid with ra/dec area of sky, it will be possible to make plots to verify coverage. |
| | 52 | |
| | 53 | {{{ |
| | 54 | select (uniquePspsFWid/1000000000) , count(*) from ForcedWarpMeasurement group by (uniquePspsFWid/1000000000) |
| | 55 | |
| | 56 | select (uniquePspsFWid/1000000000) , count(*) from ForcedWarpMasked group by (uniquePspsFWid/1000000000) |
| | 57 | |
| | 58 | select (uniquePspsFWid/1000000000) , count(*) from ForcedWarpExtended group by (uniquePspsFWid/1000000000) |
| | 59 | |
| | 60 | select (uniquePspsFWid/1000000000) , count(*) from ForcedWarpLensing group by (uniquePspsFWid/1000000000) |
| | 61 | |
| | 62 | }}} |