Changeset 9124 in ntrip for trunk/BNC/src/upload
- Timestamp:
- Sep 21, 2020, 3:11:55 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/upload/bncrtnetuploadcaster.cpp
r9034 r9124 57 57 58 58 _ssrFormat = ssrFormat; 59 59 60 60 _ssrCorr = 0; 61 61 if (_ssrFormat == "IGS-SSR") { … … 380 380 381 381 co.UpdateInterval = clkUpdInd; 382 bias.UpdateInterval = clkUpdInd;383 phasebias.UpdateInterval = clkUpdInd;382 bias.UpdateInterval = ephUpdInd; 383 phasebias.UpdateInterval = ephUpdInd; 384 384 385 385 for (int ii = 1; ii < lines.size(); ii++) { … … 476 476 QList<phaseBiasSignal> phaseBiasList; 477 477 phaseBiasesSat pbSat; 478 bool phaseBiasInformationDecoded = false; 478 479 479 480 while (true) { … … 534 535 } 535 536 else if (key == "YawAngle") { 537 phaseBiasInformationDecoded = true; 536 538 in >> numVal >> pbSat.yawAngle; 537 539 if (pbSat.yawAngle < 0.0) { … … 546 548 } 547 549 else if (key == "PhaseBias") { 550 phaseBiasInformationDecoded = true; 548 551 in >> numVal; 549 552 for (int ii = 0; ii < numVal; ii++) { … … 704 707 } 705 708 706 if (phasebiasSat ) {709 if (phasebiasSat && phaseBiasInformationDecoded) { 707 710 phasebias.DispersiveBiasConsistencyIndicator = dispersiveBiasConsistenyIndicator; 708 711 phasebias.MWConsistencyIndicator = mwConsistencyIndicator;
Note:
See TracChangeset
for help on using the changeset viewer.