Changeset 2061 in ntrip for trunk/BNC/bncmodel.cpp


Ignore:
Timestamp:
Dec 1, 2009, 1:27:38 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmodel.cpp

    r2060 r2061  
    157157  double tropDelay = 0.0;
    158158
    159   return satData->rho + _xcBanc(4) + tropDelay;
     159  return satData->rho + _xcBanc(4) - satData->clk + tropDelay;
    160160}
    161161
     
    166166  unsigned nPar = _params.size();
    167167  unsigned nObs = epoData->size();
    168 
    169   cout << "update " << nPar << " " << nObs << endl;
    170168
    171169  _AA.ReSize(nObs, nPar);  // variance-covariance matrix
     
    179177    QString    prn     = itObs.key();
    180178    t_satData* satData = itObs.value();
    181     _ll(iObs) = cmpValueP3(satData);
     179    _ll(iObs) = satData->P3 - cmpValueP3(satData);
    182180
    183181    unsigned iPar = 0;
     
    190188  }
    191189
    192   cout << _AA << endl;
    193   cout.flush();
    194 
    195190  _QQ.ReSize(nPar);
    196191  _QQ << _AA.t() * _AA;
Note: See TracChangeset for help on using the changeset viewer.