Tag Archive
amateur astronomy awk bash b[e] supergiant cartoon conference convert evolved star exoplanet fedora figaro fits fun galaxy iraf large magellanic cloud latex linux lmc machine learning magellanic clouds massive star matplotlib meteor mypaper paper peblo photometry planet pro-am pyraf python red supergiant scisoft skinakas observatory small magellanic cloud smc spectroscopy starlink talk ubuntu university of crete video x-ray yellow hypergiant
Jupiter IR images from Skinakas
I was able to take a series of IR images from Skinakas telescope and Manos Kardasis did all the job with the processing. Here are the results:

Synchronized optical and IR observations of Jupiter.
Manos’ comments: “It is interesting though that even in oneshot – low resolution images – some bright SSTB ovals are visible. Also NNTZ LRS (L2 308, B 40.7) is bright. Another big bright spot a little northern (at NNTBn?) is visible at L2 218, B 39.”
IRAF’s error message 502 and pixel value replacement
While running a data reduction of IR observations with IRAF, the ccdproc printed this error:
ERROR (502, “floating point invalid operation”)
which means that some values of the image used (the flat image in this case) are not suitable for the performing mathematical actions (like division with 0s). Moreover the IR ccds have many bad pixels so the best is to replace these values with standard ones in order to know exactly which areas are problematic.
In order to replace them the imcalc command (stsdas / toolbox / imgtools) can be used to replace these values, like:
imcalc master_flat_temp.fits output="master_flat.fits" equals="if (im1.le.0.0) then -9.0 else im1"
if we want for example to replace all values lower or equal (le) to 0.0 with -9.0.