Importing Data From Custom Applications

If you are writing your own data acquisition program and you want to be able to import the data in Graphical Analysis 3, the data file format for formatting is a collection of data sets.

{Data Set 1}
{Data Set 2}
...
{Data Set N}

Each Data Set is a tab delimited block of text with the following format:

Vernier Format 2
{DATA SOURCE} {DATE} {TIME}
{Data Set Name}
{Column1 Long Name} {Column2 Long Name} ... {ColumnM Long Name}
{Column1 Short Name} {Column2 Short Name} ... {ColumnM Short Name}
{Column1 Units} {Column2 Units} ... {ColumnM Units}
<BLANK LINE>
{C1R1 Data} {C2R1 Data} ... {CMR1 Data}
{C1R2 Data} {C2R2 Data} ... {CMR2 Data}
...
{C1RL Data} {C2RL Data} ... {CMRL Data}

where the data set has "M" columns and "L" rows of data. The data set delimiter is a "M", tab delimited zeros. Another rule when working with data sets is that the double-quotation and colon marks are not allowed.

The number of columns does not need to be consistent between data sets  nor do the number of rows need to be consistent between data sets or columns within a data set.

An example would be as follows:

Vernier Format 2
My\GPS\Device 1/22/2002 12:51:07
Mike's Travel Data
"Greenwich Mean Time" Longitude Latitude
Time    Long    Lat    Alt
hours    degrees    degrees    meters

6    -10    20    1000
7    -10    20.5    1500
8    -10    21    1250
9    -10    20.6    1400

Vernier Format 2
My\GPS\Device 1/22/2002 12:51:07
Ike's Travel Data
"Greenwich Mean Time" Longitude Latitude Altitude
Time    Long    Lat    Alt
hours    degrees    degrees    meters

6    -10    20    1000
7    -10    20.5    1500
8    -10    1250    1250
9    -10    1400    1400