Changeset 3013 in ntrip


Ignore:
Timestamp:
Feb 22, 2011, 7:42:58 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/combination/bnccomb.cpp

    r3011 r3013  
    362362  newCorr->dotRao += dDotRAO;
    363363  newCorr->dClk   += dC;
     364
     365  QString msg = "switch " + newCorr->prn
     366    + QString(" %1 -> %2 %3").arg(prevEph->IOD(),3)
     367    .arg(lastEph->IOD(),3).arg(dC*t_CST::c, 8, 'f', 4);
     368
     369  emit newMessage(msg.toAscii(), false);
    364370}
    365371
     
    487493    t_corr* corr = it.value();
    488494    out << currentDateAndTimeGPS().toString("yy-MM-dd hh:mm:ss ").toAscii().data();
    489     out << corr->prn << " " << corr->iod << " ";
    490     out.setRealNumberNotation(QTextStream::FixedNotation);
     495    out.setFieldWidth(3);
     496    out << "Full Clock " << corr->prn << " " << corr->iod << " ";
    491497    out.setFieldWidth(8);
    492     out.setRealNumberPrecision(4);
    493498    out << corr->dClk * t_CST::c << endl;
    494499  }
Note: See TracChangeset for help on using the changeset viewer.