| 43 | == Splitting up RINEX Data == |
| 44 | |
| 45 | Sometimes basestation data over multiple days are written to one file. This will result in errors in the navigation software, perhaps about the basestation data being too long or moving location. |
| 46 | |
| 47 | To view a summary of RINEX data use either of the below commands: |
| 48 | |
| 49 | {{{ |
| 50 | teqc -O.sum . [INPUT_FILE] |
| 51 | }}} |
| 52 | or |
| 53 | {{{ |
| 54 | teqc -O.sum . [INPUT_FILE] |
| 55 | }}} |
| 56 | |
| 57 | Below is an example of basestation data that contains multiple days: |
| 58 | |
| 59 | {{{ |
| 60 | ! Notice ! 2023 May 23 08:08:28.000: poss. incr. of sampling int. OR data gap of 4201.000 seconds (min. dt found= 1.000 s) |
| 61 | ! Notice ! 2023 May 23 08:08:59.000: poss. incr. of sampling int. OR data gap of 26.000 seconds (min. dt found= 1.000 s) |
| 62 | ! Notice ! 2023 May 24 08:00:12.000: poss. incr. of sampling int. OR data gap of 70564.000 seconds (min. dt found= 1.000 s) |
| 63 | ! Notice ! 2023 May 26 07:09:45.000: poss. incr. of sampling int. OR data gap of 156199.000 seconds (min. dt found= 1.000 s) |
| 64 | ! Notice ! 2023 May 27 08:52:50.000: poss. incr. of sampling int. OR data gap of 78443.000 seconds (min. dt found= 1.000 s) |
| 65 | ! Notice ! 2023 May 28 07:07:11.000: poss. incr. of sampling int. OR data gap of 62460.000 seconds (min. dt found= 1.000 s) |
| 66 | ! Notice ! 2023 May 30 06:44:54.000: poss. incr. of sampling int. OR data gap of 153869.000 seconds (min. dt found= 1.000 s) |
| 67 | ! Notice ! 2023 May 31 06:50:53.000: poss. incr. of sampling int. OR data gap of 71677.000 seconds (min. dt found= 1.000 s) |
| 68 | ! Notice ! 2023 Jun 1 07:06:25.000: poss. incr. of sampling int. OR data gap of 77228.000 seconds (min. dt found= 1.000 s) |
| 69 | ! Notice ! 2023 Jun 25 09:18:19.000: poss. incr. of sampling int. OR data gap of 2067472.000 seconds (min. dt found= 1.000 s) |
| 70 | ! Notice ! 2023 Jun 26 06:48:02.000: poss. incr. of sampling int. OR data gap of 62715.000 seconds (min. dt found= 1.000 s) |
| 71 | ! Notice ! 2023 Jun 26 10:29:26.000: poss. incr. of sampling int. OR data gap of 885.000 seconds (min. dt found= 1.000 s) |
| 72 | }}} |
| 73 | |
| 74 | Extract a specific time period with the following command. The start flag '-st' or the end flag '-e' can be used independantly. Times are formatted as 'YYYY_MM_DD:hh:mm:ss', |
| 75 | |
| 76 | {{{ |
| 77 | teqc -st [START_TIME] -e [END_TIME] +nav [OUTPUT].YYn [INPUT] > [OUTPUT].YYo |
| 78 | }}} |
| 79 | |
| 80 | e.g |
| 81 | {{{ |
| 82 | teqc -st 2023_05_28:00:00:00 -e 2023_05_28:23:59:59 +nav SIENA_148.23n SIENA_9488_0523_061721.23o > SIENA_148.23o |
| 83 | }}} |
| 84 | |