Changeset 9127 in ntrip for branches/BNC_2.12/src/upload
- Timestamp:
- Sep 21, 2020, 9:41:49 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/upload/bncrtnetuploadcaster.cpp
r9081 r9127 56 56 57 57 _ssrFormat = ssrFormat; 58 58 59 _ssrCorr = 0; 59 60 if (_ssrFormat == "IGS-SSR") { … … 378 379 379 380 co.UpdateInterval = clkUpdInd; 380 bias.UpdateInterval = clkUpdInd;381 phasebias.UpdateInterval = clkUpdInd;381 bias.UpdateInterval = ephUpdInd; 382 phasebias.UpdateInterval = ephUpdInd; 382 383 383 384 for (int ii = 1; ii < lines.size(); ii++) { … … 473 474 QList<phaseBiasSignal> phaseBiasList; 474 475 phaseBiasesSat pbSat; 476 bool phaseBiasInformationDecoded = false; 475 477 476 478 while (true) { … … 531 533 } 532 534 else if (key == "YawAngle") { 535 phaseBiasInformationDecoded = true; 533 536 in >> numVal >> pbSat.yawAngle; 534 537 if (pbSat.yawAngle < 0.0) { … … 543 546 } 544 547 else if (key == "PhaseBias") { 548 phaseBiasInformationDecoded = true; 545 549 in >> numVal; 546 550 for (int ii = 0; ii < numVal; ii++) { … … 701 705 } 702 706 703 if (phasebiasSat ) {707 if (phasebiasSat && phaseBiasInformationDecoded) { 704 708 phasebias.DispersiveBiasConsistencyIndicator = dispersiveBiasConsistenyIndicator; 705 709 phasebias.MWConsistencyIndicator = mwConsistencyIndicator;
Note:
See TracChangeset
for help on using the changeset viewer.