Changeset 5130 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Apr 17, 2013, 10:34:20 AM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/upload
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/upload/bncrtnetuploadcaster.cpp

    r4991 r5130  
    3434                                 int PID, int SID, int IOD, int iRow) :
    3535  bncUploadCaster(mountpoint, outHost, outPort, password, iRow, 0) {
     36
     37  if (!outHost.isEmpty()) {
     38    _casterID += outHost;
     39  }
     40  if (!crdTrafo.isEmpty()) {
     41    _casterID += " " + crdTrafo;
     42  }
     43  if (!sp3FileName.isEmpty()) {
     44    _casterID += " " + sp3FileName;
     45  }
     46  if (!rnxFileName.isEmpty()) {
     47    _casterID += " " + rnxFileName;
     48  }
    3649
    3750  _crdTrafo   = crdTrafo;
     
    244257  bncTime epoTime; epoTime.set( year, month, day, hour, min, sec);
    245258
    246   emit(newMessage("decodeRtnetStream: " + lines[0].toAscii(), false));
     259  emit(newMessage("bncRtnetUploadCaster (" + _casterID.toAscii() + ") decode "
     260                  + lines[0].toAscii(), false));
    247261
    248262  struct ClockOrbit co;
  • trunk/BNC/src/upload/bncrtnetuploadcaster.h

    r4991 r5130  
    3939  void crdTrafo(int GPSWeek, ColumnVector& xyz, double& dc);
    4040
     41  QString        _casterID;
    4142  bncEphUser*    _ephUser;
    4243  QString        _rtnetStreamBuffer;
Note: See TracChangeset for help on using the changeset viewer.