diff options
Diffstat (limited to 'updatewcs/corrections.py')
-rw-r--r-- | updatewcs/corrections.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/updatewcs/corrections.py b/updatewcs/corrections.py index 61f73e7..15fd106 100644 --- a/updatewcs/corrections.py +++ b/updatewcs/corrections.py @@ -19,9 +19,9 @@ class TDDCorr(object): Solution of the WFC :Parameters: - `owcs`: HSTWCS object + `ext_wcs`: HSTWCS object An extension HSTWCS object to be modified - `refwcs`: HSTWCS object + `ref_wcs`: HSTWCS object A reference HSTWCS object """ @@ -141,8 +141,8 @@ class CompSIP(object): Bkey="B_%d_%d" % (m,n-m) kw2update[Akey] = sipval[0,0] kw2update[Bkey] = sipval[1,0] - #kw2update['CTYPE1'] = 'RA---TAN-SIP' - #kw2update['CTYPE2'] = 'DEC--TAN-SIP' + kw2update['CTYPE1'] = 'RA---TAN-SIP' + kw2update['CTYPE2'] = 'DEC--TAN-SIP' return kw2update updateWCS = classmethod(updateWCS) |