Changeset 366 in ntrip for trunk/BNC/RTCM/RTCM2.cpp


Ignore:
Timestamp:
Jan 17, 2007, 4:17:20 PM (17 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM/RTCM2.cpp

    r361 r366  
    880880    t = 0.6*P.modZCount()
    881881        + 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.;
    884886   
    885887    // Frequency (exit if neither L1 nor L2)
     
    971973    t = 0.6*P.modZCount()
    972974        + 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.;
    975979   
    976980    // Frequency (exit if neither L1 nor L2)
Note: See TracChangeset for help on using the changeset viewer.