Changeset 2849 in ntrip for trunk/rtcm3torinex
- Timestamp:
- Jan 17, 2011, 2:40:00 PM (14 years ago)
- Location:
- trunk/rtcm3torinex/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtcm3torinex/lib/rtcm3torinex.c
r2845 r2849 1330 1330 if(dop[count] > -1.6384) 1331 1331 { 1332 gnss->measdata[num][cd.typeD] = dop[count]+rdop[numsat]; 1332 gnss->measdata[num][cd.typeD] = (dop[count] 1333 +rdop[numsat])/wl; 1333 1334 gnss->dataflags[num] |= (1<<cd.typeD); 1334 1335 } … … 1342 1343 } 1343 1344 1344 if(wl && cp[count] > -20 55.0)1345 if(wl && cp[count] > -2048.0) 1345 1346 { 1346 1347 gnss->measdata[num][cd.typeP] = cp[count] … … 1365 1366 } 1366 1367 1367 if(wl && cp[count] > -20 55.0)1368 if(wl && cp[count] > -2048.0) 1368 1369 { 1369 1370 gnss->measdata[num][cd.typeP] = cp[count] … … 1382 1383 if(dop[count] > -1.6384) 1383 1384 { 1384 gnss->measdata[num][cd.typeD] = dop[count]+rdop[numsat]; 1385 gnss->measdata[num][cd.typeD] = (dop[count] 1386 +rdop[numsat])/wl; 1385 1387 gnss->dataflags[num] |= (1<<cd.typeD); 1386 1388 } -
trunk/rtcm3torinex/lib/rtcm3torinex.h
r2845 r2849 43 43 #define PRN_GLONASS_NUM (PRN_GLONASS_END-PRN_GLONASS_START+1) 44 44 45 #define RTCM3_MSM_NUMSIG 2446 #define RTCM3_MSM_NUMSAT 4045 #define RTCM3_MSM_NUMSIG 32 46 #define RTCM3_MSM_NUMSAT 64 47 47 #define RTCM3_MSM_NUMCELLS 64 48 48
Note:
See TracChangeset
for help on using the changeset viewer.