Changeset 529 in ntrip
- Timestamp:
- Oct 18, 2007, 3:43:24 PM (17 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/rtcm3torinex.c
r523 r529 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.c,v 1. 5 2007/10/17 06:12:00mervart Exp $3 $Id: rtcm3torinex.c,v 1.6 2007/10/18 13:11:12 mervart Exp $ 4 4 Copyright (C) 2005-2006 by Dirk Stoecker <stoecker@alberding.eu> 5 5 … … 51 51 52 52 /* CVS revision and version */ 53 static char revisionstr[] = "$Revision: 1. 5$";53 static char revisionstr[] = "$Revision: 1.6 $"; 54 54 55 55 #ifndef COMPILEDATE … … 814 814 } 815 815 816 staticint HandleRunBy(char *buffer, int buffersize, const char **u,816 int HandleRunBy(char *buffer, int buffersize, const char **u, 817 817 int rinex3) 818 818 { … … 1534 1534 1535 1535 #ifndef NO_RTCM3_MAIN 1536 static char datestr[] = "$Date: 2007/10/1 7 06:12:00$";1536 static char datestr[] = "$Date: 2007/10/18 13:11:12 $"; 1537 1537 1538 1538 /* The string, which is send as agent in HTTP request */ -
trunk/BNC/bncapp.cpp
r528 r529 48 48 49 49 using namespace std; 50 51 const int RINEX_3 = 1; 50 52 51 53 struct converttimeinfo { … … 61 63 void converttime(struct converttimeinfo *c, int week, int tow); 62 64 void updatetime(int *week, int *tow, int tk, int fixnumleap); 65 int HandleRunBy(char *buffer, int buffersize, const char **u, int rinex3); 63 66 } 64 67 … … 198 201 *_ephStream << line; 199 202 203 char buffer[100]; 204 HandleRunBy(buffer, sizeof(buffer), 0, RINEX_3); 205 line.sprintf("%s\n%60sEND OF HEADER\n", buffer, ""); 206 *_ephStream << line; 207 200 208 line.sprintf("%s\n%60sEND OF HEADER\n", "bnc", ""); 201 209 *_ephStream << line; … … 205 213 } 206 214 207 const int RINEX_3 = 1;208 215 209 216 //
Note:
See TracChangeset
for help on using the changeset viewer.