Changeset 2907 in ntrip for trunk/BNC/bncephuser.cpp


Ignore:
Timestamp:
Jan 27, 2011, 2:17:20 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncephuser.cpp

    r2904 r2907  
    3939 * -----------------------------------------------------------------------*/
    4040
     41#include <iostream>
     42
    4143#include "bncephuser.h"
    4244#include "bncapp.h"
     
    7577  QString prn = QString("G%1").arg(gpseph.satellite, 2, 10, QChar('0'));
    7678
     79  cout << "newEph " << prn.toAscii().data() << endl;
     80
    7781  if (_eph.contains(prn)) {
    7882    t_ephGPS* eLast = static_cast<t_ephGPS*>(_eph.value(prn)->last);
     
    100104
    101105  QString prn = QString("R%1").arg(gloeph.almanac_number, 2, 10, QChar('0'));
     106
     107  cout << "newEph " << prn.toAscii().data() << endl;
    102108
    103109  if (_eph.contains(prn)) {
     
    129135  QString prn = QString("E%1").arg(galeph.satellite, 2, 10, QChar('0'));
    130136
     137  cout << "newEph " << prn.toAscii().data() << endl;
     138
    131139  if (_eph.contains(prn)) {
    132140    t_ephGal* eLast = static_cast<t_ephGal*>(_eph.value(prn)->last);
Note: See TracChangeset for help on using the changeset viewer.