Changeset 5815 in ntrip
- Timestamp:
- Aug 6, 2014, 12:06:58 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncantex.cpp
r5805 r5815 45 45 #include "PPP/pppModel.h" 46 46 47 using namespace BNC;48 47 using namespace std; 49 48 … … 237 236 sz /= sqrt(DotProduct(sz,sz)); 238 237 239 ColumnVector xSun = t_astro::Sun(Mjd);238 ColumnVector xSun = BNC_PPP::t_astro::Sun(Mjd); 240 239 xSun /= sqrt(DotProduct(xSun,xSun)); 241 240 … … 284 283 // 285 284 //////////////////////////////////////////////////////////////////////////// 286 double bncAntex::rcvCorr(BNC ::t_frequency::type /* frqType */, const std::string& antName,285 double bncAntex::rcvCorr(BNC_PPP::t_frequency::type /* frqType */, const std::string& antName, 287 286 double eleSat, bool& found) const { 288 287 return pco(QString(antName.c_str()), eleSat, found); -
trunk/BNC/src/bncantex.h
r5813 r5815 41 41 void print() const; 42 42 double pco(const QString& antName, double eleSat, bool& found) const; 43 double rcvCorr(BNC ::t_frequency::type frqType, const std::string& antName,43 double rcvCorr(BNC_PPP::t_frequency::type frqType, const std::string& antName, 44 44 double eleSat, bool& found) const; 45 45 t_irc satCoMcorrection(const QString& prn, double Mjd, -
trunk/BNC/src/bncmodel.cpp
r5808 r5815 54 54 #include "pppopt.h" 55 55 56 using namespace BNC;57 56 using namespace std; 58 57 … … 188 187 } 189 188 190 _tides = new t_tides;189 _tides = new BNC_PPP::t_tides; 191 190 192 191 // Bancroft Coordinates … … 346 345 satData->rho = (satData->xx - xRec).norm_Frobenius(); 347 346 348 double tropDelay = t_tropo::delay_saast(xRec, satData->eleSat) +347 double tropDelay = BNC_PPP::t_tropo::delay_saast(xRec, satData->eleSat) + 349 348 trp() / sin(satData->eleSat); 350 349 … … 613 612 else if (par->type == bncParam::TROPO) { 614 613 ColumnVector xyz(3); xyz(1) = x(); xyz(2) = y(); xyz(3) = z(); 615 double aprTrp = t_tropo::delay_saast(xyz, M_PI/2.0);614 double aprTrp = BNC_PPP::t_tropo::delay_saast(xyz, M_PI/2.0); 616 615 strB << "\n trp = " << par->prn.toAscii().data() 617 616 << setw(7) << setprecision(3) << aprTrp << " " … … 894 893 ColumnVector sz = -rSat / rSat.norm_Frobenius(); 895 894 896 ColumnVector xSun = t_astro::Sun(Mjd);895 ColumnVector xSun = BNC_PPP::t_astro::Sun(Mjd); 897 896 xSun /= xSun.norm_Frobenius(); 898 897 -
trunk/BNC/src/bncmodel.h
r5808 r5815 38 38 class t_pppOpt; 39 39 class bncPPPclient; 40 namespace BNC {40 namespace BNC_PPP { 41 41 class t_tides; 42 42 } … … 161 161 QStringList _outlierGlo; 162 162 bncAntex* _antex; 163 BNC ::t_tides*_tides;163 BNC_PPP::t_tides* _tides; 164 164 }; 165 165 -
trunk/BNC/src/bncwindow.cpp
r5729 r5815 75 75 #include "PPP/pppMain.h" 76 76 77 using namespace BNC;78 77 using namespace std; 79 78 … … 100 99 _runningPostProcessingReqc = false; 101 100 _postProcessing = 0; 102 _pppMain = new t_pppMain();101 _pppMain = new BNC_PPP::t_pppMain(); 103 102 104 103 _pppSPPComboBox = 0; // necessary for enableStartStop() -
trunk/BNC/src/bncwindow.h
r5813 r5815 57 57 class t_postProcessing; 58 58 59 namespace BNC {59 namespace BNC_PPP { 60 60 class t_pppMain; 61 61 } … … 278 278 279 279 t_pppWidgets _pppWidgets; 280 BNC ::t_pppMain*_pppMain;280 BNC_PPP::t_pppMain* _pppMain; 281 281 }; 282 282 -
trunk/BNC/src/ephemeris.cpp
r5813 r5815 14 14 #include "PPP/pppInclude.h" 15 15 16 using namespace BNC;17 16 using namespace std; 18 17 … … 44 43 // 45 44 //////////////////////////////////////////////////////////////////////////// 46 void t_eph::setOrbCorr(const BNC ::t_orbCorr* orbCorr) {45 void t_eph::setOrbCorr(const BNC_PPP::t_orbCorr* orbCorr) { 47 46 delete _orbCorr; 48 _orbCorr = new t_orbCorr(*orbCorr);47 _orbCorr = new BNC_PPP::t_orbCorr(*orbCorr); 49 48 } 50 49 51 50 // 52 51 //////////////////////////////////////////////////////////////////////////// 53 void t_eph::setClkCorr(const BNC ::t_clkCorr* clkCorr) {52 void t_eph::setClkCorr(const BNC_PPP::t_clkCorr* clkCorr) { 54 53 delete _clkCorr; 55 _clkCorr = new t_clkCorr(*clkCorr);54 _clkCorr = new BNC_PPP::t_clkCorr(*clkCorr); 56 55 } 57 56 -
trunk/BNC/src/ephemeris.h
r5789 r5815 13 13 } 14 14 15 namespace BNC {15 namespace BNC_PPP { 16 16 class t_orbCorr; 17 17 class t_clkCorr; … … 59 59 t_irc getCrd(const bncTime& tt, ColumnVector& xc, 60 60 ColumnVector& vv, bool useCorr) const; 61 void setOrbCorr(const BNC ::t_orbCorr* orbCorr);62 void setClkCorr(const BNC ::t_clkCorr* clkCorr);61 void setOrbCorr(const BNC_PPP::t_orbCorr* orbCorr); 62 void setClkCorr(const BNC_PPP::t_clkCorr* clkCorr); 63 63 virtual int slotNum() const {return 0;} 64 64 … … 74 74 QDateTime _receptDateTime; 75 75 bool _ok; 76 BNC ::t_orbCorr* _orbCorr;77 BNC ::t_clkCorr* _clkCorr;76 BNC_PPP::t_orbCorr* _orbCorr; 77 BNC_PPP::t_clkCorr* _clkCorr; 78 78 }; 79 79
Note:
See TracChangeset
for help on using the changeset viewer.