IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Initial Version and Version 1 of DR2Wiki


Ignore:
Timestamp:
Sep 28, 2017, 11:16:58 AM (9 years ago)
Author:
heather
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DR2Wiki

    v1 v1  
     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
     33select (uniquePspsSTid/1000000000) , count(*) from StackObjectThin group by (uniquePspsSTid/1000000000)
     34
     35select (uniquePspsSTid/1000000000) , count(*) from StackObjectThinAttributes group by (uniquePspsSTid/1000000000)
     36
     37select (uniquePspsSTid/1000000000) , count(*) from StackApFlx group by (uniquePspsSTid/1000000000)
     38
     39select (uniquePspsSTid/1000000000) , count(*) from StackApFlxExGalUnc group by (uniquePspsSTid/1000000000)
     40
     41select (uniquePspsSTid/1000000000) , count(*) from StackApFlxExGalCon6 group by (uniquePspsSTid/1000000000)
     42
     43select (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
     51These 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{{{
     54select (uniquePspsFWid/1000000000) , count(*) from ForcedWarpMeasurement group by (uniquePspsFWid/1000000000)
     55
     56select (uniquePspsFWid/1000000000) , count(*) from ForcedWarpMasked group by (uniquePspsFWid/1000000000)
     57
     58select (uniquePspsFWid/1000000000) , count(*) from ForcedWarpExtended group by (uniquePspsFWid/1000000000)
     59
     60select (uniquePspsFWid/1000000000) , count(*) from ForcedWarpLensing group by (uniquePspsFWid/1000000000)
     61
     62}}}