Changeset 7041 in ntrip for trunk/BNC/src
- Timestamp:
- Jul 13, 2015, 5:35:22 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncephuser.cpp
r6981 r7041 209 209 210 210 if (eph->type() == t_eph::GPS || t_eph::Galileo) { 211 if (timeDiff > 4*3600) { // data sets are valid for 4 hours 211 if (timeDiff > 4*3600) { // update interval: 2h, data sets are valid for 4 hours 212 212 eph->setCheckState(t_eph::bad); 213 213 return; … … 221 221 } 222 222 else if (eph->type() == t_eph::QZSS) { 223 if (timeDiff > 1* 3600) {223 if (timeDiff > 1*1800) { 224 224 eph->setCheckState(t_eph::bad); 225 225 return; … … 227 227 } 228 228 else if (eph->type() == t_eph::SBAS) { 229 if (timeDiff > 300) { // maximum update interval229 if (timeDiff > 600) { // maximum update interval: 300 sec 230 230 eph->setCheckState(t_eph::bad); 231 231 return;
Note:
See TracChangeset
for help on using the changeset viewer.