Changeset 3529 in ntrip
- Timestamp:
- Dec 16, 2011, 5:34:33 PM (13 years ago)
- Location:
- trunk/BNC/RTCM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/GPSDecoder.cpp
r3528 r3529 50 50 ////////////////////////////////////////////////////////////////////////////// 51 51 GPSDecoder::GPSDecoder() { 52 _rnx = 0; 53 } 54 55 // Initialize RINEX Writer 56 ////////////////////////////////////////////////////////////////////////////// 57 void GPSDecoder::initRinex(const QByteArray& staID, const QUrl& mountPoint, 58 const QByteArray& latitude, 59 const QByteArray& longitude, const QByteArray& nmea, 60 const QByteArray& ntripVersion) { 61 if (_rnx) { 62 return; 63 } 52 64 bncSettings settings; 53 if ( settings.value("rnxPath").toString().isEmpty() ) { 54 _rnx = 0; 55 } 56 else { 57 // _rnx = new bncRinex(_staID, _mountPoint, _latitude, _longitude, 58 // _nmea, _ntripVersion); 65 if ( !settings.value("rnxPath").toString().isEmpty() ) { 66 _rnx = new bncRinex(staID, mountPoint, latitude, longitude, 67 nmea, ntripVersion); 59 68 } 60 69 } -
trunk/BNC/RTCM/GPSDecoder.h
r3528 r3529 130 130 virtual int corrGPSEpochTime() const {return -1;} 131 131 132 void initRinex(const QByteArray& staID, const QUrl& mountPoint, 133 const QByteArray& latitude, const QByteArray& longitude, 134 const QByteArray& nmea, const QByteArray& ntripVersion); 135 132 136 void dumpRinexEpoch(const t_obs& obs, const QByteArray& format); 133 137
Note:
See TracChangeset
for help on using the changeset viewer.