Changeset 9497 in ntrip for trunk


Ignore:
Timestamp:
Aug 26, 2021, 5:29:40 PM (3 years ago)
Author:
stuerze
Message:

minor changes regarding PPP

Location:
trunk/BNC/src/PPP
Files:
2 edited

Legend:

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

    r9494 r9497  
    477477  }
    478478
    479   if (_usedSystems.size() > 1 &&
    480       !_usedSystems.contains('G')) { // required to setup ISB w. r. t. GPS
    481     return failure;
    482   }
    483 
    484479  // Required Set of Parameters
    485480  // --------------------------
     
    584579  // GPS-GLONASS Clock Offset
    585580  // ------------------------
    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));
    589582
    590583  //GPS-Galileo Clock Offset
    591584  // ------------------------
    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));
    595586
    596587  // GPS-BDS Clock Offset
    597588  // ------------------------
    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));
    601590
    602591  // Troposphere
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9496 r9497  
    203203  bool valid = true;
    204204  obsValue(tLC, &valid);
    205   //qDebug() << "tLC: " << tLC << "  valid: " << valid;
     205
    206206  return valid;
    207207}
Note: See TracChangeset for help on using the changeset viewer.