Changeset 9032 in ntrip
- Timestamp:
- Aug 27, 2020, 8:16:09 AM (4 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r9025 r9032 1631 1631 * else. */ 1632 1632 if ((id >= 1057 && id <= 1068) || 1633 1634 1633 (id >= 1240 && id <= 1270) || 1634 (id == 4076)) { 1635 1635 RTCM3coDecoder::e_type type = RTCM3coDecoder::e_type::RTCMssr; 1636 1636 if (id == 4076) { -
trunk/BNC/src/RTCM3/RTCM3coDecoder.h
r9025 r9032 27 27 28 28 #include <fstream> 29 30 29 #include <QByteArray> 31 30 #include <QList> 32 31 #include <QMap> 33 34 32 #include "GPSDecoder.h" 35 33 #include "../RTCM3/clock_and_orbit/clock_orbit_igs.h" 36 34 #include "../RTCM3/clock_and_orbit/clock_orbit_rtcm.h" 37 35 38 //class SsrCorr; 39 40 class RTCM3coDecoder : public QObject, public GPSDecoder{ 36 class RTCM3coDecoder : public QObject, public GPSDecoder { 41 37 Q_OBJECT 42 38 public: -
trunk/BNC/src/RTCM3/bits.h
r9025 r9032 91 91 92 92 #define GETFLOATSIGNM(b, a, c) { \ 93 int l; \93 int l; \ 94 94 LOADBITS(a) \ 95 95 l = (bitfield<<(64-numbits))>>(64-1); \ -
trunk/BNC/src/upload/bncrtnetuploadcaster.cpp
r9025 r9032 34 34 const QString& rnxFileName, int PID, int SID, int IOD, int iRow) : 35 35 bncUploadCaster(mountpoint, outHost, outPort, ntripVersion, userName, password, iRow, 0) { 36 qDebug() << "bncRtnetUploadCaster";37 36 38 37 if (!mountpoint.isEmpty()) { … … 245 244 // 246 245 //////////////////////////////////////////////////////////////////////////// 247 void bncRtnetUploadCaster::decodeRtnetStream(char* buffer, int bufLen) { qDebug() << "decodeRtnetStream";248 qDebug() << "decodeRtnetStream"; 246 void bncRtnetUploadCaster::decodeRtnetStream(char* buffer, int bufLen) { 247 249 248 QMutexLocker locker(&_mutex); 250 249 … … 393 392 ColumnVector rtnClk; rtnClk.ReSize(3); rtnClk = 0.0; // [m, m/s, m/s²] 394 393 ColumnVector rtnClkSig; rtnClkSig.ReSize(3); rtnClkSig = 0.0; // [m, m/s, m/s²] 395 396 394 t_prn prn; 397 395 … … 483 481 QString key; 484 482 int numVal = 0; 485 in >> key; qDebug() << key;483 in >> key; 486 484 if (in.status() != QTextStream::Ok) { 487 485 break; … … 734 732 } 735 733 736 737 734 QByteArray hlpBufferCo; 738 735 -
trunk/BNC/src/upload/bncrtnetuploadcaster.h
r9025 r9032 13 13 class bncClockRinex; 14 14 class bncSP3; 15 class SsrCorr;16 15 17 16 class bncRtnetUploadCaster : public bncUploadCaster { … … 20 19 bncRtnetUploadCaster(const QString& mountpoint, 21 20 const QString& outHost, int outPort, 22 const QString& ntripVersion, 23 const QString& userName,const QString&password,21 const QString& ntripVersion, const QString& userName, 22 const QString& password, 24 23 const QString& crdTrafo, const QString& ssrFormat, 25 bool CoM, const QString& sp3FileName, 24 bool CoM, 25 const QString& sp3FileName, 26 26 const QString& rnxFileName, 27 27 int PID, int SID, int IOD, int iRow);
Note:
See TracChangeset
for help on using the changeset viewer.