diff -uprN orig/rtcm3torinex.c new/rtcm3torinex.c
|
old
|
new
|
int RTCM3Parser(struct RTCM3ParserData *
|
| 335 | 335 | ret = type; |
| 336 | 336 | } |
| 337 | 337 | break; |
| | 338 | case 1013: |
| | 339 | { |
| | 340 | SKIPBITS(12); |
| | 341 | GETBITS(handle->modjulday, 16); |
| | 342 | GETBITS(handle->secofday, 17); |
| | 343 | SKIPBITS(5); |
| | 344 | GETBITS(handle->leapsec, 8); |
| | 345 | ret = 1013; |
| | 346 | } |
| | 347 | break; |
| 338 | 348 | #endif /* NO_RTCM3_MAIN */ |
| 339 | 349 | case 1019: |
| 340 | 350 | { |
diff -uprN orig/rtcm3torinex.h new/rtcm3torinex.h
|
old
|
new
|
struct RTCM3ParserData {
|
| 219 | 219 | double antH; |
| 220 | 220 | char antenna[256+1]; |
| 221 | 221 | int blocktype; |
| | 222 | int modjulday; |
| | 223 | int secofday; |
| | 224 | int leapsec; |
| 222 | 225 | #endif /* NO_RTCM3_MAIN */ |
| 223 | 226 | int datapos[RINEXENTRY_NUMBER]; |
| 224 | 227 | int dataflag[RINEXENTRY_NUMBER]; |