Changeset 5667 in ntrip for trunk/clock_and_orbit
- Timestamp:
- May 27, 2014, 9:04:24 AM (10 years ago)
- Location:
- trunk/clock_and_orbit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/clock_and_orbit
-
Property svn:ignore
set to
readVtec
readco
*.o
outfile.*
-
Property svn:ignore
set to
-
trunk/clock_and_orbit/readco.c
r5664 r5667 29 29 int main(void) { 30 30 enum COR_SATSYSTEM sys; 31 char* inputFile = "ss 1_cocb_data/CLK801330.14C";31 char* inputFile = "ssr1_cocb_data/CLK801330.14C"; 32 32 for (sys = GPS; sys <= BDS; ++sys) { 33 33 char *outFilenameRaw, *outFilenameDbg; … … 66 66 break; 67 67 } 68 char commandRaw[100], commandDbg[100]; 69 sprintf(commandRaw, "rm %s", outFilenameRaw); system(commandRaw); 70 sprintf(commandDbg, "rm %s", outFilenameDbg); system(commandDbg); 68 unlink(outFilenameRaw); 69 unlink(outFilenameDbg); 71 70 FILE *asciiSsr, *f; 72 71 size_t len = 0; … … 74 73 asciiSsr = fopen(inputFile, "r"); 75 74 if (asciiSsr == NULL) { 76 fprintf(stderr, "ERROR: open file %s\n", inputFile);75 fprintf(stderr, "ERROR: open file %s\n", inputFile); 77 76 return 0; 78 77 } -
trunk/clock_and_orbit/ssr1_cocb_data
-
Property svn:ignore
set to
outfile_*
-
Property svn:ignore
set to
Note:
See TracChangeset
for help on using the changeset viewer.