Changeset 39094 for trunk/ippToPsps/jython/forcedgalaxybatch.py
- Timestamp:
- Nov 9, 2015, 5:55:53 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/jython/forcedgalaxybatch.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/jython/forcedgalaxybatch.py
r39079 r39094 147 147 photcode = self.scratchDb.getPhotcodeByName(photcodeName) 148 148 149 # XXX hard-wired platescale : 0.25 150 pltscale = 0.25 151 149 152 # This is going to need to join elsewhere to get all the fields? 150 153 # XforcedSummaryID, Ra, Dec, RaErr, DecErr … … 154 157 sqlLine.group("a." + filter[1] + "ippDetectID", "b.DET_ID") 155 158 sqlLine.group("a." + filter[1] + "stackImageID", "b.IMAGE_ID") 156 sqlLine.group("a." + filter[1] + "GalMajor", "b.MAJOR_AXIS ")157 sqlLine.group("a." + filter[1] + "GalMajorErr", "b.MAJOR_AXIS_ERR ")158 sqlLine.group("a." + filter[1] + "GalMinor", "b.MINOR_AXIS ")159 sqlLine.group("a." + filter[1] + "GalMinorErr", "b.MINOR_AXIS_ERR ")159 sqlLine.group("a." + filter[1] + "GalMajor", "b.MAJOR_AXIS * " + str(pltscale)) 160 sqlLine.group("a." + filter[1] + "GalMajorErr", "b.MAJOR_AXIS_ERR * " + str(pltscale)) 161 sqlLine.group("a." + filter[1] + "GalMinor", "b.MINOR_AXIS * " + str(pltscale)) 162 sqlLine.group("a." + filter[1] + "GalMinorErr", "b.MINOR_AXIS_ERR * " + str(pltscale)) 160 163 sqlLine.group("a." + filter[1] + "GalMag", "b.MAG") 161 164 sqlLine.group("a." + filter[1] + "GalMagErr", "b.MAG_ERR")
Note:
See TracChangeset
for help on using the changeset viewer.
