Changeset 3525 in ntrip for trunk/BNC/bncrinex.cpp


Ignore:
Timestamp:
Dec 15, 2011, 10:00:46 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncrinex.cpp

    r3344 r3525  
    6666////////////////////////////////////////////////////////////////////////////
    6767bncRinex::bncRinex(const QByteArray& statID, const QUrl& mountPoint,
    68                    const QByteArray& format, const QByteArray& latitude,
    69                    const QByteArray& longitude, const QByteArray& nmea,
    70                    const QByteArray& ntripVersion) {
     68                   const QByteArray& latitude, const QByteArray& longitude,
     69                   const QByteArray& nmea, const QByteArray& ntripVersion) {
    7170
    7271  _statID        = statID;
    7372  _mountPoint    = mountPoint;
    74   _format        = format.left(6);
    7573  _latitude      = latitude;
    7674  _longitude     = longitude;
     
    377375// Write RINEX Header
    378376////////////////////////////////////////////////////////////////////////////
    379 void bncRinex::writeHeader(const QDateTime& datTim,
     377void bncRinex::writeHeader(const QByteArray& format, const QDateTime& datTim,
    380378                           const QDateTime& datTimNom) {
    381379
     
    439437                                "    hh    mm   ss.zzz0000").toAscii().data();
    440438        _out << "     GPS         TIME OF FIRST OBS"    << endl;
    441         QString hlp = (_format + QString(" %1").arg(_mountPoint.host() +
     439        QString hlp = (format.left(6) + QString(" %1").arg(_mountPoint.host() +
    442440                      _mountPoint.path())).leftJustified(60, ' ', true);
    443441        _out << hlp.toAscii().data() << "COMMENT" << endl;
     
    511509                                "    hh    mm   ss.zzz0000").toAscii().data();
    512510    _out << "     GPS         TIME OF FIRST OBS"    << endl;
    513     QString hlp = (_format + QString(" %1").arg(_mountPoint.host() +
     511    QString hlp = (format.left(6) + QString(" %1").arg(_mountPoint.host() +
    514512          _mountPoint.path())).leftJustified(60, ' ', true);
    515513    _out << hlp.toAscii().data() << "COMMENT" << endl;
     
    533531// Write One Epoch into the RINEX File
    534532////////////////////////////////////////////////////////////////////////////
    535 void bncRinex::dumpEpoch(long maxTime) {
     533void bncRinex::dumpEpoch(const QByteArray& format, long maxTime) {
    536534
    537535  // Select observations older than maxTime
     
    570568  // ------------------
    571569  if (!_headerWritten) {
    572     writeHeader(datTim, datTimNom);
     570    writeHeader(format, datTim, datTimNom);
    573571  }
    574572
Note: See TracChangeset for help on using the changeset viewer.