Changeset 10578 in ntrip for trunk/BNC


Ignore:
Timestamp:
Nov 8, 2024, 4:11:59 PM (6 days ago)
Author:
stuerze
Message:

updates regarding RINEX version 4.02 navigation information

Location:
trunk/BNC/src
Files:
3 edited

Legend:

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

    r10128 r10578  
    112112////////////////////////////////////////////////////////////////////////////
    113113void bncSP3::closeFile() {
    114   _out << "EOF" << endl;
     114  _out << "\nEOF" << endl;
    115115  bncoutf::closeFile();
    116116}
  • trunk/BNC/src/ephemeris.cpp

    r10577 r10578  
    953953  // =====================
    954954  if (ephType() == t_eph::CNAV) {
    955     double intFlags;
     955    int intFlags;
    956956    if (_intSF !=-1 ) {
    957957      intFlags |= (1 << 0);
     
    994994  // =====================
    995995  if (ephType() == t_eph::CNV2) {
    996     double intFlags;
     996    int intFlags;
    997997    if (_intSF !=-1 ) {
    998998      intFlags |= (1 << 0);
  • trunk/BNC/src/ephemeris.h

    r10577 r10578  
    351351    _BGD_1_5B        = 0.0;
    352352    _TOT             = 0.0;
    353     bool    _inav;
     353    _inav            = 0;
    354354    /** Data comes from F/NAV when <code>true</code> */
    355     bool    _fnav;
    356     bool    _e1DataInValid;
    357     bool    _e5aDataInValid;
    358     bool    _e5bDataInValid;
     355    _fnav            = 0;
     356    _e1DataInValid   = 0;
     357    _e5aDataInValid  = 0;
     358    _e5bDataInValid  = 0;
    359359    _receptStaID     = "";
    360360  };
     
    407407  double  _TOT;              // [s]
    408408  /** Data comes from I/NAV when <code>true</code> */
    409   bool    _inav;
     409  int    _inav;
    410410  /** Data comes from F/NAV when <code>true</code> */
    411   bool    _fnav;
     411  int    _fnav;
    412412  /** E1 Data is not valid */
    413   bool    _e1DataInValid;
     413  int    _e1DataInValid;
    414414  /** E5A Data is not valid */
    415   bool    _e5aDataInValid;
     415  int    _e5aDataInValid;
    416416  /** E5B Data is not valid */
    417   bool    _e5bDataInValid;
     417  int    _e5bDataInValid;
    418418};
    419419
Note: See TracChangeset for help on using the changeset viewer.