Changeset 3330 in ntrip


Ignore:
Timestamp:
Jul 19, 2011, 1:21:47 PM (13 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmodel.cpp

    r3323 r3330  
    7474  index_old = 0;
    7575  xx        = 0.0;
    76 
     76  numEpo    = 0;
    7777}
    7878
     
    713713    }
    714714    else if (par->type == bncParam::AMB_L3) {
     715      ++par->numEpo;
    715716      strB << "\n    amb " << par->prn.toAscii().data() << " = "
    716717           << setw(10) << setprecision(3) << par->xx
    717718           << " +- " << setw(6) << setprecision(3)
    718            << sqrt(_QQ(par->index,par->index));
     719           << sqrt(_QQ(par->index,par->index))
     720           << "   nEpo = " << par->numEpo;
    719721    }
    720722    else if (par->type == bncParam::TROPO) {
  • trunk/BNC/bncmodel.h

    r3323 r3330  
    5050  int      index;
    5151  int      index_old;
     52  int      numEpo;
    5253  QString  prn;
    5354};
Note: See TracChangeset for help on using the changeset viewer.