Changeset 366 in ntrip for trunk/BNC/RTCM
- Timestamp:
- Jan 17, 2007, 4:17:20 PM (18 years ago)
- Location:
- trunk/BNC/RTCM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/GPSDecoder.h
r341 r366 40 40 GPSWeeks = 0.0; 41 41 C1 = 0.0; 42 C2 = 0.0; 42 43 P1 = 0.0; 43 44 P2 = 0.0; … … 55 56 double GPSWeeks; // Second of Week (GPS-Time) 56 57 double C1; // CA-code pseudorange (meters) 58 double C2; // CA-code pseudorange (meters) 57 59 double P1; // P1-code pseudorange (meters) 58 60 double P2; // P2-code pseudorange (meters) -
trunk/BNC/RTCM/RTCM2.cpp
r361 r366 880 880 t = 0.6*P.modZCount() 881 881 + P.getUnsignedBits(4,20)*1.0e-6; 882 // Round t to 5 milliseconds 883 t = floor(t*200.+0.5)/200.; // g. weber 882 // SC-104 V2.3 4-42 Note 1 4. Assume measurements at hard edges 883 // of receiver clock with minimum divisions of 10ms 884 // and clock error less then recommended 1.1ms 885 t = floor(t*100.+0.5)/100.; 884 886 885 887 // Frequency (exit if neither L1 nor L2) … … 971 973 t = 0.6*P.modZCount() 972 974 + P.getUnsignedBits(4,20)*1.0e-6; 973 // Round t to 5 milliseconds 974 t = floor(t*200.+0.5)/200.; // g. weber 975 // SC-104 V2.3 4-42 Note 1 4. Assume measurements at hard edges 976 // of receiver clock with minimum divisions of 10ms 977 // and clock error less then recommended 1.1ms 978 t = floor(t*100.+0.5)/100.; 975 979 976 980 // Frequency (exit if neither L1 nor L2)
Note:
See TracChangeset
for help on using the changeset viewer.