Changeset 410 in ntrip for trunk/BNC/bnctabledlg.cpp
- Timestamp:
- Mar 2, 2007, 6:33:36 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnctabledlg.cpp
r402 r410 81 81 82 82 _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>")); 84 84 connect(_table, SIGNAL(itemSelectionChanged()), 85 85 this, SLOT(slotSelectionChanged())); … … 220 220 static const QStringList labels = QString("mountpoint,identifier,format," 221 221 "format-details,carrier,system,network,country,latitude,longitude," 222 " type,solution,generator,compress.,authentic.,fee,bitrate,"222 "nmea,solution,generator,compress.,authentic.,fee,bitrate," 223 223 "misc").split(","); 224 224 … … 238 238 for (int ic = 0; ic < columns.size()-1; ic++) { 239 239 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"; }} 241 241 242 242 QTableWidgetItem* it = new QTableWidgetItem(columns[ic+1]);
Note:
See TracChangeset
for help on using the changeset viewer.