Skip to content

Commit

Permalink
Update stwcs/distortion/mutil.py
Browse files Browse the repository at this point in the history
Co-authored-by: Mihai Cara <[email protected]>
  • Loading branch information
s-goldman and mcara authored Sep 17, 2024
1 parent baa9b41 commit 6f4561e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stwcs/distortion/mutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def readIDCtab(tabname, chip=1, date=None, direction='forward',
refpix['YREF'] = ftab[1].data.field('YREF')[row]
refpix['XSIZE'] = ftab[1].data.field('XSIZE')[row]
refpix['YSIZE'] = ftab[1].data.field('YSIZE')[row]
refpix['PSCALE'] = np.float64(round(ftab[1].data.field('SCALE')[row], 8))
refpix['PSCALE'] = round(float(ftab[1].data.field('SCALE')[row]), 8)
refpix['V2REF'] = v2ref
refpix['V3REF'] = v3ref
refpix['THETA'] = theta
Expand Down

0 comments on commit 6f4561e

Please sign in to comment.