Changeset 9852 in ntrip for trunk/BNC/src/bncephuser.cpp
- Timestamp:
- Oct 18, 2022, 11:49:10 AM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncephuser.cpp
r9773 r9852 242 242 ColumnVector xcL(6); 243 243 ColumnVector vvL(3); 244 ephL->getCrd(eph->TOC(), xcL, vvL, false); 244 if (ephL->getCrd(eph->TOC(), xcL, vvL, false) != success) { 245 eph->setCheckState(t_eph::bad); 246 return; 247 } 245 248 246 249 double diff = (xc.Rows(1,3) - xcL.Rows(1,3)).NormFrobenius(); 247 250 double diffC = fabs(xc(4) - xcL(4)) * t_CST::c; 248 251 249 if (diff < MAXDIFF && diffC < MAXDIFF) { 250 if (diff < MINDIFF && diffC < MINDIFF && 252 if (diff < MAXDIFF && 253 diffC < MAXDIFF) { 254 if (diff < MINDIFF && 255 diffC < MINDIFF && 251 256 ephL->checkState() == t_eph::ok) { 252 257 // to prevent the same data sets with different TOC values
Note:
See TracChangeset
for help on using the changeset viewer.