Changeset 10822 in ntrip for trunk/BNC


Ignore:
Timestamp:
Mar 24, 2026, 4:18:36 PM (11 days ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r10820 r10822  
    3030
    3131const double sig0_offAC    = 1000.0;
    32 const double sig0_offACSat =  100.0;
     32const double sigP_offAC    = 1000.0;
     33
     34const double sig0_offACSat = 1000.0;
    3335const double sigP_offACSat =   0.01;
     36
    3437const double sig0_clkSat   =  100.0;
     38const double sigP_clkSat   =   10.0; //*) White noise may be set to something between a few centimeters and tens of meters.
     39                                     // A large value results in a combination that is equivalent to a single-epoch combination algorithm.
    3540
    3641const double sigObs        =   0.05;
     
    5156  if      (type == offACgnss) {
    5257    epoSpec = true;
    53     sig0    = sig0_offAC;
    54     sigP    = sig0;
     58    sig0    = sig0_offAC; // 1000.0
     59    sigP    = sig0;       // 1000.0
    5560  }
    5661  else if (type == offACSat) {
    5762    epoSpec = false;
    58     sig0    = sig0_offACSat;
    59     sigP    = sigP_offACSat;
    60   }
     63    sig0    = sig0_offACSat; // 100.0
     64    sigP    = sigP_offACSat; // 0.01
     65  }
     66  // combined clock
    6167  else if (type == clkSat) {
    6268    epoSpec = true;
    63     sig0    = sig0_clkSat;
    64     sigP    = sig0;
    65   }
     69    sig0    = sig0_clkSat;  // 100.0
     70    sigP    = sigP_clkSat;  // 10.0
     71
     72  }
     73
    6674}
    6775
     
    12241232                  " Clk 1 %15.4f"
    12251233                  " Vel 3 %15.4f %15.4f %15.4f"
    1226                   " CoM 3 %15.4f %15.4f %15.4f"
    1227                   " YawAngle  %1.4f",
     1234                  " CoM 3 %15.4f %15.4f %15.4f",
     1235//                  " YawAngle  %1.4f",
    12281236                  apc(1), apc(2), apc(3),
    12291237                  xc(4) *  t_CST::c,
    12301238                  vv(1), vv(2), vv(3),
    1231                   com(1), com(2), com(3),
    1232                   corr->_satYawAngle);
     1239                  com(1), com(2), com(3)
     1240//                  corr->_satYawAngle
     1241                  );
    12331242    outLines += hlp;
    12341243    hlp.clear();
Note: See TracChangeset for help on using the changeset viewer.