sot / kadi

Chandra commands and events
https://sot.github.io/kadi
BSD 3-Clause "New" or "Revised" License
5 stars 3 forks source link

Stop maintaining timelines and commands v1 #230

Open taldcroft opened 2 years ago

taldcroft commented 2 years ago

Census

$ find . -name '*.py' \
 | egrep -v '\./timelines' \
 | egrep -v '\/build\/' \
 | egrep -v '\.\/cmd_states' \
 | xargs egrep '(timelines|cmd_states.db3)' -l

# OK: don't care
./state_of_aca/guide_acq_warm_pix/make_warm_pix_estimation_table.py
./state_of_aca/dark_cals_with_temp/dark_cals_with_temp.py

# Fixed in https://github.com/sot/mica/issues/279
./mica/mica/utils.py
./mica/mica/report/report.py
./mica/mica/starcheck/process.py
./mica/mica/starcheck/starcheck.py
./mica/mica/stats/update_acq_stats.py

# Fixed in https://github.com/sot/agasc/pull/135
./agasc/agasc/supplement/magnitudes/star_obs_catalogs.py

# OK
./kadi/utils/migrate_cmds_to_cmds2.py  # OK: needed for migration
./kadi/kadi/scripts/update_cmds_v1.py  # OK: will be discontinue
./kadi/kadi/commands/tests/test_states.py  # OK: just in a comment

# Fixed in https://github.com/sot/aca_weekly_report/pull/11
./aca_weekly_report/aca_weekly_report/report.py

# OK: legacy code
./astromon/legacy/sybase2sqlite.py

# Fix needed (but easy)
./jobwatch/jobwatch/skawatch.py

# OK: don't care
./obc_bad_stat_warm_pix/make_warm_pix_estimation_table.py

# Fix needed eventually but we can discontinue?
./schedule_view/get_schedules.py

# OK: discontinue!!
./scs107/scs107_response.py
taldcroft commented 1 year ago

For reference in finding dependencies. I have an area with a clone of all the sot repos:

find . -name '*.py' | egrep -v '\./timelines' | egrep -v '\/build\/' | egrep -v '\.\/cmd_states' | xargs grep cmd_states.db3 -C 3 
find . -name '*.py' | egrep -v '\./timelines' | egrep -v '\/build\/' | egrep -v '\.\/cmd_states' | xargs grep timelines -C 3