Changeset 2287 in ntrip
- Timestamp:
- Feb 9, 2010, 5:09:49 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r2286 r2287 54 54 55 55 const unsigned MINOBS = 4; 56 const double MINELE = 10.0 * M_PI / 180.0; 56 const double MINELE_GPS = 10.0 * M_PI / 180.0; 57 const double MINELE_GLO = 10.0 * M_PI / 180.0; 57 58 const double MAXRES_CODE_GPS = 10.0; 58 59 const double MAXRES_PHASE_GPS = 0.10; … … 61 62 const double sig_crd_p = 100.0; 62 63 const double sig_clk_0 = 1000.0; 63 const double sig_trp_0 = 0.0 5;64 const double sig_trp_0 = 0.01; 64 65 const double sig_trp_p = 1e-7; 65 66 const double sig_amb_0_GPS = 100.0; … … 279 280 satData->azSat = atan2(neu[1], neu[0]); 280 281 281 if (satData->eleSat < MINELE ) {282 if (satData->eleSat < MINELE_GPS) { 282 283 delete satData; 283 284 iGPS.remove(); … … 303 304 satData->azSat = atan2(neu[1], neu[0]); 304 305 305 if (satData->eleSat < MINELE ) {306 if (satData->eleSat < MINELE_GLO) { 306 307 delete satData; 307 308 iGlo.remove();
Note:
See TracChangeset
for help on using the changeset viewer.