I'm using Python 2.7.3 on my Debian server. Here is the input code:
import aplpy
import pyfits
from numpy import *
import matplotlib as plt
import montage as montage_wrapper
import PIL
r = pyfits.open('3c324IR.fits')
b = pyfits.open('3c324UVIS.fits')
g = pyfits.open('3c5GHZ.fits')
r.info()
g.info()
b.info()
print(r[1].header)
print(g[1].header)
print(b[1].header)
r1 = r[1].data
g1 = g[0].data
b1 = b[1].data
hdu = pyfits.PrimaryHDU(r1)
hdulist = pyfits.HDUList([hdu])
hdulist.writeto('r.fits')
hdu = pyfits.PrimaryHDU(g1)
hdulist = pyfits.HDUList([hdu])
hdulist.writeto('g.fits')
hdu = pyfits.PrimaryHDU(b1)
hdulist = pyfits.HDUList([hdu])
hdulist.writeto('b.fits')
aplpy.make_rgb_cube(['r.fits','g.fits','b.fits'], '3c_324_rgb.fits')
aplpy.make_rgb_image('3c_324_rgb.fits','3c_324_rgb.png')
f = aplpy.FITSFigure('3c_324_rgb.fits')
f.show_rgb()
f.save('3c_324_rgb2.png')
print 'END'
Everything works fine until I start the aplpy.make_rgb_cube()
portion of the code. I know this because when I start it and cut that out it works through fine (until it realizes there's no output from this piece to continue). Here's the mess in the terminal:
Traceback (most recent call last):
File "test9.py", line 47, in <module>
aplpy.make_rgb_cube(['r.fits','g.fits','b.fits'], '3c_324_rgb.fits')
File "/usr/local/lib/python2.7/dist-packages/aplpy/rgb.py", line 309, in make_rgb_cube
montage.mMakeHdr(images_raw_tbl, header_hdr, north_aligned=north, system=system, equinox=equinox)
File "/usr/local/lib/python2.7/dist-packages/montage_wrapper/commands.py", line 1468, in mMakeHdr
return status.parse_struct("mMakeHdr", p.stdout.read().strip())
File "/usr/local/lib/python2.7/dist-packages/montage_wrapper/status.py", line 33, in parse_struct
result = Struct(command, string)
File "/usr/local/lib/python2.7/dist-packages/montage_wrapper/status.py", line 70, in __init__
raise MontageError("%s: %s" % (command, self.msg))
montage_wrapper.status.MontageError: mMakeHdr: Invalid table file: /tmp/tmpmyYyN7/images_raw.tbl
I don't know what the above means. I've looked through it for something to look around for in Google and I've come up empty. What is this error and how can I fix it?
Here is the output using the debugger:
Then when I hit "n" "enter" again it shoots out the error:
I'll look it over and see if I can make sense of it...I inserted the
line just before
and sure enough, that's where the error is. Is it possible that it's because of the way I've "sliced" the images in the previous code? The problem with the .fits images I'm running into is that there's multiple "image" files to each one:
Above is the output when I print the Hubble IR .fits header, which shows there are several HDU's, but the only one I want is #1, which is the image of the field. The same follows for the UVIS and VLA images. The only way I could think to select one of them is by opening them with PyFITS, and then selecting each one with a line like
Is this the proper way to go about this? I guess most .fits images don't have this multi-image setup to one file. When I try running it the other way, open on the original file though it definitely doesn't like it.
After selecting with the line above I simply save it, individually, back as a .fits image.
Brandon Doyle