Changeset 10619 in ntrip for trunk/BNC/src/ephemeris.cpp


Ignore:
Timestamp:
Mar 11, 2025, 4:26:59 PM (45 hours ago)
Author:
stuerze
Message:

IRNSS replaced by NavIC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/ephemeris.cpp

    r10614 r10619  
    430430    // BROADCAST ORBIT - 5
    431431    // =====================
    432     else if (iLine == 5 && system() != t_eph::IRNSS) {
     432    else if (iLine == 5 && system() != t_eph::NavIC) {
    433433      if (type() == t_eph::CNAV ||
    434434          type() == t_eph::CNV2) {
     
    450450        }
    451451      }
    452     } else if (iLine == 5 && system() == t_eph::IRNSS) {
     452    } else if (iLine == 5 && system() == t_eph::NavIC) {
    453453      if (type() == t_eph::LNAV) {
    454454        if (   readDbl(line, pos[0], fieldLen, _IDOT)
     
    470470    // BROADCAST ORBIT - 6
    471471    // =====================
    472     else if (iLine == 6 && system() != t_eph::IRNSS) {
     472    else if (iLine == 6 && system() != t_eph::NavIC) {
    473473      if (type() == t_eph::CNAV ||
    474474          type() == t_eph::CNV2) {
     
    490490      }
    491491    }
    492     else if (iLine == 6 && system() == t_eph::IRNSS) {
     492    else if (iLine == 6 && system() == t_eph::NavIC) {
    493493      if (type() == t_eph::LNAV) {
    494494        if (   readDbl(line, pos[0], fieldLen, _ura)
     
    520520          return;
    521521        }
    522         if (system() != t_eph::IRNSS) {
     522        if (system() != t_eph::NavIC) {
    523523          double fitIntervalRnx;
    524524          if (readDbl(line, pos[1], fieldLen, fitIntervalRnx)) {
     
    812812  // BROADCAST ORBIT - 5
    813813  // =====================
    814   if (system() != t_eph::IRNSS) {
     814  if (system() != t_eph::NavIC) {
    815815    if (type() == t_eph::CNAV ||
    816816        type() == t_eph::CNV2) {
     
    853853  // BROADCAST ORBIT - 6
    854854  // =====================
    855   if (system() != t_eph::IRNSS) {
     855  if (system() != t_eph::NavIC) {
    856856    if (type() == t_eph::CNAV ||
    857857        type() == t_eph::CNV2) {
     
    912912    }
    913913    // fitInterval
    914     if (system() == t_eph::IRNSS) {
     914    if (system() == t_eph::NavIC) {
    915915      out
    916916          << QString(fmt)
Note: See TracChangeset for help on using the changeset viewer.