Changeset 7254 in ntrip
- Timestamp:
- Aug 26, 2015, 4:49:47 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r7248 r7254 391 391 while (it != obsVector.end()) { 392 392 t_pppSatObs* satObs = *it; 393 t_irc modelSetup; 393 394 if (satObs->isValid()) { 394 satObs->cmpModel(station); 395 } 396 if (satObs->isValid() && satObs->eleSat() >= OPT->_minEle) { 395 modelSetup = satObs->cmpModel(station); 396 } 397 if (satObs->isValid() && 398 satObs->eleSat() >= OPT->_minEle && 399 modelSetup == success) { 397 400 ++it; 398 401 }
Note:
See TracChangeset
for help on using the changeset viewer.