Changes between Version 7 and Version 8 of Processing/RawToRinex


Ignore:
Timestamp:
Dec 4, 2009, 4:53:15 PM (14 years ago)
Author:
benj
Comment:

Added "In a nutshell"

Legend:

Unmodified
Added
Removed
Modified
  • Processing/RawToRinex

    v7 v8  
    44
    55Note: You are advised to take a backup before doing all this - these utilities will cheerfully overwrite your source files with garbage if misused.
     6
     7== In a nutshell ==
     8
     9Running in the root directory containing your raw GPS data, The commands you probably want are (in bash):
     10
     11{{{
     12for filename in `find -name '*.T00'`; do runpkr00 -dveai $filename; done
     13for filename in `find -name '*.dat'`; do rawdatestr=`trmdatefinder.py -q $filename`; datestr=`julian $rawdatestr | sed 's/\([0-9]\+\) \([0-9]\{4\}\)/\2:\1/'`; teqc -week $datestr -tr d +nav `echo $filename | sed 's/dat$/09n/'` $filename > `echo $filename | sed 's/dat$/09o/'`; done
     14}}}
    615
    716== Converting raw Trimble data (*.T00) to Trimble DAT format ==