Changeset 2420 in ntrip for trunk/BNS/bns.cpp
- Timestamp:
- Apr 14, 2010, 12:36:56 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.cpp
r2419 r2420 420 420 >> xx(6) >> xx(7) >> xx(8) >> xx(9) >> xx(10) 421 421 >> xx(11) >> xx(12) >> xx(13) >> xx(14); 422 xx(1) *= 1e3; // x-crd 423 xx(2) *= 1e3; // y-crd 424 xx(3) *= 1e3; // z-crd 425 xx(4) *= 1e-6; // clk 426 xx(5) *= 1e-6; // rel. corr. 427 // xx(6), xx(7), xx(8) ... PhaseCent - CoM 428 // xx(9) .. P1-C1 DCB, xx(10) ... P1-P2 DCB 429 // xx(11) ... dT 430 xx(12) *= 1e3; // x-crd at time + dT 431 xx(13) *= 1e3; // y-crd at time + dT 432 xx(14) *= 1e3; // z-crd at time + dT 422 xx(1) *= 1e3; // x-crd 423 xx(2) *= 1e3; // y-crd 424 xx(3) *= 1e3; // z-crd 425 xx(4) *= 1e-6; // clk 426 xx(5) *= 1e-6; // rel. corr. 427 // xx(6), xx(7), xx(8) ... PhaseCent - CoM 428 xx(9) /= 0.299792458; // xx(9) ... P1-C1 DCB in ns 429 xx(10) /= 0.299792458; // xx(10) ... P1-P2 DCB in ns 430 // xx(11) ... dT 431 xx(12) *= 1e3; // x-crd at time + dT 432 xx(13) *= 1e3; // y-crd at time + dT 433 xx(14) *= 1e3; // z-crd at time + dT 433 434 434 435 t_ephPair* pair = _ephList[prn]; … … 494 495 biasSat->Biases[0].Bias = 0.0; 495 496 biasSat->Biases[1].Type = CODETYPEGPS_L1_CA; 496 biasSat->Biases[1].Bias = xx(9) / 0.299792458; // IGS P1C1 DCB497 biasSat->Biases[1].Bias = xx(9); 497 498 biasSat->Biases[2].Type = CODETYPEGPS_L2_Z; 498 biasSat->Biases[2].Bias = xx(10) / 0.299792458; // IGS P1P2 DCB499 biasSat->Biases[2].Bias = xx(10); 499 500 } 500 501 else if (prn[0] == 'R') { … … 502 503 biasSat->Biases[0].Bias = 0.0; 503 504 biasSat->Biases[1].Type = CODETYPEGLONASS_L1_CA; 504 biasSat->Biases[1].Bias = xx(9) / 0.299792458; // IGS P1C1 DCB505 biasSat->Biases[1].Bias = xx(9); 505 506 biasSat->Biases[2].Type = CODETYPEGLONASS_L2_P; 506 biasSat->Biases[2].Bias = xx(10) / 0.299792458; // IGS P1P2 DCB507 biasSat->Biases[2].Bias = xx(10); 507 508 } 508 509 }
Note:
See TracChangeset
for help on using the changeset viewer.