Changeset 1838 in ntrip
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNS/bns.cpp ¶
r1803 r1838 24 24 #include "bnssp3.h" 25 25 #include "bnssettings.h" 26 extern "C" { 27 #include "RTCM/rtcm3torinex.h" 28 } 26 29 27 30 using namespace std; 31 32 // Error Handling 33 //////////////////////////////////////////////////////////////////////////// 34 void RTCM3Error(const char*, ...) { 35 } 28 36 29 37 // Constructor … … 381 389 memset(&co, 0, sizeof(co)); 382 390 co.GPSEpochTime = (int)GPSweeks; 383 co.GLONASSEpochTime = (int)fmod(GPSweeks, 86400.0); 391 co.GLONASSEpochTime = (int)fmod(GPSweeks, 86400.0) 392 + 3 * 3600 - gnumleap(year, month, day); 384 393 co.ClockDataSupplied = 1; 385 394 co.OrbitDataSupplied = 1; -
TabularUnified trunk/BNS/bns.pro ¶
r1823 r1838 5 5 #CONFIG += debug 6 6 7 DEFINES += NO_RTCM3_MAIN 7 8 RESOURCES += bns.qrc 8 9 … … 32 33 bnseph.h bnsutils.h bnsrinex.h bnssp3.h bnsoutf.h \ 33 34 bnscaster.h RTCM/clock_orbit_rtcm.h bnssettings.h bnsapp.h \ 34 bnscustomtrafo.h 35 bnscustomtrafo.h RTCM/rtcm3torinex.h 35 36 36 37 HEADERS += newmat/controlw.h newmat/include.h newmat/myexcept.h \ … … 41 42 bnseph.cpp bnsutils.cpp bnsrinex.cpp bnssp3.cpp bnsoutf.cpp \ 42 43 bnscaster.cpp bnssettings.cpp bnsapp.cpp bnscustomtrafo.cpp \ 43 RTCM/clock_orbit_rtcm.c 44 RTCM/clock_orbit_rtcm.c RTCM/rtcm3torinex.c 44 45 45 46 SOURCES += newmat/bandmat.cpp newmat/cholesky.cpp newmat/evalue.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.