Changeset 9807 in ntrip
- Timestamp:
- Aug 23, 2022, 2:08:11 PM (2 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/Example_Configs/12_PPPOsm.bnc
r9791 r9807 29 29 ephVersion=4 30 30 font= 31 logFile=Output/PPP _OSM.log31 logFile=Output/PPPOsm.log 32 32 miscIntr= 33 33 miscMount= … … 106 106 sp3CompOutLogFile= 107 107 sslCaCertPath= 108 sslClientCertPath= 108 109 sslIgnoreErrors=2 109 110 startTab=14 -
trunk/BNC/src/PPP/pppSatObs.cpp
r9669 r9807 471 471 if (OPT->_isAPC && found) { 472 472 // the PCOs as given in the satellite antenna correction for all frequencies 473 // have to be reduced by the PCO of the re ference frequency473 // have to be reduced by the PCO of the respective reference frequency 474 474 if (_prn.system() == 'G') { 475 475 _model._antPCO[ii] -= PPP_CLIENT->antex()->satCorr(prn, t_frequency::G1, _model._elTx, _model._azTx, found); -
trunk/BNC/src/map/bncmapwin.cpp
r9802 r9807 47 47 bncMapWin::bncMapWin(QWidget* parent) : QDialog(parent) { 48 48 49 _initMap = false; 50 49 51 const int ww = QFontMetrics(font()).width('w'); 50 52 … … 84 86 85 87 show(); 88 86 89 } 87 90 … … 114 117 return; 115 118 } 119 _initMap = true; 120 116 121 bncSettings settings; 117 122 int mapWinDotSize = settings.value("PPP/mapWinDotSize").toInt(); … … 127 132 //////////////////////////////////////////////////////////////////////////// 128 133 void bncMapWin::gotoLocation(double lat, double lon) { 134 if (!lat && !lon) { 135 return; 136 } 129 137 _currLat = lat; 130 138 _currLon = lon; 131 132 if (!_webView->page()) {133 return;134 }135 139 136 140 int latDeg, latMin; … … 157 161 return; 158 162 } 159 163 if (!_initMap) { 164 return; 165 } 160 166 double ell[3]; 161 xyz2ell(xx.data(), ell); 167 if (xyz2ell(xx.data(), ell) == failure) { 168 return; 169 } 162 170 gotoLocation(ell[0]*180.0/M_PI, ell[1]*180.0/M_PI); 163 171 } -
trunk/BNC/src/map/bncmapwin.h
r8909 r9807 62 62 double _currLon; 63 63 QByteArray _staID; 64 bool _initMap; 64 65 }; 65 66
Note:
See TracChangeset
for help on using the changeset viewer.