Changeset 9569 in ntrip for trunk/BNC


Ignore:
Timestamp:
Dec 16, 2021, 11:56:48 AM (2 years ago)
Author:
stuerze
Message:

minor changes

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

Legend:

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

    r9561 r9569  
    674674  }
    675675
    676   // Receiver Clocks
    677   // ---------------
    678 
    679   // GPS-GLONASS Clock Offset
    680    // ------------------------
    681    if (_usedSystems.contains('G')) {
    682      required.push_back(new t_pppParam(t_pppParam::rClkG, t_prn(), t_lc::dummy));
    683    }
    684 
    685    if (_usedSystems.contains('R')) {
    686      required.push_back(new t_pppParam(t_pppParam::rClkR, t_prn(), t_lc::dummy));
    687    }
    688 
    689    if (_usedSystems.contains('E')) {
    690      required.push_back(new t_pppParam(t_pppParam::rClkE, t_prn(), t_lc::dummy));
    691    }
    692 
    693    if (_usedSystems.contains('C')) {
    694      required.push_back(new t_pppParam(t_pppParam::rClkC, t_prn(), t_lc::dummy));
    695    }
     676  // GNSS Receiver Clocks
     677  // --------------------
     678  if (_usedSystems.contains('G')) {
     679    required.push_back(new t_pppParam(t_pppParam::rClkG, t_prn(), t_lc::dummy));
     680  }
     681
     682  if (_usedSystems.contains('R')) {
     683    required.push_back(new t_pppParam(t_pppParam::rClkR, t_prn(), t_lc::dummy));
     684  }
     685
     686  if (_usedSystems.contains('E')) {
     687    required.push_back(new t_pppParam(t_pppParam::rClkE, t_prn(), t_lc::dummy));
     688  }
     689
     690  if (_usedSystems.contains('C')) {
     691    required.push_back(new t_pppParam(t_pppParam::rClkC, t_prn(), t_lc::dummy));
     692  }
    696693
    697694  // Troposphere
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9568 r9569  
    315315  // ----------------------
    316316  if (_prn.system() == 'R'  &&
    317       (t_lc::includesCode(tLC) && t_lc::includesPhase(tLC))) {
    318     retVal *= 5.0;
     317      (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) {
     318    retVal *= 10.0;
    319319  }
    320320
Note: See TracChangeset for help on using the changeset viewer.