Changeset 7980 in ntrip
- Timestamp:
- Jul 21, 2016, 10:31:16 AM (9 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnchelp.html
r7955 r7980 1532 1532 </p> 1533 1533 <p> 1534 Default 'Signal priority' list is an empty option string, meaning a priority sequence of 'CWPX_?' attributes when mapping RINEX 3 to RINEX 2. The meaning of this sequence of characters - take it as an example - is as follows: 1534 Signal priorities can be specified as equal for all systems, as system specific or as system and frequency specific. For example:</li> 1535 <ul> 1536 <li>'CWPX_?' (General signal priorities valid for all GNSS)</li> 1537 <li>'C:IQX I:ABCX' (System specific signal priorities for BDS and IRNSS)</li> 1538 <li>'G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX' (System and frequency specific signal priorities)</li> 1539 </ul> 1540 </p> 1541 <p> 1542 The default 'Signal priority' list is defined as follows: 1543 <ul> 1544 <li>'G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX E:16&BCX E:578&IQX J:1&SLXCZ J:26&SLX J:5&IQX C:IQX I:ABCX S:1&C S:5&IQX'</li> 1545 </ul> 1546 1547 As an example the 'Signal priority' of 'CWPX_?' is explained in more detail: 1535 1548 <ul> 1536 1549 <li>Signals with attribute 'C' enjoy the highest priority. If such a Version 3 observation becomes available, it is presented as RINEX Version 2 observation if that is the format you wish to see. Observations with other attributes are being ignored.</li> … … 1541 1554 </p> 1542 1555 1543 <p>1544 Signal priorities can be specified either as equal for all systems or system specific. The following are example priority strings:</li>1545 <ul>1546 <li>CWPX_? (Same signal priorities valid for all systems)</li>1547 <li>G:CWPX_? R:PCX_? E:CPX_? (Specific signal priorities for GPS, GLONASS and Galileo system)</li>1548 </ul>1549 1550 </p>1551 1556 <p> 1552 1557 You may like to specify your own 'Signal priority' string(s) for producing RINEX Version 2 files. If you neither convert observation streams to RINEX Version 2 nor concatenate RINEX Version 3 to Version 2 files, then the 'Version 2' option is meaningless. -
trunk/BNC/src/bncmain.cpp
r7976 r7980 106 106 " rnxOnlyWithSKL {Using RINEX skeleton file is mandatory [integer number: 0=no,2=yes]}\n" 107 107 " rnxScript {File upload script, full path [character string]}\n" 108 " rnxV2Priority {Priority of signal attributes [character string, list separated by blank character, example: G: CWPX_? R:CP]}\n"108 " rnxV2Priority {Priority of signal attributes [character string, list separated by blank character, example: G:12&PWCSLXYN G:5&IQX C:IQX]}\n" 109 109 " rnxV3 {Produce version 3 file contents [integer number: 0=no,2=yes]}\n" 110 110 " rnxV3filenames {Produce version 3 filenames [integer number: 0=no,2=yes]}\n" … … 129 129 " reqcRnxVersion {RINEX version [integer number: 2|3]}\n" 130 130 " reqcSampling {RINEX output file sampling rate [integer number of seconds: 0|5|10|15|20|25|30|35|40|45|50|55|60]}\n" 131 " reqcV2Priority {Version 2 priority of signal attributes [character string, list separated by blank character, example: G: CWPX_? R:CP]}\n"131 " reqcV2Priority {Version 2 priority of signal attributes [character string, list separated by blank character, example: G:12&PWCSLXYN G:5&IQX C:IQX]}\n" 132 132 " reqcStartDateTime {Start time [character string, example: 1967-11-02T00:00:00]}\n" 133 133 " reqcEndDateTime {Stop time [character string, example: 2099-01-01T00:00:00 }\n" -
trunk/BNC/src/bncsettings.cpp
r7889 r7980 134 134 setValue_p("reqcOldReceiverNumber", ""); 135 135 setValue_p("reqcUseObsTypes", ""); 136 setValue_p("reqcV2Priority", ""); 136 setValue_p("reqcV2Priority", "G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX E:16&BCX E:578&IQX J:1&SLXCZ J:26&SLX J:5&IQX C:IQX I:ABCX S:1&C S:5&IQX"); 137 137 // SP3 138 138 setValue_p("sp3CompFile", ""); -
trunk/BNC/src/bncwindow.cpp
r7963 r7980 223 223 QString hlp = settings.value("rnxV2Priority").toString(); 224 224 if (hlp.isEmpty()) { 225 hlp = " CWPX_?";225 hlp = "G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX E:16&BCX E:578&IQX J:1&SLXCZ J:26&SLX J:5&IQX C:IQX I:ABCX S:1&C S:5&IQX"; 226 226 } 227 227 _rnxV2Priority = new QLineEdit(hlp); … … 706 706 _rnxSamplSpinBox->setMaximumWidth(9*ww); 707 707 708 _rnxV2Priority->setMaximumWidth(19*ww);709 710 708 oLayout->addWidget(new QLabel("Saving RINEX observation files.<br>"),0, 0, 1,50); 711 709 oLayout->addWidget(new QLabel("Directory"), 1, 0); … … 721 719 oLayout->addWidget(new QLabel("Script (full path)"), 4, 0); 722 720 oLayout->addWidget(_rnxScrpLineEdit, 4, 1, 1, 15); 723 oLayout->addWidget(new QLabel("Version 2"), 5, 0); 724 oLayout->addWidget(_rnxV2Priority, 5, 1); 725 oLayout->addWidget(new QLabel("Signal priority"), 5, 2); 721 oLayout->addWidget(new QLabel("Version 2 signal priority"), 5, 0); 722 oLayout->addWidget(_rnxV2Priority, 5, 1, 1, 15); 726 723 oLayout->addWidget(new QLabel("Version 3"), 6, 0); 727 724 oLayout->addWidget(_rnxV3CheckBox, 6, 1); … … 1270 1267 _rnxFileCheckBox->setWhatsThis(tr("<p>Tick check box 'Skeleton mandatory' in case you want that RINEX files are only produced if skeleton files are available for BNC. If no skeleton file is available for a particular source then no RINEX Observation file will be produced from the affected stream.</p><p>Note that a skeleton file contains RINEX header information such as receiver and antenna types. In case of stream conversion to RINEX Version 3, a skeleton file should also contain information on potentially available observation types. A missing skeleton file will therefore enforce BNC to only save a default set of RINEX 3 observation types.</p>")); 1271 1268 _rnxScrpLineEdit->setWhatsThis(tr("<p>Whenever a RINEX Observation file is finally saved, you may want to compress, copy or upload it immediately, for example via FTP. BNC allows you to execute a script/batch file to carry out such operation.</p><p>Specify the full path of a script or batch file. BNC will pass the full RINEX Observation file path to the script as command line parameter (%1 on Windows systems, $1 on Unix/Linux/Mac systems).</p>")); 1272 _rnxV2Priority->setWhatsThis(tr("<p>Specify a priority list of characters defining signal attributes as defined in RINEX Version 3. Priorities will be used to map observations with RINEX Version 3 attributes from incoming streams to Version 2. The underscore character '_' stands for undefined attributes. A question mark '?' can be used as wildcard which represents any one character.</p><p>Signal priorities can be specified eitheras equal for all systemsor as system specific. The following are example priority strings:</li><ul><li>'CWPX_?' (Samesignal priorities valid for allsystems)</li><li>'G:CWPX_? R:PCX_? E:CPX_?' (Specific signal priorities for GPS, GLONASS and Galileo system)</li></ul>Default is priority list 'CWPX_?'.</p>"));1269 _rnxV2Priority->setWhatsThis(tr("<p>Specify a priority list of characters defining signal attributes as defined in RINEX Version 3. Priorities will be used to map observations with RINEX Version 3 attributes from incoming streams to Version 2. The underscore character '_' stands for undefined attributes. A question mark '?' can be used as wildcard which represents any one character.</p><p>Signal priorities can be specified as equal for all systems, as system specific or as system and freq. specific. For example: </li><ul><li>'CWPX_?' (General signal priorities valid for all GNSS) </li><li>'C:IQX I:ABCX' (System specific signal priorities for BDS and IRNSS) </li><li>'G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX' (System and frequency specific signal priorities) </li></ul>Default is the following priority list 'G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX E:16&BCX E:578&IQX J:1&SLXCZ J:26&SLX J:5&IQX C:IQX I:ABCX S:1&C S:5&IQX'.</p>")); 1273 1270 _rnxV3CheckBox->setWhatsThis(tr("<p>The default format for RINEX Observation files is RINEX Version 2.</p><p>Select 'Version 3' if you want to save observations in RINEX Version 3 format.</p>")); 1274 1271 _rnxV3filenameCheckBox->setWhatsThis(tr("<p>Tick 'Version 3 filenames' to let BNC create so-called extended filenames following the RINEX Version 3 standard.</p><p>Default is an empty check box, meaning to create filenames following the RINEX Version 2 standard although the file content is saved in RINEX Version 3 format.</p>")); … … 2409 2406 enable1 = _rnxV3CheckBox->isChecked(); 2410 2407 if (enable && enable1) { 2411 enableWidget(false, _rnxV2Priority); 2408 enableWidget(false, _rnxV2Priority); 2412 2409 } 2413 2410 if (enable && !enable1) { 2414 enableWidget(true, _rnxV2Priority); 2411 enableWidget(true, _rnxV2Priority); 2415 2412 } 2416 2413 } -
trunk/BNC/src/reqcdlg.cpp
r7678 r7980 35 35 * Created: 28-Mar-2012 36 36 * 37 * Changes: 37 * Changes: 38 38 * 39 39 * -----------------------------------------------------------------------*/ … … 138 138 QString hlp = settings.value("reqcV2Priority").toString(); 139 139 if (hlp.isEmpty()) { 140 hlp = " CWPX_?";140 hlp = "G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX E:16&BCX E:578&IQX J:1&SLXCZ J:26&SLX J:5&IQX C:IQX I:ABCX S:1&C S:5&IQX"; 141 141 } 142 142 _reqcV2Priority = new QLineEdit(hlp); … … 152 152 grid->addWidget(_reqcSampling, ir, 4); 153 153 ++ir; 154 grid->addWidget(new QLabel("Version 2 Signal Priority"), ir, 1);155 grid->addWidget(_reqcV2Priority, ir, 2);154 grid->addWidget(new QLabel("Version 2 signal priority"), ir, 1); 155 grid->addWidget(_reqcV2Priority, ir, 2, 1, 4); 156 156 ++ir; 157 157 grid->addWidget(new QLabel("Start"), ir, 1); … … 230 230 // WhatsThis, RINEX Editing & QC 231 231 // ----------------------------- 232 _reqcRnxVersion->setWhatsThis(tr("<p>Select version number of emerging new RINEX file.</p><p>Note the following:</p><p>When converting <u>RINEX Version 2 to Version 3 </u>Observation files, the tracking mode or channel information (signal attribute, see RINEX Version 3 documentation) in the (last out of the three characters) observation code is left blank if unknown.</p><p>When converting <u>RINEX Version 3 to Version 2</u>, the mapping of observations follows a 'Signal priority list' with signal attributes as defined in RINEX Version 3.</p>")); 232 _reqcRnxVersion->setWhatsThis(tr("<p>Select version number of emerging new RINEX file.</p><p>Note the following:</p><p>When converting <u>RINEX Version 2 to Version 3 </u>Observation files, the tracking mode or channel information (signal attribute, see RINEX Version 3 documentation) in the (last out of the three characters) observation code is left blank if unknown.</p><p>When converting <u>RINEX Version 3 to Version 2</u>, the mapping of observations follows a 'Signal priority list' with signal attributes as defined in RINEX Version 3.</p>")); 233 233 _reqcSampling->setWhatsThis(tr("<p>Select sampling rate of emerging new RINEX Observation file.</p><p>'0 sec' means that observations from all epochs in the RINEX input file will become part of the RINEX output file.</p>")); 234 _reqcV2Priority->setWhatsThis(tr("<p>Specify a priority list of characters defining signal attributes as defined in RINEX Version 3. Priorities will be used in post processing mode to mapRINEX Version 3observation files to Version 2. The underscore character '_' stands for undefined attributes.Thequestion mark '?' can be used as wildcard which represents any one character.</p><p>Signal priorities can be specifiedeitheras equal for all systemsor as system specifics. The following are example priority strings:</li><ul><li>'CWPX_?' (Samesignal priorities valid for allsystems)</li><li>'G:CWPX_? R:PCX_? E:CPX_?' (Specific signal priorities for GPS, GLONASS and Galileo system)</li></ul>Default is priority list 'CWPX_?'.</p>"));234 _reqcV2Priority->setWhatsThis(tr("<p>Specify a priority list of characters defining signal attributes as defined in RINEX Version 3. Priorities will be used to map observations with RINEX Version 3 attributes from incoming streams to Version 2. The underscore character '_' stands for undefined attributes. A question mark '?' can be used as wildcard which represents any one character.</p><p>Signal priorities can be specified as equal for all systems, as system specific or as system and freq. specific. For example: </li><ul><li>'CWPX_?' (General signal priorities valid for all GNSS) </li><li>'C:IQX I:ABCX' (System specific signal priorities for BDS and IRNSS) </li><li>'G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX' (System and frequency specific signal priorities) </li></ul>Default is the following priority list 'G:12&PWCSLXYN G:5&IQX R:12&PC R:3&IQX E:16&BCX E:578&IQX J:1&SLXCZ J:26&SLX J:5&IQX C:IQX I:ABCX S:1&C S:5&IQX'.</p>")); 235 235 _reqcStartDateTime->setWhatsThis(tr("<p>Specify begin of emerging new RINEX Observation file.</p>")); 236 236 _reqcEndDateTime->setWhatsThis(tr("<p>Specify end of emerging new RINEX Observation file.</p>")); … … 281 281 void reqcDlg::closeEvent(QCloseEvent* event) { 282 282 283 int iRet = QMessageBox::question(this, "Close", "Save Options?", 283 int iRet = QMessageBox::question(this, "Close", "Save Options?", 284 284 QMessageBox::Yes, QMessageBox::No, 285 285 QMessageBox::Cancel); -
trunk/BNC/src/rinex/reqcedit.cpp
r7942 r7980 156 156 deleteLater(); 157 157 } 158 158 159 } 159 160 … … 643 644 int key = 0; 644 645 QString systems = obsFile->header().usedSystems(); 645 QString comment = QString("RINEX 3 => 2 CONVERSION DETAILS:");646 QString comment = QString("Signal priorities for RINEX 3 => 2 conversion:"); 646 647 QString commentKey = QString("COMMENT %1").arg(key, 3, 10, QChar('0')); 647 648 txtMap.insert(commentKey, comment); 648 649 649 650 for(int ii = 0; ii < obsFile->numSys(); ii++) { 650 key++;651 651 char sys = systems[ii].toAscii(); 652 QString preferredAttrib = obsFile->signalPriorities(sys);653 comment = QString("%1: Signal priority = %2").arg(sys).arg(preferredAttrib);654 commentKey = QString("COMMENT %1").arg(key, 3, 10, QChar('0'));655 652 txtMap.insert(commentKey, comment); 653 QMap <char, QString> signalPriorityMap; 654 QStringList preferredAttribListSys = obsFile->signalPriorities(sys); 656 655 QStringList types = obsFile->header().obsTypes(sys); 657 656 for (int jj = 0; jj < types.size(); jj++) { 658 key++;659 657 QString inType = types[jj]; 660 for (int iPref = 0; iPref < preferredAttrib.length(); iPref++) { 661 if (preferredAttrib[iPref] == '?' || 662 (inType.length() == 2 && preferredAttrib[iPref] == '_' ) || 663 (inType.length() == 3 && preferredAttrib[iPref] == inType[2]) ) { 664 QString outType = t_rnxObsFile::type3to2(sys, inType); 665 comment = QString("%1: %2 => %3").arg(sys).arg(inType).arg(outType); 666 commentKey = QString("COMMENT %1").arg(key, 3, 10, QChar('0')); 667 txtMap.insert(commentKey, comment); 668 break; 669 } 670 } 671 } 672 } 673 } 658 char band = inType[1].toAscii(); 659 for (int ii = 0; ii < preferredAttribListSys.size(); ii++) { 660 QString preferredAttrib; 661 if (preferredAttribListSys[ii].indexOf("&") != -1) { 662 QStringList hlp = preferredAttribListSys[ii].split("&", QString::SkipEmptyParts); 663 if (hlp.size() == 2 && hlp[0].contains(band)) { 664 preferredAttrib = hlp[1]; 665 } 666 } 667 else { 668 preferredAttrib = preferredAttribListSys[ii]; 669 } 670 if (!signalPriorityMap.contains(band) && !preferredAttrib.isEmpty()){ 671 signalPriorityMap[band] = preferredAttrib; 672 } 673 } 674 } 675 QMapIterator<char, QString> it(signalPriorityMap); 676 while (it.hasNext()) { 677 it.next(); 678 key++; 679 comment = QString("%1 band %2: %3").arg(sys).arg(it.key()).arg(it.value()); 680 commentKey = QString("COMMENT %1").arg(key, 3, 10, QChar('0')); 681 txtMap.insert(commentKey, comment); 682 } 683 } 684 } -
trunk/BNC/src/rinex/rnxobsfile.cpp
r7894 r7980 1303 1303 } 1304 1304 *stream << endl; 1305 1305 1306 for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) { 1306 1307 1307 const t_rnxSat& rnxSat = epo->rnxSat[iSat]; 1308 1308 char sys = rnxSat.prn.system(); 1309 1310 1309 for (int iTypeV2 = 0; iTypeV2 < header.nTypes(sys); iTypeV2++) { 1311 1310 if (iTypeV2 > 0 && iTypeV2 % 5 == 0) { … … 1314 1313 QString typeV2 = header.obsType(sys, iTypeV2); 1315 1314 bool found = false; 1316 1317 QString preferredAttrib = signalPriorities(sys); 1318 for (int iPref = 0; iPref < preferredAttrib.length(); iPref++) { 1315 QStringList preferredAttribList = signalPriorities(sys); 1316 QString preferredAttrib; 1317 for (int ii = 0; ii < preferredAttribList.size(); ii++) { 1318 if (preferredAttribList[ii].indexOf("&") != -1) { 1319 QStringList hlp = preferredAttribList[ii].split("&", QString::SkipEmptyParts); 1320 if (hlp.size() == 2 && hlp[0].contains(typeV2[1])) { 1321 preferredAttrib = hlp[1]; 1322 } 1323 } 1324 else { 1325 preferredAttrib = preferredAttribList[ii]; 1326 } 1327 } 1328 1329 for (int iPref = 0; iPref < preferredAttribList.size(); iPref++) { 1319 1330 QMapIterator<QString, t_rnxObs> itObs(rnxSat.obs); 1320 1331 while (itObs.hasNext()) { … … 1545 1556 // Tracking Mode Priorities 1546 1557 //////////////////////////////////////////////////////////////////////////// 1547 QString t_rnxObsFile::signalPriorities(char sys) { 1558 QStringList t_rnxObsFile::signalPriorities(char sys) { 1548 1559 1549 1560 bncSettings settings; 1550 1561 1551 1562 QStringList priorList; 1552 1563 QString reqcAction = settings.value("reqcAction").toString(); … … 1555 1566 // --------------------------------------------------- 1556 1567 if (reqcAction == "Edit/Concatenate") { 1557 priorList = settings.value("reqcV2Priority").toString().split(" ", QString::SkipEmptyParts); 1568 priorList = settings.value("reqcV2Priority").toString().split(" ", QString::SkipEmptyParts); 1558 1569 } 1559 1570 … … 1561 1572 // ---------------------------- 1562 1573 else { 1563 priorList = settings.value("rnxV2Priority").toString().split(" ", QString::SkipEmptyParts); 1564 } 1565 1566 if (priorList.empty()) { 1567 priorList << "CWPX_?"; 1568 } 1569 1570 QString result; 1574 priorList = settings.value("rnxV2Priority").toString().split(" ", QString::SkipEmptyParts); 1575 } 1576 1577 QStringList result; 1571 1578 for (int ii = 0; ii < priorList.size(); ii++) { 1572 1579 if (priorList[ii].indexOf(":") != -1) { 1573 1580 QStringList hlp = priorList[ii].split(":", QString::SkipEmptyParts); 1574 1581 if (hlp.size() == 2 && hlp[0].length() == 1 && hlp[0][0] == sys) { 1575 result = hlp[1]; 1582 result.append(hlp[1]); 1583 } 1584 } 1585 else { 1586 result.append(priorList[ii]); 1587 } 1588 } 1589 1590 if (result.empty()) { 1591 switch (sys) { 1592 case 'G': 1593 result << "G:12&PWCSLXYN G:5&IQX"; 1576 1594 break; 1577 } 1578 } 1579 else { 1580 result = priorList[ii]; 1581 } 1582 } 1583 1595 case 'R': 1596 result << "R:12&PC R:3&IQX"; 1597 break; 1598 case 'E': 1599 result << "E:16&BCX E:578&IQX"; 1600 break; 1601 case 'J': 1602 result << "J:1&SLXCZ J:26&SLX J:5&IQX"; 1603 break; 1604 case 'C': 1605 result << "C:IQX"; 1606 break; 1607 case 'I': 1608 result << "I:ABCX"; 1609 break; 1610 case 'S': 1611 result << "S:1&C S:5&IQX"; 1612 break; 1613 } 1614 } 1584 1615 return result; 1585 1616 } -
trunk/BNC/src/rinex/rnxobsfile.h
r7817 r7980 207 207 static QString type2to3(char sys, const QString& typeV2); 208 208 static QString type3to2(char sys, const QString& typeV3); 209 static QString signalPriorities(char sys); 209 static QStringList signalPriorities(char sys); 210 210 211 211 static void writeEpoch(QTextStream* stream, const t_rnxObsHeader& header, const t_rnxEpo* epo) {
Note:
See TracChangeset
for help on using the changeset viewer.