Changeset 410 in ntrip for trunk/BNC/bnctabledlg.cpp


Ignore:
Timestamp:
Mar 2, 2007, 6:33:36 PM (17 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnctabledlg.cpp

    r402 r410  
    8181
    8282  _table = new QTableWidget(this);
    83   _table->setWhatsThis(tr("<p>Hit button 'Get Table' to download the source-table from the NTRIP broadcaster. Select streams line by line, use +Shift and +Ctrl when necessary. Hit 'OK' to return to the main window.</p><p>Pay attention to data fields 'format' and 'format-details'. Keep in mind that BNC can only decode and convert streams that come in RTCM 2.x, RTCM 3, or RTIGS formats. RTCM 2.x streams must contain message types 18 and 19 while RTCM 3 streams must contain GPS message types 1002 or 1004 and may contain GLONASS message types 1010 or 1012, see data field 'format-details' for available message types and their repetition rates in brackets.</p><p>The contents of data field 'type' tells you whether a stream comes from a physical Reference Station (RS) or a Virtual Reference Station (VRS).</p>"));
     83  _table->setWhatsThis(tr("<p>Hit button 'Get Table' to download the source-table from the NTRIP broadcaster. Select streams line by line, use +Shift and +Ctrl when necessary. Hit 'OK' to return to the main window.</p><p>Pay attention to data fields 'format' and 'format-details'. Keep in mind that BNC can only decode and convert streams that come in RTCM 2.x, RTCM 3, or RTIGS formats. RTCM 2.x streams must contain message types 18 and 19 while RTCM 3 streams must contain GPS message types 1002 or 1004 and may contain GLONASS message types 1010 or 1012, see data field 'format-details' for available message types and their repetition rates in brackets.</p><p>The contents of data field 'nmea' tells you whether or not a stream retrieval needs to be initiated by BNC through sending an NMEA-GGA string carrying the latitude and longitude parameters.</p>"));
    8484  connect(_table, SIGNAL(itemSelectionChanged()),
    8585          this, SLOT(slotSelectionChanged()));
     
    220220  static const QStringList labels = QString("mountpoint,identifier,format,"
    221221    "format-details,carrier,system,network,country,latitude,longitude,"
    222     "type,solution,generator,compress.,authentic.,fee,bitrate,"
     222    "nmea,solution,generator,compress.,authentic.,fee,bitrate,"
    223223    "misc").split(",");
    224224
     
    238238      for (int ic = 0; ic < columns.size()-1; ic++) {
    239239
    240         if (ic+1 == 11) { if (columns[ic+1] == "0") { columns[ic+1] = "RS"; } else { columns[ic+1] = "VRS"; }}
     240        if (ic+1 == 11) { if (columns[ic+1] == "0") { columns[ic+1] = "no"; } else { columns[ic+1] = "yes"; }}
    241241
    242242        QTableWidgetItem* it = new QTableWidgetItem(columns[ic+1]);
Note: See TracChangeset for help on using the changeset viewer.