Changeset 7847 in ntrip
- Timestamp:
- Mar 18, 2016, 10:28:12 AM (9 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncephuser.cpp
r7716 r7847 224 224 } 225 225 else if (eph->type() == t_eph::QZSS) { 226 if (timeDiff > 1*1800) {226 if (timeDiff > 4*3600) { // orbit parameters are valid for 7200 seconds (at minimum) 227 227 eph->setCheckState(t_eph::outdated); 228 228 return; … … 257 257 258 258 // some lines to allow update of ephemeris data sets after outage 259 if (eph->type() == t_eph::GPS && dt > 4*3600) {259 if (eph->type() == t_eph::GPS && dt > 4*3600) { 260 260 ephL->setCheckState(t_eph::outdated); 261 261 return; … … 269 269 return; 270 270 } 271 else if (eph->type() == t_eph::QZSS && dt > 1*1800) {272 ephL->setCheckState(t_eph::outdated); 273 return; 274 } 275 else if (eph->type() == t_eph::SBAS && dt > 600) {276 ephL->setCheckState(t_eph::outdated); 277 return; 278 } 279 else if (eph->type() == t_eph::BDS && dt > 6*3600) 271 else if (eph->type() == t_eph::QZSS && dt > 4*3600) { 272 ephL->setCheckState(t_eph::outdated); 273 return; 274 } 275 else if (eph->type() == t_eph::SBAS && dt > 600) { 276 ephL->setCheckState(t_eph::outdated); 277 return; 278 } 279 else if (eph->type() == t_eph::BDS && dt > 6*3600) { 280 280 ephL->setCheckState(t_eph::outdated); 281 281 return; -
trunk/BNC/src/bnchelp.html
r7843 r7847 4219 4219 <li>BDS ephemeris will be interpreted as outdated and ignored when older than 6 hours.</li> 4220 4220 <li>SBAS ephemeris will be interpreted as outdated and ignored when older than 10 minutes.</li> 4221 <li>QZSS ephemeris will be interpreted as outdated and ignored when older than 30 minutes.</li>4221 <li>QZSS ephemeris will be interpreted as outdated and ignored when older than 4 hours.</li> 4222 4222 </ul> 4223 4223 A note 'OUTDATED EPHEMERIS' will be given in the logfile and the data will be disregarded when necessary.
Note:
See TracChangeset
for help on using the changeset viewer.