Changeset 5206 in ntrip for trunk/BNC/src/bnccore.cpp


Ignore:
Timestamp:
Jun 11, 2013, 3:24:07 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bnccore.cpp

    r5133 r5206  
    249249// New Glonass Ephemeris
    250250////////////////////////////////////////////////////////////////////////////
    251 void t_bncCore::slotNewGlonassEph(glonassephemeris* glonasseph) {
     251void t_bncCore::slotNewGlonassEph(glonassephemeris* glonasseph, const QString& staID) {
    252252
    253253  QMutexLocker locker(&_mutex);
     
    285285    delete *ee;
    286286    *ee = glonasseph;
    287     printGlonassEph(glonasseph, true);
     287    printGlonassEph(glonasseph, true, staID);
    288288  }
    289289  else {
    290     printGlonassEph(glonasseph, false);
     290    printGlonassEph(glonasseph, false, staID);
    291291    delete glonasseph;
    292292  }
     
    515515// Print One Glonass Ephemeris
    516516////////////////////////////////////////////////////////////////////////////
    517 void t_bncCore::printGlonassEph(glonassephemeris* ep, bool printFile) {
     517void t_bncCore::printGlonassEph(glonassephemeris* ep, bool printFile, const QString& staID) {
    518518
    519519  t_ephGlo eph;
     
    522522  QString strV2 = eph.toString(2.11);
    523523  QString strV3 = eph.toString(3.01);
     524
     525  //// beg test Dirk
     526  //// cout << staID.toAscii().data() << endl
     527  ////      << strV3.toAscii().data() << endl;
     528  //// end test Dirk
    524529
    525530  printOutput(printFile, _ephStreamGlonass, strV2, strV3);
Note: See TracChangeset for help on using the changeset viewer.