Changeset 7928 in ntrip for trunk/BNC/src/PPP/pppFilter.cpp


Ignore:
Timestamp:
May 30, 2016, 11:30:28 AM (8 years ago)
Author:
stuerze
Message:

hDOP und vDOP values are added in DOP computation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppFilter.cpp

    r7837 r7928  
    409409    SymmetricMatrix QQ = NN.i();
    410410
     411    _dop.H = sqrt(QQ(1,1) + QQ(2,2));
     412    _dop.V = sqrt(QQ(3,3));
    411413    _dop.P = sqrt(QQ(1,1) + QQ(2,2) + QQ(3,3));
    412414    _dop.T = sqrt(QQ(4,4));
Note: See TracChangeset for help on using the changeset viewer.