Changeset 8495 in ntrip


Ignore:
Timestamp:
Sep 25, 2018, 1:17:34 PM (6 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r8026 r8495  
    106106  // Compute Satellite Coordinates at Time of Transmission
    107107  // -----------------------------------------------------
    108   _xcSat.ReSize(4); _xcSat = 0.0;
    109   _vvSat.ReSize(4); _vvSat = 0.0;
     108  _xcSat.ReSize(7); _xcSat = 0.0;
     109  _vvSat.ReSize(3); _vvSat = 0.0;
    110110  bool totOK  = false;
    111   ColumnVector satPosOld(4); satPosOld = 0.0;
     111  ColumnVector satPosOld(7); satPosOld = 0.0;
    112112  t_lc::type tLC = isValid(t_lc::cIF) ? t_lc::cIF : t_lc::c1;
    113113  double prange = obsValue(tLC);
  • trunk/BNC/src/ephemeris.h

    r8482 r8495  
    150150 public:
    151151  t_ephGlo() {
    152     _xv.ReSize(6);
     152    _xv.ReSize(6); _xv = 0.0;
    153153    _gps_utc          = 0.0;
    154154    _tau              = 0.0;
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r8483 r8495  
    288288    }
    289289    if (eph) {
    290       ColumnVector xSat(4);
     290      ColumnVector xSat(7);
    291291      ColumnVector vv(3);
    292292      if (eph->getCrd(_currEpo->tt, xSat, vv, false) == success) {
Note: See TracChangeset for help on using the changeset viewer.