Changes between Initial Version and Version 1 of SDRRSETSTARTTIME


Ignore:
Timestamp:
2013-05-23T14:41:35-04:00 (11 years ago)
Author:
warb
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SDRRSETSTARTTIME

    v1 v1  
     1=== sdrrSetStarttime ===
     2
     3Snapshots merged sdrr msg file ahead to startTime, retains setup and FP-related msgs, separates setup msgs by delta
     4{{{
     5   Usage: sdrrSetStarttime sdrrfile [-s setupTime] -S startTime [-d setupMsgDelta]
     6     Creates new sdrrfile starting at "setupTime" or "startTime"
     7     FP related messages prior to startTime are retained (time is adjusted).
     8       -S startTime     : messages prior to startTime are time-adjusted
     9       -s setupTime     : (optional) if specified, sim msgs begin at setupTime and are separated by setupMsgDelta secs
     10       -d setupMsgDelta : (optional, defaults to 1sec) seconds inserted between retained messages prior to startTime
     11                          [note: setupMsgDelta is not applied unless setupTime is specified]
     12}}}
     13examples:
     14{{{
     15   CS-setup-prior-to-FPs:
     16   ----------------------
     17     sector:
     18       sdrrSetStarttime -s 12:45:10 -S 13:00:00 -d 00:00:02 sector.out > sector_setstart.out
     19       (note what time CS setup messages are 'done' and use that time (or later) as -s option for main/merge file)
     20     main/merge:
     21       sdrrSetStarttime -s 12:49:00 -S 13:00:00 -d 00:00:02 merge.out > merge_setstart.out
     22     then merge sector_setstart.out into merge_setstart.out at appropriate spot
     23}}}
     24
     25{{{
     26   FPs-prior-to-CS-setup:
     27   ----------------------
     28     main/merge:
     29       sdrrSetStarttime -s 12:45:00 -S 13:00:00 -d 00:00:02 merge.out > merge_setstart.out
     30       (note what time setup messages are 'done' and use that time as -s option for sector commands)
     31     sector:
     32       sdrrSetStarttime -s 12:52:30 -S 13:00:00 -d 00:00:02 sector.out > sector_setstart.out
     33     then merge sector_setstart.out into merge_setstart.out at appropriate spot
     34}}}