Changeset 10673 in ntrip
- Timestamp:
- Jun 30, 2025, 9:23:23 AM (11 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/orbComp/sp3Comp.cpp
r10596 r10673 279 279 if (sat1->_prn == sat2->_prn && 280 280 sat1->_clkValid && sat2->_clkValid) { 281 epochOK 281 epochOK = true; 282 282 epo->_dr[sat1->_prn] = sat1->_xyz - sat2->_xyz; 283 // temporarily included START 284 if (epo->_dr[sat1->_prn].NormFrobenius() > 1.0) { 285 epochOK = false; 286 out << "! " << epo->_tt.timestr().c_str() << " " << sat1->_prn.toString().c_str() << "excluded \n" 287 << QString("! sat 1: %1%2%3\n").arg(sat1->_xyz[0], 19, 'e', 12) 288 .arg(sat1->_xyz[1], 19, 'e', 12) 289 .arg(sat1->_xyz[2], 19, 'e', 12).toStdString().c_str() 290 << QString("! sat 2: %1%2%3\n").arg(sat2->_xyz[0], 19, 'e', 12) 291 .arg(sat2->_xyz[1], 19, 'e', 12) 292 .arg(sat2->_xyz[2], 19, 'e', 12).toStdString().c_str() 293 << QString("! diff : %1%2%3\n").arg(epo->_dr[sat1->_prn][0], 19, 'e', 12) 294 .arg(epo->_dr[sat1->_prn][1], 19, 'e', 12) 295 .arg(epo->_dr[sat1->_prn][2], 19, 'e', 12).toStdString().c_str() 296 << endl; 297 } 298 // temporarily included END 299 283 300 epo->_xyz[sat1->_prn] = sat1->_xyz; 284 if (sat1->_clkValid && sat2->_clkValid) { 285 epo->_dc[sat1->_prn] = sat1->_clk - sat2->_clk; 286 } 301 epo->_dc[sat1->_prn] = sat1->_clk - sat2->_clk; 287 302 } 288 303 }
Note:
See TracChangeset
for help on using the changeset viewer.