Changeset 5802 in ntrip
- Timestamp:
- Aug 6, 2014, 10:35:19 AM (8 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncantex.cpp
r5755 r5802 43 43 44 44 #include "bncantex.h" 45 #include " bnctides.h"45 #include "PPP/pppModel.h" 46 46 47 47 using namespace std; … … 236 236 sz /= sqrt(DotProduct(sz,sz)); 237 237 238 ColumnVector xSun = Sun(Mjd);238 ColumnVector xSun = t_astro::Sun(Mjd); 239 239 xSun /= sqrt(DotProduct(xSun,xSun)); 240 240 -
trunk/BNC/src/bncmodel.cpp
r5794 r5802 50 50 #include "bancroft.h" 51 51 #include "bncutils.h" 52 #include " bnctides.h"52 #include "PPP/pppModel.h" 53 53 #include "bncantex.h" 54 54 #include "pppopt.h" … … 187 187 } 188 188 189 _tides = new t_tides; 190 189 191 // Bancroft Coordinates 190 192 // -------------------- … … 213 215 } 214 216 delete _epoData_sav; 217 delete _tides; 215 218 } 216 219 … … 338 341 xRec(3) = z(); 339 342 340 tides(_time, xRec);343 xRec += _tides->displacement(_time, xRec); 341 344 342 345 satData->rho = (satData->xx - xRec).norm_Frobenius(); … … 980 983 ColumnVector sz = -rSat / rSat.norm_Frobenius(); 981 984 982 ColumnVector xSun = Sun(Mjd);985 ColumnVector xSun = t_astro::Sun(Mjd); 983 986 xSun /= xSun.norm_Frobenius(); 984 987 -
trunk/BNC/src/bncmodel.h
r5750 r5802 38 38 class t_pppOpt; 39 39 class bncPPPclient; 40 class t_tides; 40 41 41 42 class bncParam { … … 164 165 QStringList _outlierGlo; 165 166 bncAntex* _antex; 167 t_tides* _tides; 166 168 }; 167 169
Note:
See TracChangeset
for help on using the changeset viewer.