- Timestamp:
- Aug 24, 2016, 6:24:40 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r7996 r8024 216 216 if (satObs->prn().system() == 'G') { 217 217 if (tLC == t_lc::dummy) { 218 tLC = satObs->isValid(t_lc::cIF) ? t_lc::cIF : t_lc::c1; 218 if (satObs->isValid(t_lc::cIF)) { 219 tLC = t_lc::cIF; 220 } 221 else if (satObs->isValid(t_lc::c1)) { 222 tLC = t_lc::c1; 223 } 224 else { 225 tLC = t_lc::c2; 226 } 219 227 } 220 228 if ( satObs->isValid(tLC) && (!satObs->modelSet() || satObs->eleSat() >= OPT->_minEle) ) {
Note:
See TracChangeset
for help on using the changeset viewer.