Changeset 1639 in ntrip


Ignore:
Timestamp:
Feb 23, 2009, 3:38:54 PM (15 years ago)
Author:
weber
Message:

* empty log message *

Location:
trunk/BNC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncgetthread.cpp

    r1636 r1639  
    167167  else {
    168168    _rnx = new bncRinex(_staID, _mountPoint, _format, _latitude,
    169                         _longitude, _nmea);
     169                        _longitude, _nmea, _ntripVersion);
    170170  }
    171171
  • trunk/BNC/bncrinex.cpp

    r1535 r1639  
    6464bncRinex::bncRinex(const QByteArray& statID, const QUrl& mountPoint,
    6565                   const QByteArray& format, const QByteArray& latitude,
    66                    const QByteArray& longitude, const QByteArray& nmea) {
     66                   const QByteArray& longitude, const QByteArray& nmea,
     67                   const QByteArray& ntripVersion) {
    6768
    6869  _statID        = statID;
     
    7273  _longitude     = longitude;
    7374  _nmea          = nmea;
     75  _ntripVersion  = ntripVersion;
    7476  _headerWritten = false;
    7577  _reconnectFlag = false;
     
    233235  // Read downloaded file
    234236  // --------------------
    235   else {
     237  else if ( _ntripVersion != "N" ) {
    236238    QDate currDate = currentDateAndTimeGPS().date();
    237239    if ( !_skeletonDate.isValid() || _skeletonDate != currDate ) {
  • trunk/BNC/bncrinex.h

    r1524 r1639  
    3939   bncRinex(const QByteArray& statID, const QUrl& mountPoint,
    4040            const QByteArray& format, const QByteArray& latitude,
    41             const QByteArray& longitude, const QByteArray& nmea);
     41            const QByteArray& longitude, const QByteArray& nmea,
     42            const QByteArray& ntripVersion);
    4243   ~bncRinex();
    4344   void deepCopy(const p_obs obs);
     
    7778   QByteArray    _longitude;
    7879   QByteArray    _nmea;
     80   QByteArray      _ntripVersion;
    7981   bool          _reconnectFlag;
    8082   QDate         _skeletonDate;
Note: See TracChangeset for help on using the changeset viewer.