Changeset 6407 in ntrip


Ignore:
Timestamp:
Dec 22, 2014, 6:21:37 PM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP_free/pppFilter.cpp

    r6166 r6407  
    253253  Tracer tracer("t_pppFilter::cmpBancroft");
    254254
    255   if (epoData->sizeSys('G') < OPT->_minObs) {
     255  if (int(epoData->sizeSys('G')) < OPT->_minObs) {
    256256    LOG << "t_pppFilter::cmpBancroft: not enough data\n";
    257257    return failure;
     
    338338  if (_antex) {
    339339    bool found;
    340     phaseCenter = _antex->pco(QString(OPT->_antNameRover.c_str()), satData->eleSat, found);
     340    phaseCenter = _antex->rcvCorr(OPT->_antNameRover, t_frequency::G1,
     341                                  satData->eleSat, satData->azSat, found);
    341342    if (!found) {
    342343      LOG << "ANTEX: antenna >" << OPT->_antNameRover << "< not found\n";
Note: See TracChangeset for help on using the changeset viewer.