Changeset 2271 in ntrip
- Timestamp:
- Jan 19, 2010, 4:58:43 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r2267 r2271 154 154 _estTropo = true; 155 155 } 156 _oldAprTrop = 0.0; 156 157 157 158 _xcBanc.ReSize(4); _xcBanc = 0.0; … … 307 308 iGlo.remove(); 308 309 } 310 } 311 312 // Tropospheric Delay 313 // ------------------ 314 if (_estTropo) { 315 double newAprTrop = delay_saast(M_PI/2.0); 316 if (_oldAprTrop != 0.0) { 317 for (int ii = 0; ii < _params.size(); ++ii) { 318 bncParam* pp = _params[ii]; 319 if (pp->type == bncParam::TROPO) { 320 pp->xx += _oldAprTrop - newAprTrop; 321 } 322 } 323 } 324 _oldAprTrop = newAprTrop; 309 325 } 310 326 -
trunk/BNC/bncmodel.h
r2265 r2271 101 101 QTextStream* _nmeaStream; 102 102 bool _useGlonass; 103 double _oldAprTrop; 103 104 }; 104 105
Note:
See TracChangeset
for help on using the changeset viewer.