Changeset 10584 in ntrip for trunk/BNC


Ignore:
Timestamp:
Dec 10, 2024, 3:55:24 PM (6 days ago)
Author:
stuerze
Message:

changed in PPP mode from common receiver clock + ISBs to system specific receiver clocks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppParlist.cpp

    r10583 r10584  
    389389    const t_pppSatObs* satObs = obsVector[jj];
    390390    char sys = satObs->prn().system();
    391     _usedSystems[sys]++;
    392   }
     391    if (OPT->LCs(sys).size()) {
     392      _usedSystems[sys]++;
     393    }
     394  };
     395
    393396
    394397  // Check whether parameters have observations
     
    428431  // Receiver Clocks
    429432  // ---------------
    430    if (_usedSystems.contains('G')) {
     433   if (_usedSystems['G']) {
    431434     required.push_back(new t_pppParam(t_pppParam::rClkG, t_prn(), t_lc::dummy));
    432435   }
    433436
    434    if (_usedSystems.contains('R')) {
     437   if (_usedSystems['R']) {
    435438     required.push_back(new t_pppParam(t_pppParam::rClkR, t_prn(), t_lc::dummy));
    436439   }
    437440
    438    if (_usedSystems.contains('E')) {
     441   if (_usedSystems['E']) {
    439442     required.push_back(new t_pppParam(t_pppParam::rClkE, t_prn(), t_lc::dummy));
    440443   }
    441444
    442    if (_usedSystems.contains('C')) {
     445   if (_usedSystems['C']) {
    443446     required.push_back(new t_pppParam(t_pppParam::rClkC, t_prn(), t_lc::dummy));
    444447   }
Note: See TracChangeset for help on using the changeset viewer.