Changeset 366 in ntrip for trunk/BNC/RTCM


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

* empty log message *

Location:
trunk/BNC/RTCM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM/GPSDecoder.h

    r341 r366  
    4040    GPSWeeks  = 0.0;
    4141    C1        = 0.0;
     42    C2        = 0.0;
    4243    P1        = 0.0;
    4344    P2        = 0.0;
     
    5556  double GPSWeeks;    // Second of Week (GPS-Time)
    5657  double C1;          // CA-code pseudorange (meters)
     58  double C2;          // CA-code pseudorange (meters)
    5759  double P1;          // P1-code pseudorange (meters)
    5860  double P2;          // P2-code pseudorange (meters)
  • 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.