Changeset 8678 in ntrip
- Timestamp:
- Apr 12, 2019, 10:11:11 AM (6 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccaster.cpp
r8670 r8678 211 211 .arg(string(obs._time).c_str()) 212 212 .arg(obs._prn.toString().c_str()) 213 .toAscii(), true) );213 .toLatin1(), true) ); 214 214 } 215 215 } -
trunk/BNC/src/bncephuser.cpp
r8659 r8678 226 226 return; 227 227 } 228 else if (eph->type() == t_eph::GLONASS && timeDiff > 2* 3600) { // updated every 30 minutes228 else if (eph->type() == t_eph::GLONASS && timeDiff > 1 * 3600) { // updated every 30 minutes 229 229 eph->setCheckState(t_eph::outdated); 230 230 return; … … 272 272 return; 273 273 } 274 else if (eph->type() == t_eph::GLONASS && dt > 2*3600) {274 else if (eph->type() == t_eph::GLONASS && dt > 1*3600) { 275 275 ephL->setCheckState(t_eph::outdated); 276 276 return; -
trunk/BNC/src/latencychecker.cpp
r8673 r8678 331 331 .arg(_staID.data()) 332 332 .arg(obs._prn.toString().data()) 333 .to Ascii(), true) );333 .toLatin1(), true) ); 334 334 } 335 335 l._newSec = static_cast<int>(nint(obs._time.gpssec()*10));
Note:
See TracChangeset
for help on using the changeset viewer.