Changes between Version 8 and Version 9 of Processing/RawToRinex
- Timestamp:
- Dec 4, 2009, 4:55:12 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Processing/RawToRinex
v8 v9 13 13 for 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 14 }}} 15 16 Note you should replace the "09" bit of the file extensions (ie 09n, 09o) with the year in which the observations were collected. It's just convention, it'll still work if you don't, but you should anyway. 17 18 See below for more information about what those commands are doing. 15 19 16 20 == Converting raw Trimble data (*.T00) to Trimble DAT format ==