Changeset 9130 in ntrip
- Timestamp:
- Sep 22, 2020, 1:01:48 PM (4 years ago)
- Location:
- branches/BNC_2.12/src/upload
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/upload/bncrtnetuploadcaster.cpp
r9127 r9130 56 56 57 57 _ssrFormat = ssrFormat; 58 58 59 59 _ssrCorr = 0; 60 60 if (_ssrFormat == "IGS-SSR") { … … 474 474 QList<phaseBiasSignal> phaseBiasList; 475 475 phaseBiasesSat pbSat; 476 boolphaseBiasInformationDecoded = false;476 _phaseBiasInformationDecoded = false; 477 477 478 478 while (true) { … … 533 533 } 534 534 else if (key == "YawAngle") { 535 phaseBiasInformationDecoded = true;535 _phaseBiasInformationDecoded = true; 536 536 in >> numVal >> pbSat.yawAngle; 537 537 if (pbSat.yawAngle < 0.0) { … … 543 543 } 544 544 else if (key == "YawRate") { 545 _phaseBiasInformationDecoded = true; 545 546 in >> numVal >> pbSat.yawRate; 546 547 } 547 548 else if (key == "PhaseBias") { 548 phaseBiasInformationDecoded = true;549 _phaseBiasInformationDecoded = true; 549 550 in >> numVal; 550 551 for (int ii = 0; ii < numVal; ii++) { … … 705 706 } 706 707 707 if (phasebiasSat && phaseBiasInformationDecoded) {708 if (phasebiasSat && _phaseBiasInformationDecoded) { 708 709 phasebias.DispersiveBiasConsistencyIndicator = dispersiveBiasConsistenyIndicator; 709 710 phasebias.MWConsistencyIndicator = mwConsistencyIndicator; … … 893 894 // ------------ 894 895 QByteArray hlpBufferPhaseBias; 895 if ( phasebias.NumberOfSat[CLOCKORBIT_SATGPS] > 0896 if ((phasebias.NumberOfSat[CLOCKORBIT_SATGPS] > 0 896 897 || phasebias.NumberOfSat[CLOCKORBIT_SATGLONASS] > 0 897 898 || phasebias.NumberOfSat[CLOCKORBIT_SATGALILEO] > 0 898 899 || phasebias.NumberOfSat[CLOCKORBIT_SATQZSS] > 0 899 900 || phasebias.NumberOfSat[CLOCKORBIT_SATSBAS] > 0 900 || phasebias.NumberOfSat[CLOCKORBIT_SATBDS] > 0) { 901 || phasebias.NumberOfSat[CLOCKORBIT_SATBDS] > 0) 902 && (_phaseBiasInformationDecoded)) { 901 903 char obuffer[CLOCKORBIT_BUFFERSIZE]; 902 904 int len = _ssrCorr->MakePhaseBias(&phasebias, _ssrCorr->PBTYPE_AUTO, 0, obuffer, -
branches/BNC_2.12/src/upload/bncrtnetuploadcaster.h
r9036 r9130 50 50 QString _ssrFormat; 51 51 bool _CoM; 52 bool _phaseBiasInformationDecoded; 52 53 int _PID; 53 54 int _SID;
Note:
See TracChangeset
for help on using the changeset viewer.