Changeset 2027 in ntrip
- Timestamp:
- Nov 26, 2009, 10:15:00 AM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnc.pro
r2018 r2027 36 36 bncnetqueryrtp.h bncsettings.h latencychecker.h \ 37 37 bncipport.h bncnetqueryv0.h bncnetqueryudp.h \ 38 bncnetqueryudp0.h bncudpport.h 38 bncnetqueryudp0.h bncudpport.h t_time.h \ 39 39 bncserialport.h bncnetquerys.h bncfigure.h \ 40 40 bncfigurelate.h bncpppthread.h bncversion.h \ … … 65 65 bncnetqueryudp0.cpp bncudpport.cpp \ 66 66 bncserialport.cpp bncnetquerys.cpp bncfigure.cpp \ 67 bncfigurelate.cpp bncpppthread.cpp 67 bncfigurelate.cpp bncpppthread.cpp t_time.cpp \ 68 68 RTCM/RTCM2.cpp RTCM/RTCM2Decoder.cpp \ 69 69 RTCM/RTCM2_2021.cpp RTCM/rtcm_utils.cpp \ -
trunk/BNC/bncpppthread.cpp
r2026 r2027 179 179 } 180 180 181 // Satellite Position 182 //////////////////////////////////////////////////////////////////////////// 183 t_irc bncPPPthread::getSatPos(const QString& prn, 184 ColumnVector& xc, ColumnVector& vv) { 185 186 187 } 188 181 189 // 182 190 //////////////////////////////////////////////////////////////////////////// … … 189 197 190 198 for (int is = 1; is <= _data->numSat; is++) { 191 cout << is << " " << _data->prn[is].toAscii().data() << " " 192 << _data->C1[is] << " " << _data->P1[is] << endl; 199 QString prn = _data->prn[is]; 200 201 ColumnVector xc(4); 202 ColumnVector vv(3); 203 204 if (getSatPos(prn, xc, vv) == success) { 205 206 } 193 207 } 194 208 … … 199 213 _data = 0; 200 214 } 215 -
trunk/BNC/bncpppthread.h
r2025 r2027 29 29 #include <QtNetwork> 30 30 31 #include <newmat.h> 32 33 #include "bncconst.h" 31 34 #include "RTCM/GPSDecoder.h" 32 35 #include "RTCM3/ephemeris.h" … … 83 86 84 87 private: 88 t_irc getSatPos(const QString& prn, ColumnVector& xc, ColumnVector& vv); 85 89 void processEpoch(); 86 90 QByteArray _staID;
Note:
See TracChangeset
for help on using the changeset viewer.