Ignore:
Timestamp:
09/22/09 11:41:09 (15 years ago)
Author:
daqct3
Message:
fixed the column numbers in main.c according to our corrrect slowdata format.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/PlotTempsViaGnuplot/main.c

    r103 r106  
    4444                ,plotfile);
    4545
    46         sprintf(usingStr, "($6>\%d ? $6-\%d : 1/0)", startTime, startTime);
     46        sprintf(usingStr, "($10>\%d ? $10-\%d : 1/0)", startTime, startTime);
    4747       
    4848        fputs("plot ",plotfile);
    4949       
    50         fprintf(plotfile, "\"%s\" using %s:8 title 'water out' with points"
     50        fprintf(plotfile, "\"%s\" using %s:12 title 'water out' with points"
    5151                                ,tempFilename
    5252                                ,usingStr
     
    5454       
    5555        fputs(", \\\n", plotfile);
    56         fprintf(plotfile, "\"%s\" using %s:9 title 'upper right' with points"
     56        fprintf(plotfile, "\"%s\" using %s:13 title 'upper right' with points"
    5757                                ,tempFilename
    5858                                ,usingStr
    5959                                );     
    6060        fputs(", \\\n", plotfile);
    61         fprintf(plotfile, "\"%s\" using %s:10 title 'upper left' with points"
     61        fprintf(plotfile, "\"%s\" using %s:14 title 'upper left' with points"
    6262                                ,tempFilename
    6363                                ,usingStr
    6464                                );     
    6565        fputs(", \\\n", plotfile);
    66         fprintf(plotfile, "\"%s\" using %s:11 title 'lower left' with points"
     66        fprintf(plotfile, "\"%s\" using %s:15 title 'lower left' with points"
    6767                                ,tempFilename
    6868                                ,usingStr
    6969                                );     
    7070        fputs(", \\\n", plotfile);
    71         fprintf(plotfile, "\"%s\" using %s:12 title 'lower right' with points"
     71        fprintf(plotfile, "\"%s\" using %s:16 title 'lower right' with points"
    7272                                ,tempFilename
    7373                                ,usingStr
    7474                                );     
    7575        fputs(", \\\n", plotfile);
    76         fprintf(plotfile, "\"%s\" using %s:13 title 'water in' with points"
     76        fprintf(plotfile, "\"%s\" using %s:17 title 'water in' with points"
    7777                                ,tempFilename
    7878                                ,usingStr
    7979                                );     
    8080        fputs(", \\\n", plotfile);
    81         fprintf(plotfile, "\"%s\" using %s:14 title 'humidity temp' with points"
     81        fprintf(plotfile, "\"%s\" using %s:18 title 'humidity temp' with points"
    8282                                ,tempFilename
    8383                                ,usingStr
Note: See TracChangeset for help on using the changeset viewer.