sot/mica

Refactor ACA L0 processing to not use a singleton class

Opened this issue · 1 comments

The Updater class in aca_l0.py is being used as a singleton class for the practical effect of allowing free use of globals but without identifying them as such. Better to make this a module and identify up front which are the globals (via ALL_CAPS).

This is a relatively low priority.

And yes, I know I've done this exact thing in the past...