Changeset 498 in ntrip for trunk/rtcm3torinex
- Timestamp:
- Oct 1, 2007, 1:07:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtcm3torinex/rtcm3torinex.c
r479 r498 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.c,v 1.2 0 2007/08/06 07:43:26stoecker Exp $3 $Id: rtcm3torinex.c,v 1.21 2007/08/14 10:14:37 stoecker Exp $ 4 4 Copyright (C) 2005-2006 by Dirk Stoecker <stoecker@euronik.eu> 5 5 … … 51 51 52 52 /* CVS revision and version */ 53 static char revisionstr[] = "$Revision: 1.2 0$";53 static char revisionstr[] = "$Revision: 1.21 $"; 54 54 55 55 #ifndef COMPILEDATE … … 937 937 && Parser->Data.satellites[i] <= PRN_GLONASS_END) 938 938 RTCM3Text("R%02d", Parser->Data.satellites[i] - (PRN_GLONASS_START-1)); 939 else if(Parser->Data.satellites[i] >= PRN_WAAS_START 940 && Parser->Data.satellites[i] <= PRN_WAAS_END) 941 RTCM3Text("S%02d", Parser->Data.satellites[i] - PRN_WAAS_START+20); 939 942 else 940 943 RTCM3Text("%3d", Parser->Data.satellites[i]); … … 955 958 else if(Parser->Data.satellites[i] >= PRN_WAAS_START 956 959 && Parser->Data.satellites[i] <= PRN_WAAS_END) 957 RTCM3Text("S%02d", Parser->Data.satellites[i] - PRN_WAAS_START );960 RTCM3Text("S%02d", Parser->Data.satellites[i] - PRN_WAAS_START+20); 958 961 else 959 962 RTCM3Text("%3d", Parser->Data.satellites[i]); … … 1021 1024 1022 1025 #ifndef NO_RTCM3_MAIN 1023 static char datestr[] = "$Date: 2007/08/ 06 07:43:26$";1026 static char datestr[] = "$Date: 2007/08/14 10:14:37 $"; 1024 1027 1025 1028 /* The string, which is send as agent in HTTP request */
Note:
See TracChangeset
for help on using the changeset viewer.