Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://www.stsci.edu/spst/UnixTransition/doc/send_sars_for_snas3.html
Дата изменения: Fri Apr 8 12:46:15 2016 Дата индексирования: Mon Apr 11 05:41:06 2016 Кодировка: Поисковые слова: messenger |
send_sars_for_snas3 (version 15.07.29) | index send_sars_for_snas3.py |
PURPOSE --
Send the SARS (schedule add requests) to SNAS to request TDRSS
service from the NCC at Goddard. For each schedule name, copy the
.ssr and .tcw files to the SNAS_IMPORT directory.
Based on send_sars_to_ups.py
DEVELOPER --
Gary Bower and Don Chance
MODIFICATION HISTORY --
o Initial implementation 7/21/10
o default to 50 SARS drc 8/9/10
o fix sanity checking code drc 8/17/10
o send all events at once for generic run drc 8/17/10
o monitor responses 04/01/11
o fix file names 04/04/11
o fix typo 04/04/11B
o array initialization 04/04/11D
o add status check and summary section 05/06/11
o wait for status file to appear 05/10/11
o fix validity check 05/11/11
o catch unrecognised rejects 05/16/11
o update reject and decline handling 05/17/11
o delete executed SNAS command files (.qrs .qel) 05/26/11
o fix id reference 06/09/11
o catch EV list error 07/26/11
o allow directory option (for .ssr and .sdr) 08/23/11
o ensure Deletes sent first (multifile) 12/14/11
o Add to documentation 07/10/12
o fix reporting error 06/23/15
o recognized more statuses 07/06/15
o remove reliance on rowcount after DB update 07/15/15
o do update_pass_status only for NCC mode g or i
07/29/15
o increased real-time default SARS to 100 - jrc
09/10/15
Modules | ||||||
|
Functions | ||
|
Data | ||
ADD_PASS_ARCHIVE_DIR = '/data/scheduling/spss_flight_data/pass/archive/add' INGEST_TIMEOUT = 120 PASS_ARCHIVE_DIR = '/data/scheduling/spss_flight_data/pass/archive' REPORT_EXT_DICT = {'qed': 'red', 'qel': 'rel', 'qer': 'rer', 'qrs': 'rrs'} REPORT_TIMEOUT = 180 SNAS_ARCHIVE = '/data/scheduling/spss_flight_data/planinst/snas/archive' SNAS_EXPORT = '/data/scheduling/spss_flight_data/planinst/snas/export' SNAS_IMPORT = '/data/scheduling/spss_flight_data/planinst/snas/import' __version__ = '15.07.29' |