Changeset 4111 in ntrip for trunk/BNC/upload
- Timestamp:
- May 4, 2012, 5:43:29 PM (13 years ago)
- Location:
- trunk/BNC/upload
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/upload/bncrtnetdecoder.cpp
r3233 r4111 60 60 int outPort = hlp[1].toInt(); 61 61 bool CoM = (hlp[5].toInt() == Qt::Checked); 62 int PID = 0; 63 if (hlp.size() > 8) { 64 PID = hlp[8].toInt(); 65 } 66 int SID = 0; 67 if (hlp.size() > 9) { 68 SID = hlp[9].toInt(); 69 } 70 int IOD = 0; 71 if (hlp.size() > 10) { 72 IOD = hlp[10].toInt(); 73 } 62 74 bncRtnetUploadCaster* newCaster = new bncRtnetUploadCaster( 63 75 hlp[2], hlp[0], outPort, 64 76 hlp[3], hlp[4], CoM, 65 hlp[6], hlp[7], "", iRow); 77 hlp[6], hlp[7], "", 78 PID, SID, IOD, iRow); 66 79 newCaster->start(); 67 80 _casters.push_back(newCaster); -
trunk/BNC/upload/bncrtnetuploadcaster.cpp
r4110 r4111 32 32 const QString& sp3FileName, 33 33 const QString& rnxFileName, 34 const QString& outFileName, int iRow) : 34 const QString& outFileName, 35 int PID, int SID, int IOD, int iRow) : 35 36 bncUploadCaster(mountpoint, outHost, outPort, password, iRow, 0) { 36 37 37 38 _crdTrafo = crdTrafo; 38 39 _CoM = CoM; 40 _PID = PID; 41 _SID = SID; 42 _IOD = IOD; 39 43 40 44 // Member that receives the ephemeris … … 256 260 co.OrbitDataSupplied = 1; 257 261 co.SatRefDatum = DATUM_ITRF; 258 co.SSRIOD = 0;259 co.SSRProviderID = 256; // 256 .. BKG, 257 ... EUREF260 co.SSRSolutionID = 1;262 co.SSRIOD = _IOD; 263 co.SSRProviderID = _PID; // 256 .. BKG, 257 ... EUREF 264 co.SSRSolutionID = _SID; 261 265 262 266 struct Bias bias; -
trunk/BNC/upload/bncrtnetuploadcaster.h
r3753 r4111 24 24 const QString& sp3FileName, 25 25 const QString& rnxFileName, 26 const QString& outFileName, int iRow); 26 const QString& outFileName, 27 int PID, int SID, int IOD, int iRow); 27 28 void decodeRtnetStream(char* buffer, int bufLen); 28 29 protected: … … 40 41 QString _crdTrafo; 41 42 bool _CoM; 43 int _PID; 44 int _SID; 45 int _IOD; 42 46 double _samplOrb; 43 47 double _dx;
Note:
See TracChangeset
for help on using the changeset viewer.