IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 21, 2015, 11:54:38 AM (11 years ago)
Author:
heather
Message:

various changes, mostly related to changing dataRelease to processingVersion

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/jython/detectionbatch.py

    r38761 r38763  
    179179        self.scratchDb.updateAllRows("FrameMeta", "surveyID", str(self.surveyID))
    180180        self.scratchDb.updateFilterID("FrameMeta", self.filter)
    181         self.scratchDb.updateAllRows("FrameMeta", "dataRelease", str(self.skychunk.dataRelease))
     181        self.scratchDb.updateAllRows("FrameMeta", "processingVersion", str(self.skychunk.processingVersion))
    182182
    183183    '''
     
    296296
    297297        self.scratchDb.updateFilterID(tableName, self.filter)
    298         self.scratchDb.updateAllRows(tableName, "dataRelease", str(self.skychunk.dataRelease))
     298        self.scratchDb.updateAllRows(tableName, "processingVersion", str(self.skychunk.processingVersion))
    299299        if 'NASTRO' in header: self.totalNumPhotoRef = self.totalNumPhotoRef + int(header['NASTRO'])
    300300        self.scratchDb.replaceNullsInThisColumn(tableName, "polyOrder", "0")
     
    460460        sqlLine.group("infoFlag",        "FLAGS")                         
    461461        sqlLine.group("infoFlag2",       "FLAGS2")                         
    462         sqlLine.group("dataRelease",     str(self.skychunk.dataRelease))                 
     462        sqlLine.group("processingVersion",     str(self.skychunk.processingVersion))                 
    463463
    464464        sql = sqlLine.makeRaw(") SELECT ", " FROM " + ippTableName)
     
    518518        self.scratchDb.execute(sql)
    519519
    520         self.scratchDb.updateAllRows(tableName, "dataRelease", str(self.skychunk.dataRelease))
     520        self.scratchDb.updateAllRows(tableName, "processingVersion", str(self.skychunk.processingVersion))
    521521    '''
    522522    Populates the SkinnyObject table for this OTA
     
    545545        self.scratchDb.execute(sql)
    546546
    547         self.scratchDb.updateAllRows(tableName, "dataRelease", str(self.skychunk.dataRelease))
     547        self.scratchDb.updateAllRows(tableName, "processingVersion", str(self.skychunk.processingVersion))
    548548
    549549    '''
Note: See TracChangeset for help on using the changeset viewer.