You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
After talking with @kolbylyn, realized we need to put in a bit of extra caution because files come in slowly from TUI and may be incomplete when PyDIS tries to read them.
I tested this w/ astropy.io.fits.open(), and if you give it an incomplete file it returns an IOError. Thus we need to include a Try-Except test, something like this:
while ...
# look for new files, if found, then do this
try:
hdulist = fits.open('new_img.fits')
except IOError:
print('nope')
write a version of
autoreduce
that does the cal's, and then waits and reduces data in real time as it comes down from the telescopeautoreduce
functionality. assume user takes calibration files firstThe text was updated successfully, but these errors were encountered: