G-858BP Backpack Mag Operators Manual
TYPE 6: Discontinuity events.
fprintf(pAscFile, "%-2u %12.2lf %12.2lf %.2d:%.2d:%.2d.%.2d
%.2d/%.2d/%2.d %10ld %11ld %11ld %3u %10ld\r\n",
type, // 6 in this case
x_position, // X coordinate
y_position, // Y coordinate
hours, // time of day
minutes,
seconds,
hundredths,
month, // date
day,
year,
Number_of_Readings, // Number of readings since last position
Line, // Line number
Station, // Mark Number
Status, // G-858BP internal information.
Positions ); // Number of positions since last discontinuity
Example: (some blanks omitted to fit onto a single line)
6 26.00 0.00 11:02:08.70 06/01/95 168 13 0 5
3
TYPE 9: Pause event
fprintf(pAscFile, "%-2u %.2d:%.2d:%.2d.%.2d %.2d/%.2d/%2.d\r\n",
type, // 9 in this case
hours, // time of day
minutes,
seconds,
hundredths,
month, // date
day,
year ) ;
Example:
9 18:49:44.90 05/31/95
TYPE 12: Unpause event
fprintf(pAscFile, "%-2u %.2d:%.2d:%.2d.%.2d %.2d/%.2d/%2.d\r\n",
type, // 12 in this case
hours, // time of day
minutes,
seconds,
hundredths,
month, // date
day,
year ) ;
Example:
12 18:49:44.90 05/31/95
94