Changeset 9128 in ntrip
- Timestamp:
- Sep 22, 2020, 11:20:34 AM (4 years ago)
- Location:
- trunk/BNC/src/upload
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/upload/bncrtnetuploadcaster.cpp
r9126 r9128 57 57 58 58 _ssrFormat = ssrFormat; 59 59 60 60 _ssrCorr = 0; 61 61 if (_ssrFormat == "IGS-SSR") { … … 476 476 QList<phaseBiasSignal> phaseBiasList; 477 477 phaseBiasesSat pbSat; 478 boolphaseBiasInformationDecoded = false;478 _phaseBiasInformationDecoded = false; 479 479 480 480 while (true) { … … 535 535 } 536 536 else if (key == "YawAngle") { 537 phaseBiasInformationDecoded = true;537 _phaseBiasInformationDecoded = true; 538 538 in >> numVal >> pbSat.yawAngle; 539 539 if (pbSat.yawAngle < 0.0) { … … 545 545 } 546 546 else if (key == "YawRate") { 547 _phaseBiasInformationDecoded = true; 547 548 in >> numVal >> pbSat.yawRate; 548 549 } 549 550 else if (key == "PhaseBias") { 550 phaseBiasInformationDecoded = true;551 _phaseBiasInformationDecoded = true; 551 552 in >> numVal; 552 553 for (int ii = 0; ii < numVal; ii++) { … … 707 708 } 708 709 709 if (phasebiasSat && phaseBiasInformationDecoded) {710 if (phasebiasSat && _phaseBiasInformationDecoded) { 710 711 phasebias.DispersiveBiasConsistencyIndicator = dispersiveBiasConsistenyIndicator; 711 712 phasebias.MWConsistencyIndicator = mwConsistencyIndicator; … … 895 896 // ------------ 896 897 QByteArray hlpBufferPhaseBias; 897 if ( phasebias.NumberOfSat[CLOCKORBIT_SATGPS] > 0898 if ((phasebias.NumberOfSat[CLOCKORBIT_SATGPS] > 0 898 899 || phasebias.NumberOfSat[CLOCKORBIT_SATGLONASS] > 0 899 900 || phasebias.NumberOfSat[CLOCKORBIT_SATGALILEO] > 0 900 901 || phasebias.NumberOfSat[CLOCKORBIT_SATQZSS] > 0 901 902 || phasebias.NumberOfSat[CLOCKORBIT_SATSBAS] > 0 902 || phasebias.NumberOfSat[CLOCKORBIT_SATBDS] > 0) {903 || phasebias.NumberOfSat[CLOCKORBIT_SATBDS] > 0) && (_phaseBiasInformationDecoded)) { 903 904 char obuffer[CLOCKORBIT_BUFFERSIZE]; 904 905 int len = _ssrCorr->MakePhaseBias(&phasebias, _ssrCorr->PBTYPE_AUTO, 0, obuffer, -
trunk/BNC/src/upload/bncrtnetuploadcaster.h
r9032 r9128 51 51 QString _ssrFormat; 52 52 bool _CoM; 53 bool _phaseBiasInformationDecoded; 53 54 int _PID; 54 55 int _SID;
Note:
See TracChangeset
for help on using the changeset viewer.