Changeset 5819 in ntrip
- Timestamp:
- Aug 6, 2014, 1:02:08 PM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r5818 r5819 78 78 _log = new ostringstream(); 79 79 _ephPool = new t_pppEphPool(); 80 _obsPool = new t_ pppObsPool();80 _obsPool = new t_frqObsPool(); 81 81 _staRover = new t_pppStation(); 82 82 _filter = new t_pppFilter(); … … 150 150 // 151 151 ////////////////////////////////////////////////////////////////////////////// 152 t_irc t_pppClient::prepareObs(const vector<t_ pppSatObs*>& pppSatObs,153 vector<t_ satObs*>& obsVector, bncTime& epoTime) {152 t_irc t_pppClient::prepareObs(const vector<t_satObs*>& pppSatObs, 153 vector<t_pppSatObs*>& obsVector, bncTime& epoTime) { 154 154 // Default 155 155 // ------- … … 162 162 char system = pppSatObs[ii]->_prn.system(); 163 163 if (system == 'G' || (system == 'R' && OPT->useGlonass())) { 164 t_ satObs* satObs = new t_satObs(*pppSatObs[ii]);164 t_pppSatObs* satObs = new t_pppSatObs(*pppSatObs[ii]); 165 165 if (satObs->isValid()) { 166 166 obsVector.push_back(satObs); … … 180 180 double meanDt = 0.0; 181 181 for (unsigned ii = 0; ii < obsVector.size(); ii++) { 182 const t_ satObs* satObs = obsVector.at(ii);182 const t_pppSatObs* satObs = obsVector.at(ii); 183 183 if (epoTime.undef()) { 184 184 epoTime = satObs->time(); … … 204 204 ////////////////////////////////////////////////////////////////////////////// 205 205 t_irc t_pppClient::cmpBancroft(const bncTime& epoTime, 206 vector<t_ satObs*>& obsVector,206 vector<t_pppSatObs*>& obsVector, 207 207 ColumnVector& xyzc, bool print) { 208 208 … … 213 213 int iObs = -1; 214 214 for (unsigned ii = 0; ii < obsVector.size(); ii++) { 215 const t_ satObs* satObs = obsVector.at(ii);215 const t_pppSatObs* satObs = obsVector.at(ii); 216 216 if ( satObs->isValid() && satObs->prn().system() == 'G' && 217 217 (!satObs->modelSet() || satObs->eleSat() >= OPT->_minEle) ) { … … 238 238 unsigned maxResIndex = 0; 239 239 for (unsigned ii = 0; ii < obsVector.size(); ii++) { 240 const t_ satObs* satObs = obsVector.at(ii);240 const t_pppSatObs* satObs = obsVector.at(ii); 241 241 if ( satObs->isValid() && satObs->prn().system() == 'G' && 242 242 (!satObs->modelSet() || satObs->eleSat() >= OPT->_minEle) ) { … … 262 262 } 263 263 else { 264 t_ satObs* satObs = obsVector.at(maxResIndex);264 t_pppSatObs* satObs = obsVector.at(maxResIndex); 265 265 LOG << "t_pppClient::cmpBancroft outlier " << satObs->prn().toString() 266 266 << " " << maxRes << endl; … … 275 275 // Compute A Priori GPS-Glonass Offset 276 276 ////////////////////////////////////////////////////////////////////////////// 277 double t_pppClient::cmpOffGG(vector<t_ satObs*>& obsVector) {277 double t_pppClient::cmpOffGG(vector<t_pppSatObs*>& obsVector) { 278 278 279 279 t_lc::type tLC = (OPT->dualFreqRequired() ? t_lc::cIF : t_lc::c1); … … 286 286 unsigned nObs = 0; 287 287 for (unsigned ii = 0; ii < obsVector.size(); ii++) { 288 t_ satObs* satObs = obsVector.at(ii);288 t_pppSatObs* satObs = obsVector.at(ii); 289 289 if ( !satObs->outlier() && satObs->isValid() && satObs->prn().system() == 'R' && 290 290 (!satObs->modelSet() || satObs->eleSat() >= OPT->_minEle) ) { … … 360 360 ////////////////////////////////////////////////////////////////////////////// 361 361 t_irc t_pppClient::cmpModel(t_pppStation* station, const ColumnVector& xyzc, 362 vector<t_ satObs*>& obsVector) {362 vector<t_pppSatObs*>& obsVector) { 363 363 364 364 bncTime time; … … 384 384 // Observation model 385 385 // ----------------- 386 vector<t_ satObs*>::iterator it = obsVector.begin();386 vector<t_pppSatObs*>::iterator it = obsVector.begin(); 387 387 while (it != obsVector.end()) { 388 t_ satObs* satObs = *it;388 t_pppSatObs* satObs = *it; 389 389 satObs->cmpModel(station); 390 390 if (satObs->isValid() && satObs->eleSat() >= OPT->_minEle) { … … 402 402 // 403 403 ////////////////////////////////////////////////////////////////////////////// 404 void t_pppClient::processEpoch(const vector<t_ pppSatObs*>& pppSatObs, t_output* output) {404 void t_pppClient::processEpoch(const vector<t_satObs*>& pppSatObs, t_output* output) { 405 405 406 406 try { -
trunk/BNC/src/PPP/pppClient.h
r5816 r5819 14 14 15 15 class t_pppEphPool; 16 class t_ pppObsPool;17 class t_ satObs;16 class t_frqObsPool; 17 class t_pppSatObs; 18 18 class t_pppStation; 19 19 class t_pppFilter; … … 28 28 void putClkCorrections(const std::vector<t_clkCorr*>& corr); 29 29 void putBiases(const std::vector<t_satBiases*>& biases); 30 void processEpoch(const std::vector<t_ pppSatObs*>& pppSatObs, t_output* output);30 void processEpoch(const std::vector<t_satObs*>& pppSatObs, t_output* output); 31 31 32 32 const t_pppEphPool* ephPool() const {return _ephPool;} 33 const t_ pppObsPool* obsPool() const {return _obsPool;}33 const t_frqObsPool* obsPool() const {return _obsPool;} 34 34 const bncAntex* antex() const {return _antex;} 35 35 const t_pppStation* staRover() const {return _staRover;} … … 47 47 void finish(t_irc irc); 48 48 void clearObs(); 49 t_irc prepareObs(const std::vector<t_ pppSatObs*>& pppSatObs,50 std::vector<t_ satObs*>& obsVector, bncTime& epoTime);49 t_irc prepareObs(const std::vector<t_satObs*>& pppSatObs, 50 std::vector<t_pppSatObs*>& obsVector, bncTime& epoTime); 51 51 t_irc cmpModel(t_pppStation* station, const ColumnVector& xyzc, 52 std::vector<t_ satObs*>& obsVector);53 t_irc cmpBancroft(const bncTime& epoTime, std::vector<t_ satObs*>& obsVector,52 std::vector<t_pppSatObs*>& obsVector); 53 t_irc cmpBancroft(const bncTime& epoTime, std::vector<t_pppSatObs*>& obsVector, 54 54 ColumnVector& xyzc, bool print); 55 double cmpOffGG(std::vector<t_ satObs*>& obsVector);55 double cmpOffGG(std::vector<t_pppSatObs*>& obsVector); 56 56 57 57 t_output* _output; 58 58 t_pppEphPool* _ephPool; 59 t_ pppObsPool* _obsPool;59 t_frqObsPool* _obsPool; 60 60 bncTime _epoTimeRover; 61 61 t_pppStation* _staRover; … … 63 63 t_pppFilter* _filter; 64 64 double _offGG; 65 std::vector<t_ satObs*> _obsRover;65 std::vector<t_pppSatObs*> _obsRover; 66 66 std::ostringstream* _log; 67 67 t_pppOptions* _opt; -
trunk/BNC/src/PPP/pppFilter.cpp
r5814 r5819 30 30 // Process Single Epoch 31 31 //////////////////////////////////////////////////////////////////////////// 32 t_irc t_pppFilter::processEpoch(t_ pppObsPool* obsPool) {32 t_irc t_pppFilter::processEpoch(t_frqObsPool* obsPool) { 33 33 34 34 _numSat = 0; … … 40 40 // Vector of all Observations 41 41 // -------------------------- 42 t_ pppObsPool::t_epoch* epoch = obsPool->lastEpoch();42 t_frqObsPool::t_epoch* epoch = obsPool->lastEpoch(); 43 43 if (!epoch) { 44 44 return failure; 45 45 } 46 vector<t_ satObs*>& obsVector = epoch->obsVector();46 vector<t_pppSatObs*>& obsVector = epoch->obsVector(); 47 47 48 48 // Time of the Epoch … … 128 128 //////////////////////////////////////////////////////////////////////////// 129 129 t_irc t_pppFilter::processLC(const vector<t_lc::type>& LCs, 130 vector<t_ satObs*>& obsVector) {130 vector<t_pppSatObs*>& obsVector) { 131 131 132 132 LOG.setf(ios::fixed); … … 160 160 161 161 int iObs = -1; 162 vector<t_ satObs*> usedObs;162 vector<t_pppSatObs*> usedObs; 163 163 vector<t_lc::type> usedTypes; 164 164 for (unsigned ii = 0; ii < obsVector.size(); ii++) { 165 t_ satObs* obs = obsVector[ii];165 t_pppSatObs* obs = obsVector[ii]; 166 166 if (!obs->outlier()) { 167 167 Matrix CC(LCs.size(), 4); … … 237 237 // -------------------------------------------- 238 238 if (maxOutlierIndex > -1) { 239 t_ satObs* obs = usedObs[maxOutlierIndex];239 t_pppSatObs* obs = usedObs[maxOutlierIndex]; 240 240 t_pppParam* par = 0; 241 241 LOG << epoTimeStr << " Outlier " << t_lc::toString(maxOutlierLC) << ' ' … … 269 269 for (unsigned ii = 0; ii < usedObs.size(); ii++) { 270 270 const t_lc::type tLC = usedTypes[ii]; 271 t_ satObs* obs = usedObs[ii];271 t_pppSatObs* obs = usedObs[ii]; 272 272 if (tLC == LCs[jj]) { 273 273 obs->setRes(tLC, vv[ii]); … … 290 290 //////////////////////////////////////////////////////////////////////////// 291 291 t_irc t_pppFilter::detectCycleSlips(const vector<t_lc::type>& LCs, 292 const vector<t_ satObs*>& obsVector) {292 const vector<t_pppSatObs*>& obsVector) { 293 293 294 294 const double SLIP = 20.0; // slip threshold … … 300 300 if (t_lc::includesPhase(tLC)) { 301 301 for (unsigned iObs = 0; iObs < obsVector.size(); iObs++) { 302 const t_ satObs* obs = obsVector[iObs];302 const t_pppSatObs* obs = obsVector[iObs]; 303 303 304 304 // Check set Slips and Jump Counters … … 358 358 // Reset Ambiguity Parameter (cycle slip) 359 359 //////////////////////////////////////////////////////////////////////////// 360 t_irc t_pppFilter::resetAmb(t_prn prn, const vector<t_ satObs*>& obsVector,360 t_irc t_pppFilter::resetAmb(t_prn prn, const vector<t_pppSatObs*>& obsVector, 361 361 SymmetricMatrix* QSav, ColumnVector* xSav) { 362 362 t_irc irc = failure; -
trunk/BNC/src/PPP/pppFilter.h
r5814 r5819 12 12 13 13 class t_pppParlist; 14 class t_ pppObsPool;15 class t_ satObs;14 class t_frqObsPool; 15 class t_pppSatObs; 16 16 17 17 class t_pppFilter { … … 20 20 ~t_pppFilter(); 21 21 22 t_irc processEpoch(t_ pppObsPool* obsPool);22 t_irc processEpoch(t_frqObsPool* obsPool); 23 23 24 24 const ColumnVector& x() const {return _xFlt;} … … 50 50 double G; 51 51 }; 52 t_irc processLC(const std::vector<t_lc::type>& LCs, std::vector<t_ satObs*>& obsVector);52 t_irc processLC(const std::vector<t_lc::type>& LCs, std::vector<t_pppSatObs*>& obsVector); 53 53 54 54 t_irc detectCycleSlips(const std::vector<t_lc::type>& LCs, 55 const std::vector<t_ satObs*>& obsVector);55 const std::vector<t_pppSatObs*>& obsVector); 56 56 57 t_irc resetAmb(t_prn prn, const std::vector<t_ satObs*>& obsVector,57 t_irc resetAmb(t_prn prn, const std::vector<t_pppSatObs*>& obsVector, 58 58 SymmetricMatrix* QSav = 0, ColumnVector* xSav = 0); 59 59 -
trunk/BNC/src/PPP/pppInclude.h
r5814 r5819 33 33 }; 34 34 35 class t_ pppObs {35 class t_frqObs { 36 36 public: 37 t_ pppObs() {37 t_frqObs() { 38 38 _code = 0.0; 39 39 _codeValid = false; … … 62 62 }; 63 63 64 class t_ pppSatObs {64 class t_satObs { 65 65 public: 66 t_ pppSatObs() {}67 ~t_ pppSatObs() {for (unsigned ii = 0; ii < _obs.size(); ii++) delete _obs[ii];}66 t_satObs() {} 67 ~t_satObs() {for (unsigned ii = 0; ii < _obs.size(); ii++) delete _obs[ii];} 68 68 t_prn _prn; 69 69 bncTime _time; 70 std::vector<t_ pppObs*> _obs;70 std::vector<t_frqObs*> _obs; 71 71 }; 72 72 -
trunk/BNC/src/PPP/pppObsPool.cpp
r5818 r5819 46 46 // Constructor 47 47 ///////////////////////////////////////////////////////////////////////////// 48 t_ pppObsPool::t_epoch::t_epoch(const bncTime& epoTime, vector<t_satObs*>& obsVector) {48 t_frqObsPool::t_epoch::t_epoch(const bncTime& epoTime, vector<t_pppSatObs*>& obsVector) { 49 49 _epoTime = epoTime; 50 50 for (unsigned ii = 0; ii < obsVector.size(); ii++) { … … 56 56 // Destructor 57 57 ///////////////////////////////////////////////////////////////////////////// 58 t_ pppObsPool::t_epoch::~t_epoch() {58 t_frqObsPool::t_epoch::~t_epoch() { 59 59 for (unsigned ii = 0; ii < _obsVector.size(); ii++) { 60 60 delete _obsVector[ii]; … … 64 64 // Constructor 65 65 ///////////////////////////////////////////////////////////////////////////// 66 t_ pppObsPool::t_pppObsPool() {66 t_frqObsPool::t_frqObsPool() { 67 67 for (unsigned ii = 0; ii <= t_prn::MAXPRN; ii++) { 68 68 _satBiases[ii] = 0; … … 72 72 // Destructor 73 73 ///////////////////////////////////////////////////////////////////////////// 74 t_ pppObsPool::~t_pppObsPool() {74 t_frqObsPool::~t_frqObsPool() { 75 75 for (unsigned ii = 0; ii <= t_prn::MAXPRN; ii++) { 76 76 delete _satBiases[ii]; … … 84 84 // 85 85 ///////////////////////////////////////////////////////////////////////////// 86 void t_ pppObsPool::putBiases(t_pppSatBias* satBias) {86 void t_frqObsPool::putBiases(t_pppSatBias* satBias) { 87 87 int iPrn = satBias->prn().toInt(); 88 88 delete _satBiases[iPrn]; … … 92 92 // 93 93 ///////////////////////////////////////////////////////////////////////////// 94 void t_ pppObsPool::putEpoch(const bncTime& epoTime, vector<t_satObs*>& obsVector) {94 void t_frqObsPool::putEpoch(const bncTime& epoTime, vector<t_pppSatObs*>& obsVector) { 95 95 const unsigned MAXSIZE = 2; 96 96 _epochs.push_back(new t_epoch(epoTime, obsVector)); -
trunk/BNC/src/PPP/pppObsPool.h
r5818 r5819 10 10 namespace BNC_PPP { 11 11 12 class t_ pppObsPool {12 class t_frqObsPool { 13 13 public: 14 14 15 15 class t_epoch { 16 16 public: 17 t_epoch(const bncTime& epoTime, std::vector<t_ satObs*>& obsVector);17 t_epoch(const bncTime& epoTime, std::vector<t_pppSatObs*>& obsVector); 18 18 ~t_epoch(); 19 std::vector<t_ satObs*>& obsVector() {return _obsVector;}20 const std::vector<t_ satObs*>& obsVector() const {return _obsVector;}19 std::vector<t_pppSatObs*>& obsVector() {return _obsVector;} 20 const std::vector<t_pppSatObs*>& obsVector() const {return _obsVector;} 21 21 const bncTime& epoTime() const {return _epoTime;} 22 22 private: 23 23 bncTime _epoTime; 24 std::vector<t_ satObs*> _obsVector;24 std::vector<t_pppSatObs*> _obsVector; 25 25 }; 26 26 27 t_ pppObsPool();28 ~t_ pppObsPool();27 t_frqObsPool(); 28 ~t_frqObsPool(); 29 29 void putBiases(t_pppSatBias* satBias); 30 30 31 void putEpoch(const bncTime& epoTime, std::vector<t_ satObs*>& obsVector);31 void putEpoch(const bncTime& epoTime, std::vector<t_pppSatObs*>& obsVector); 32 32 33 33 const t_pppSatBias* satBias(const t_prn& prn) const { -
trunk/BNC/src/PPP/pppParlist.cpp
r5814 r5819 19 19 //////////////////////////////////////////////////////////////////////////// 20 20 t_pppParam::t_pppParam(e_type type, const t_prn& prn, t_lc::type tLC, 21 const vector<t_ satObs*>* obsVector) {21 const vector<t_pppSatObs*>* obsVector) { 22 22 23 23 _type = type; … … 51 51 if (obsVector) { 52 52 for (unsigned ii = 0; ii < obsVector->size(); ii++) { 53 const t_ satObs* obs = obsVector->at(ii);53 const t_pppSatObs* obs = obsVector->at(ii); 54 54 if (obs->prn() == _prn) { 55 55 double offGG = 0; … … 90 90 // 91 91 //////////////////////////////////////////////////////////////////////////// 92 double t_pppParam::partial(const bncTime& /* epoTime */, const t_ satObs* obs,92 double t_pppParam::partial(const bncTime& /* epoTime */, const t_pppSatObs* obs, 93 93 const t_lc::type& tLC) const { 94 94 … … 196 196 //////////////////////////////////////////////////////////////////////////// 197 197 t_irc t_pppParlist::set(const bncTime& epoTime, const vector<t_lc::type>& ambLCs, 198 const vector<t_ satObs*>& obsVector) {198 const vector<t_pppSatObs*>& obsVector) { 199 199 200 200 // Remove some Parameters … … 243 243 else { 244 244 for (unsigned jj = 0; jj < obsVector.size(); jj++) { 245 const t_ satObs* satObs = obsVector[jj];245 const t_pppSatObs* satObs = obsVector[jj]; 246 246 if (satObs->prn() == par->prn()) { 247 247 par->setLastObsTime(epoTime); … … 293 293 const t_lc::type& tLC = ambLCs[ii]; 294 294 for (unsigned jj = 0; jj < obsVector.size(); jj++) { 295 const t_ satObs* satObs = obsVector[jj];295 const t_pppSatObs* satObs = obsVector[jj]; 296 296 required.push_back(new t_pppParam(t_pppParam::amb, satObs->prn(), tLC, &obsVector)); 297 297 } … … 327 327 par->setIndex(ii); 328 328 for (unsigned jj = 0; jj < obsVector.size(); jj++) { 329 const t_ satObs* satObs = obsVector[jj];329 const t_pppSatObs* satObs = obsVector[jj]; 330 330 if (satObs->prn() == par->prn()) { 331 331 par->setAmbEleSat(satObs->eleSat()); -
trunk/BNC/src/PPP/pppParlist.h
r5814 r5819 10 10 namespace BNC_PPP { 11 11 12 class t_ satObs;12 class t_pppSatObs; 13 13 14 14 class t_pppParam { … … 17 17 18 18 t_pppParam(e_type type, const t_prn& prn, t_lc::type tLC, 19 const std::vector<t_ satObs*>* obsVector = 0);19 const std::vector<t_pppSatObs*>* obsVector = 0); 20 20 21 21 ~t_pppParam(); 22 22 e_type type() const {return _type;} 23 23 double x0() const {return _x0;} 24 double partial(const bncTime& epoTime, const t_ satObs* obs,24 double partial(const bncTime& epoTime, const t_pppSatObs* obs, 25 25 const t_lc::type& tLC) const; 26 26 bool epoSpec() const {return _epoSpec;} … … 98 98 99 99 t_irc set(const bncTime& epoTime, const std::vector<t_lc::type>& ambLCs, 100 const std::vector<t_ satObs*>& obsVector);100 const std::vector<t_pppSatObs*>& obsVector); 101 101 102 102 unsigned nPar() const {return _params.size();} -
trunk/BNC/src/PPP/pppThread.cpp
r5814 r5819 171 171 while (it.hasNext()) { 172 172 const t_obs& oldObs = it.next(); 173 t_ pppSatObs* newObs = new t_pppSatObs;173 t_satObs* newObs = new t_satObs; 174 174 175 175 newObs->_prn.set(oldObs.satSys, oldObs.satNum); … … 198 198 if (epoData != 0) { 199 199 epoData->_pppSatObs.push_back(newObs); 200 map<string, t_ pppObs*> pppObsMap;200 map<string, t_frqObs*> pppObsMap; 201 201 for (unsigned iEntry = 0; iEntry < GNSSENTRY_NUMBER; iEntry++) { 202 202 string hlp(oldObs.rnxStr(iEntry).toAscii().data()); … … 205 205 string rnxType2ch = hlp.substr(1); 206 206 if (obsType == 'C' || obsType == 'L') { 207 t_ pppObs* pppObs = 0;207 t_frqObs* pppObs = 0; 208 208 if (pppObsMap.find(rnxType2ch) == pppObsMap.end()) { 209 pppObs = new t_ pppObs();209 pppObs = new t_frqObs(); 210 210 pppObsMap[rnxType2ch] = pppObs; 211 211 pppObs->_rnxType2ch = rnxType2ch; … … 233 233 if (_pppEpochs.size() > 1) { 234 234 235 const vector<t_ pppSatObs*>& pppSatObs = _pppEpochs.front()->_pppSatObs;235 const vector<t_satObs*>& pppSatObs = _pppEpochs.front()->_pppSatObs; 236 236 237 237 t_output output; -
trunk/BNC/src/PPP/pppThread.h
r5817 r5819 38 38 } 39 39 bncTime _time; 40 std::vector<t_ pppSatObs*> _pppSatObs;40 std::vector<t_satObs*> _pppSatObs; 41 41 }; 42 42 -
trunk/BNC/src/PPP/satobs.cpp
r5818 r5819 27 27 * ------------------------------------------------------------------------- 28 28 * 29 * Class: t_ satObs29 * Class: t_pppSatObs 30 30 * 31 31 * Purpose: Satellite observations … … 57 57 // Constructor 58 58 //////////////////////////////////////////////////////////////////////////// 59 t_ satObs::t_satObs(const t_pppSatObs& pppSatObs) {59 t_pppSatObs::t_pppSatObs(const t_satObs& pppSatObs) { 60 60 _prn = pppSatObs._prn; 61 61 _time = pppSatObs._time; 62 62 _outlier = false; 63 63 for (unsigned ii = 0; ii < pppSatObs._obs.size(); ii++) { 64 const t_ pppObs* obs = pppSatObs._obs[ii];64 const t_frqObs* obs = pppSatObs._obs[ii]; 65 65 t_obsType obsType = string(obs->_rnxType2ch).substr(0,2); 66 _allObs[obsType] = new t_ pppObs(*obs);66 _allObs[obsType] = new t_frqObs(*obs); 67 67 } 68 68 prepareObs(); … … 71 71 // Destructor 72 72 //////////////////////////////////////////////////////////////////////////// 73 t_ satObs::~t_satObs() {74 map<t_obsType, t_ pppObs*>::const_iterator it;73 t_pppSatObs::~t_pppSatObs() { 74 map<t_obsType, t_frqObs*>::const_iterator it; 75 75 for (it = _allObs.begin(); it != _allObs.end(); it++) { 76 76 delete it->second; … … 80 80 // 81 81 //////////////////////////////////////////////////////////////////////////// 82 void t_ satObs::prepareObs() {82 void t_pppSatObs::prepareObs() { 83 83 _model.reset(); 84 84 _valid = true; … … 95 95 obsType1[1] = preferredAttrib[iPref]; 96 96 if (_validObs1 == 0 && _allObs.find(obsType1) != _allObs.end()) { 97 t_ pppObs* obs = _allObs[obsType1];97 t_frqObs* obs = _allObs[obsType1]; 98 98 if (obs->_codeValid && obs->_phaseValid) { 99 99 _validObs1 = obs; … … 104 104 obsType2[1] = preferredAttrib[iPref]; 105 105 if (_validObs2 == 0 && _allObs.find(obsType2) != _allObs.end()) { 106 t_ pppObs* obs = _allObs[obsType2];106 t_frqObs* obs = _allObs[obsType2]; 107 107 if (obs->_codeValid && obs->_phaseValid) { 108 108 _validObs2 = obs; … … 174 174 // 175 175 //////////////////////////////////////////////////////////////////////////// 176 t_irc t_ satObs::cmpModel(const t_pppStation* station) {176 t_irc t_pppSatObs::cmpModel(const t_pppStation* station) { 177 177 178 178 // Reset all model values … … 301 301 // 302 302 //////////////////////////////////////////////////////////////////////////// 303 void t_ satObs::printModel() const {303 void t_pppSatObs::printModel() const { 304 304 LOG.setf(ios::fixed); 305 305 LOG << "MODEL for Satellite " << _prn.toString() << endl … … 348 348 // 349 349 //////////////////////////////////////////////////////////////////////////// 350 double t_ satObs::obsValue(t_lc::type tLC) const {350 double t_pppSatObs::obsValue(t_lc::type tLC) const { 351 351 352 352 if (!_validObs2 && t_lc::need2ndFreq(tLC)) { … … 359 359 // 360 360 //////////////////////////////////////////////////////////////////////////// 361 double t_ satObs::cmpValueForBanc(t_lc::type tLC) const {361 double t_pppSatObs::cmpValueForBanc(t_lc::type tLC) const { 362 362 return cmpValue(tLC) - _model._rho - _model._sagnac - _model._recClkM; 363 363 } … … 365 365 // 366 366 //////////////////////////////////////////////////////////////////////////// 367 double t_ satObs::cmpValue(t_lc::type tLC) const {367 double t_pppSatObs::cmpValue(t_lc::type tLC) const { 368 368 369 369 if (!_validObs2 && t_lc::need2ndFreq(tLC)) { … … 389 389 // 390 390 //////////////////////////////////////////////////////////////////////////// 391 double t_ satObs::lc(t_lc::type tLC,391 double t_pppSatObs::lc(t_lc::type tLC, 392 392 double L1, double L2, double C1, double C2, 393 393 ColumnVector* coeff) const { … … 458 458 // 459 459 //////////////////////////////////////////////////////////////////////////// 460 t_irc t_ satObs::createDifference(const t_satObs* obsBase) {460 t_irc t_pppSatObs::createDifference(const t_pppSatObs* obsBase) { 461 461 462 462 _rawC1 -= obsBase->_rawC1; … … 484 484 // 485 485 //////////////////////////////////////////////////////////////////////////// 486 double t_ satObs::lambda(t_lc::type tLC) const {486 double t_pppSatObs::lambda(t_lc::type tLC) const { 487 487 488 488 if (tLC == t_lc::l1) { … … 507 507 // 508 508 //////////////////////////////////////////////////////////////////////////// 509 double t_ satObs::sigma(t_lc::type tLC) const {509 double t_pppSatObs::sigma(t_lc::type tLC) const { 510 510 511 511 ColumnVector sig(4); … … 535 535 // 536 536 //////////////////////////////////////////////////////////////////////////// 537 void t_ satObs::setRes(t_lc::type tLC, double res) {537 void t_pppSatObs::setRes(t_lc::type tLC, double res) { 538 538 _res[tLC] = res; 539 539 } … … 541 541 // 542 542 //////////////////////////////////////////////////////////////////////////// 543 double t_ satObs::getRes(t_lc::type tLC) const {543 double t_pppSatObs::getRes(t_lc::type tLC) const { 544 544 map<t_lc::type, double>::const_iterator it = _res.find(tLC); 545 545 if (it != _res.end()) { -
trunk/BNC/src/PPP/satobs.h
r5814 r5819 14 14 class t_pppStation; 15 15 16 class t_ satObs {16 class t_pppSatObs { 17 17 public: 18 t_ satObs(const t_pppSatObs& pppSatObs);19 ~t_ satObs();18 t_pppSatObs(const t_satObs& pppSatObs); 19 ~t_pppSatObs(); 20 20 bool isValid() const {return _valid;} 21 21 void prepareObs(); … … 32 32 bool modelSet() const {return _model._set;} 33 33 void printModel() const; 34 t_irc createDifference(const t_ satObs* obsBase);34 t_irc createDifference(const t_pppSatObs* obsBase); 35 35 double lc(t_lc::type tLC, double L1, double L2, 36 36 double C1, double C2, ColumnVector* coeff = 0) const; … … 44 44 45 45 bool slip() const { 46 std::map<t_obsType, t_ pppObs*>::const_iterator it;46 std::map<t_obsType, t_frqObs*>::const_iterator it; 47 47 for (it = _allObs.begin(); it != _allObs.end(); it++) { 48 48 if (it->second->_slip) { … … 55 55 int slipCounter() const { 56 56 int cnt = -1; 57 std::map<t_obsType, t_ pppObs*>::const_iterator it;57 std::map<t_obsType, t_frqObs*>::const_iterator it; 58 58 for (it = _allObs.begin(); it != _allObs.end(); it++) { 59 59 if (it->second->_slipCounter > cnt) { … … 66 66 int biasJumpCounter() const { 67 67 int jmp = -1; 68 std::map<t_obsType, t_ pppObs*>::const_iterator it;68 std::map<t_obsType, t_frqObs*>::const_iterator it; 69 69 for (it = _allObs.begin(); it != _allObs.end(); it++) { 70 70 if (it->second->_biasJumpCounter > jmp) { … … 121 121 bncTime _time; 122 122 int _channel; 123 std::map<t_obsType, t_ pppObs*> _allObs;123 std::map<t_obsType, t_frqObs*> _allObs; 124 124 bool _valid; 125 t_ pppObs* _validObs1;126 t_ pppObs* _validObs2;125 t_frqObs* _validObs1; 126 t_frqObs* _validObs2; 127 127 double _f1; 128 128 double _f2;
Note:
See TracChangeset
for help on using the changeset viewer.