Changeset 10673 in ntrip


Ignore:
Timestamp:
Jun 30, 2025, 9:23:23 AM (11 days ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/orbComp/sp3Comp.cpp

    r10596 r10673  
    279279          if (sat1->_prn == sat2->_prn &&
    280280              sat1->_clkValid && sat2->_clkValid) {
    281             epochOK        = true;
     281            epochOK = true;
    282282            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
    283300            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;
    287302          }
    288303        }
Note: See TracChangeset for help on using the changeset viewer.