Changeset 9497 in ntrip
- Timestamp:
- Aug 26, 2021, 5:29:40 PM (3 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppParlist.cpp
r9494 r9497 477 477 } 478 478 479 if (_usedSystems.size() > 1 &&480 !_usedSystems.contains('G')) { // required to setup ISB w. r. t. GPS481 return failure;482 }483 484 479 // Required Set of Parameters 485 480 // -------------------------- … … 584 579 // GPS-GLONASS Clock Offset 585 580 // ------------------------ 586 if (_usedSystems.contains('G') && _usedSystems.contains('R')) { 587 required.push_back(new t_pppParam(t_pppParam::offGR, t_prn(), t_lc::dummy)); 588 } 581 required.push_back(new t_pppParam(t_pppParam::offGR, t_prn(), t_lc::dummy)); 589 582 590 583 //GPS-Galileo Clock Offset 591 584 // ------------------------ 592 if (_usedSystems.contains('G') && _usedSystems.contains('E')) { 593 required.push_back(new t_pppParam(t_pppParam::offGE, t_prn(), t_lc::dummy)); 594 } 585 required.push_back(new t_pppParam(t_pppParam::offGE, t_prn(), t_lc::dummy)); 595 586 596 587 // GPS-BDS Clock Offset 597 588 // ------------------------ 598 if (_usedSystems.contains('G') && _usedSystems.contains('C')) { 599 required.push_back(new t_pppParam(t_pppParam::offGC, t_prn(), t_lc::dummy)); 600 } 589 required.push_back(new t_pppParam(t_pppParam::offGC, t_prn(), t_lc::dummy)); 601 590 602 591 // Troposphere -
trunk/BNC/src/PPP/pppSatObs.cpp
r9496 r9497 203 203 bool valid = true; 204 204 obsValue(tLC, &valid); 205 //qDebug() << "tLC: " << tLC << " valid: " << valid; 205 206 206 return valid; 207 207 }
Note:
See TracChangeset
for help on using the changeset viewer.