Changeset 1639 in ntrip
- Timestamp:
- Feb 23, 2009, 3:38:54 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncgetthread.cpp
r1636 r1639 167 167 else { 168 168 _rnx = new bncRinex(_staID, _mountPoint, _format, _latitude, 169 _longitude, _nmea );169 _longitude, _nmea, _ntripVersion); 170 170 } 171 171 -
trunk/BNC/bncrinex.cpp
r1535 r1639 64 64 bncRinex::bncRinex(const QByteArray& statID, const QUrl& mountPoint, 65 65 const QByteArray& format, const QByteArray& latitude, 66 const QByteArray& longitude, const QByteArray& nmea) { 66 const QByteArray& longitude, const QByteArray& nmea, 67 const QByteArray& ntripVersion) { 67 68 68 69 _statID = statID; … … 72 73 _longitude = longitude; 73 74 _nmea = nmea; 75 _ntripVersion = ntripVersion; 74 76 _headerWritten = false; 75 77 _reconnectFlag = false; … … 233 235 // Read downloaded file 234 236 // -------------------- 235 else {237 else if ( _ntripVersion != "N" ) { 236 238 QDate currDate = currentDateAndTimeGPS().date(); 237 239 if ( !_skeletonDate.isValid() || _skeletonDate != currDate ) { -
trunk/BNC/bncrinex.h
r1524 r1639 39 39 bncRinex(const QByteArray& statID, const QUrl& mountPoint, 40 40 const QByteArray& format, const QByteArray& latitude, 41 const QByteArray& longitude, const QByteArray& nmea); 41 const QByteArray& longitude, const QByteArray& nmea, 42 const QByteArray& ntripVersion); 42 43 ~bncRinex(); 43 44 void deepCopy(const p_obs obs); … … 77 78 QByteArray _longitude; 78 79 QByteArray _nmea; 80 QByteArray _ntripVersion; 79 81 bool _reconnectFlag; 80 82 QDate _skeletonDate;
Note:
See TracChangeset
for help on using the changeset viewer.