Changeset 2668 in ntrip
- Timestamp:
- Nov 11, 2010, 10:09:55 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtcm3torinex/lib/rtcm3torinex.c
r2660 r2668 955 955 }; 956 956 957 int sys = RTCM3_MSM_GPS, i, count, j, old = 0, was amb = 0;957 int sys = RTCM3_MSM_GPS, i, count, j, old = 0, wasnoamb = 0; 958 958 int syncf, sigmask, numsat = 0, numsig = 0, numcells; 959 959 uint64_t satmask, cellmask, ui; … … 1017 1017 { 1018 1018 case 1: case 2: case 3: 1019 ++was amb;1019 ++wasnoamb; 1020 1020 for(j = numsat; j--;) 1021 1021 GETFLOAT(rrmod[j], 10, 1/1024.0) … … 1184 1184 { 1185 1185 gnss->measdata[num][cd.typeR] = psr[count] 1186 +(rrmod[numsat] +rrint[numsat])*LIGHTSPEED/1000.0;1186 +(rrmod[numsat])*LIGHTSPEED/1000.0; 1187 1187 gnss->dataflags[num] |= (1<<cd.typeR); 1188 1188 } … … 1192 1192 { 1193 1193 gnss->measdata[num][cd.typeP] = cp[count] 1194 +(rrmod[numsat] +rrint[numsat])*LIGHTSPEED/1000.0/wl;1194 +(rrmod[numsat])*LIGHTSPEED/1000.0/wl; 1195 1195 if(handle->lastlockmsm[j][i] != ll[count]) 1196 1196 { … … 1205 1205 { 1206 1206 gnss->measdata[num][cd.typeR] = psr[count] 1207 +(rrmod[numsat] +rrint[numsat])*LIGHTSPEED/1000.0;1207 +(rrmod[numsat])*LIGHTSPEED/1000.0; 1208 1208 gnss->dataflags[num] |= (1<<cd.typeR); 1209 1209 } … … 1337 1337 if(!syncf || old) 1338 1338 { 1339 if( wasamb) /* not RINEX compatible without */1339 if(!wasnoamb) /* not RINEX compatible without */ 1340 1340 ret = 1; 1341 1341 else
Note:
See TracChangeset
for help on using the changeset viewer.