Changeset 528 in ntrip


Ignore:
Timestamp:
Oct 18, 2007, 3:37:06 PM (17 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncapp.cpp

    r527 r528  
    191191void bncApp::printEphHeader() {
    192192  if (_ephStream) {
    193     *_ephStream << QDate::currentDate().toString("yy-MM-dd ").toAscii().data();
    194     *_ephStream << QTime::currentTime().toString("hh:mm:ss ").toAscii().data();
     193    QString line;
     194
     195    line.sprintf(
     196          "%9.2f%11sN: GNSS NAV DATA    M: Mixed%12sRINEX VERSION / TYPE\n",
     197          3.0, "", "");
     198    *_ephStream << line;
     199
     200    line.sprintf("%s\n%60sEND OF HEADER\n", "bnc", "");
     201    *_ephStream << line;
     202
    195203    _ephStream->flush();
    196204  }
Note: See TracChangeset for help on using the changeset viewer.