Changeset 10619 in ntrip for trunk/BNC/src/ephemeris.cpp
- Timestamp:
- Mar 11, 2025, 4:26:59 PM (45 hours ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/ephemeris.cpp
r10614 r10619 430 430 // BROADCAST ORBIT - 5 431 431 // ===================== 432 else if (iLine == 5 && system() != t_eph:: IRNSS) {432 else if (iLine == 5 && system() != t_eph::NavIC) { 433 433 if (type() == t_eph::CNAV || 434 434 type() == t_eph::CNV2) { … … 450 450 } 451 451 } 452 } else if (iLine == 5 && system() == t_eph:: IRNSS) {452 } else if (iLine == 5 && system() == t_eph::NavIC) { 453 453 if (type() == t_eph::LNAV) { 454 454 if ( readDbl(line, pos[0], fieldLen, _IDOT) … … 470 470 // BROADCAST ORBIT - 6 471 471 // ===================== 472 else if (iLine == 6 && system() != t_eph:: IRNSS) {472 else if (iLine == 6 && system() != t_eph::NavIC) { 473 473 if (type() == t_eph::CNAV || 474 474 type() == t_eph::CNV2) { … … 490 490 } 491 491 } 492 else if (iLine == 6 && system() == t_eph:: IRNSS) {492 else if (iLine == 6 && system() == t_eph::NavIC) { 493 493 if (type() == t_eph::LNAV) { 494 494 if ( readDbl(line, pos[0], fieldLen, _ura) … … 520 520 return; 521 521 } 522 if (system() != t_eph:: IRNSS) {522 if (system() != t_eph::NavIC) { 523 523 double fitIntervalRnx; 524 524 if (readDbl(line, pos[1], fieldLen, fitIntervalRnx)) { … … 812 812 // BROADCAST ORBIT - 5 813 813 // ===================== 814 if (system() != t_eph:: IRNSS) {814 if (system() != t_eph::NavIC) { 815 815 if (type() == t_eph::CNAV || 816 816 type() == t_eph::CNV2) { … … 853 853 // BROADCAST ORBIT - 6 854 854 // ===================== 855 if (system() != t_eph:: IRNSS) {855 if (system() != t_eph::NavIC) { 856 856 if (type() == t_eph::CNAV || 857 857 type() == t_eph::CNV2) { … … 912 912 } 913 913 // fitInterval 914 if (system() == t_eph:: IRNSS) {914 if (system() == t_eph::NavIC) { 915 915 out 916 916 << QString(fmt)
Note:
See TracChangeset
for help on using the changeset viewer.