Changeset 6035 in ntrip for trunk/BNC/src/PPP/pppSatObs.cpp


Ignore:
Timestamp:
Aug 21, 2014, 1:04:43 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6034 r6035  
    8585  // Select pseudoranges and phase observations
    8686  // ------------------------------------------
    87   const string preferredAttrib = "CWP_";
     87  const string preferredAttrib = "CWPX_";
    8888
    8989  for (unsigned iFreq = 1; iFreq < t_frequency::max; iFreq++) {
     
    105105  // --------------------
    106106  _fType1 = t_lc::toFreq(_prn.system(),t_lc::l1);
    107   _fType2 = t_lc::toFreq(_prn.system(),t_lc::l2);
     107  if (_prn.system() == 'E') {
     108    _fType2 = t_frequency::E5;
     109  }
     110  else {
     111    _fType2 = t_lc::toFreq(_prn.system(),t_lc::l2);
     112  }
    108113
    109114  // Check whether all required frequencies available
Note: See TracChangeset for help on using the changeset viewer.