Ignore:
Timestamp:
Aug 25, 2020, 11:02:49 PM (4 years ago)
Author:
stuerze
Message:

some modification to allow encoding and decoding of SSR corrections in RTCM-SSR and IGS-SSR formats

File:
1 edited

Legend:

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

    r8275 r9025  
    5656  while (it.hasNext()) {
    5757    QStringList hlp = it.next().split(",");
    58     if (hlp.size() > 6) {
     58    if (hlp.size() > 8) {
    5959      ++iRow;
    6060      int  outPort = hlp[1].toInt();
    61       bool CoM     = (hlp[7].toInt() == Qt::Checked);
     61      bool CoM     = (hlp[8].toInt() == Qt::Checked);
    6262      int PID = 0;
    63       if (hlp.size() > 10) {
    64         PID = hlp[10].toInt();
     63      if (hlp.size() > 11) {
     64        PID = hlp[11].toInt();
    6565      }
    6666      int SID = 0;
    67       if (hlp.size() > 11) {
    68         SID = hlp[11].toInt();
     67      if (hlp.size() > 12) {
     68        SID = hlp[12].toInt();
    6969      }
    7070      int IOD = 0;
    71       if (hlp.size() > 12) {
    72         IOD = hlp[12].toInt();
     71      if (hlp.size() > 13) {
     72        IOD = hlp[13].toInt();
    7373      }
    7474      bncRtnetUploadCaster* newCaster = new bncRtnetUploadCaster(
    7575                                                       hlp[2], hlp[0], outPort,
    7676                                                       hlp[3], hlp[4],
    77                                                        hlp[5], hlp[6], CoM,
    78                                                        hlp[8], hlp[9],
     77                                                       hlp[5], hlp[6], hlp[7], CoM,
     78                                                       hlp[9], hlp[10],
    7979                                                       PID, SID, IOD, iRow);
    8080      newCaster->start();
Note: See TracChangeset for help on using the changeset viewer.