Changeset 38763 for trunk/ippToPsps/jython/detectionbatch.py
- Timestamp:
- Sep 21, 2015, 11:54:38 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/jython/detectionbatch.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/jython/detectionbatch.py
r38761 r38763 179 179 self.scratchDb.updateAllRows("FrameMeta", "surveyID", str(self.surveyID)) 180 180 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)) 182 182 183 183 ''' … … 296 296 297 297 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)) 299 299 if 'NASTRO' in header: self.totalNumPhotoRef = self.totalNumPhotoRef + int(header['NASTRO']) 300 300 self.scratchDb.replaceNullsInThisColumn(tableName, "polyOrder", "0") … … 460 460 sqlLine.group("infoFlag", "FLAGS") 461 461 sqlLine.group("infoFlag2", "FLAGS2") 462 sqlLine.group(" dataRelease", str(self.skychunk.dataRelease))462 sqlLine.group("processingVersion", str(self.skychunk.processingVersion)) 463 463 464 464 sql = sqlLine.makeRaw(") SELECT ", " FROM " + ippTableName) … … 518 518 self.scratchDb.execute(sql) 519 519 520 self.scratchDb.updateAllRows(tableName, " dataRelease", str(self.skychunk.dataRelease))520 self.scratchDb.updateAllRows(tableName, "processingVersion", str(self.skychunk.processingVersion)) 521 521 ''' 522 522 Populates the SkinnyObject table for this OTA … … 545 545 self.scratchDb.execute(sql) 546 546 547 self.scratchDb.updateAllRows(tableName, " dataRelease", str(self.skychunk.dataRelease))547 self.scratchDb.updateAllRows(tableName, "processingVersion", str(self.skychunk.processingVersion)) 548 548 549 549 '''
Note:
See TracChangeset
for help on using the changeset viewer.
