Purpose
=======

A generic data parser for the OpenGPS@CU data. Handling gigabytes of
data in MATLAB is not perty - I thus decided to write this tool so that OpenGPS
data can be 'reshaped' into something that is more easy to work with in MATLAB.

What can this do for you 
========================
1) Recursively combine files in multiple directories (using mscounter field as
   guide)
2) Average 'x' values to decrease file size
3) Decimate down (no, only integer decimation allowed)
4) Extract certain fields recursively out of files

Basically you can combine any of the operations, thus if you want AGC1 readings
averaged over 1 second for 3 days worth of files, it can be done.

This will be only a command line program with the following options

ogDataParser 

 -d : Directories to process (eg. 20040412-*)
 -t : type of file to process (temperature | agc | IQ | etc)
 -o : Output file name
 -c : If appropriate, process channels: eg 0,1,2 0-10, etc
 -a : averge time in milliseconds (0 - don't average)
 -f : filter mscount data to process : only process data with mscount between these
 ranges, eg: -l 1000,2000 (will only process data with ms_count >= 1000 and <=
		 2000)
