akdeniz-uzay / A-Track

A-Track: Detecting Moving Objects in FITS images.
GNU General Public License v3.0
19 stars 7 forks source link

FITS header bug on alipy 2.0 #1

Closed yucelkilic closed 9 years ago

yucelkilic commented 9 years ago

Fixed align.py's affineremap header copying section with following changes:

Line 51:

   tofits(alifilepath, data, hdr = None, verbose = verbose)

to:

   if hdr:
       tofits(alifilepath, data, hdr = hdr, verbose = verbose)
   else:
       tofits(alifilepath, data, hdr = None, verbose = verbose)