资源简介

从包含有GPGGA的GPS数据流中提取GPGGA数据,并且计算固定解时的1,2,3倍标准差,提高数据处理效率

资源截图

代码片段和文件信息

// file_path_test.cpp : Defines the entry point for the console application.
//

//#include “stdafx.h“
#include 
using namespace std;
#include 
int main(int argc char* argv[])
{
while(1)
{
locale::global(locale(““));//将全局区域设为操作系统默认区域
char dbFileName[128]={0};
printf(“请输入文件路径及名称\n“);
FILE *pread=NULL;
gets(dbFileName);
printf(“%s“dbFileName);
char *temp =dbFileName;
if (*temp==‘“‘)
{
int n=strlen(dbFileName);
dbFileName[n-1]=‘\0‘;
temp++;
pread=fopen(temp“r“);
// cout<
}
else
pread=fopen(dbFileName“r“);

locale::global(locale(“C“));//还原全局区域设定
if (pread!=NULL)
printf(“文件打开成功!!!\n“);
else
printf(“文件打开失败,请检查路径名,不能有空格!!!\n“);

}
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     520253  2014-03-24 23:25  stdev_calc_fixed\Debug\file_path_test.exe

     文件     757224  2014-03-24 23:25  stdev_calc_fixed\Debug\file_path_test.ilk

     文件      17015  2014-03-24 23:25  stdev_calc_fixed\Debug\file_path_test.obj

     文件    2013088  2014-03-24 23:25  stdev_calc_fixed\Debug\file_path_test.pch

     文件    1082368  2014-03-24 23:25  stdev_calc_fixed\Debug\file_path_test.pdb

     文件     602169  2014-06-10 18:33  stdev_calc_fixed\Debug\test.exe

     文件     835168  2014-06-10 18:33  stdev_calc_fixed\Debug\test.ilk

     文件     213558  2014-06-10 18:32  stdev_calc_fixed\Debug\test.obj

     文件    2944232  2014-06-10 18:32  stdev_calc_fixed\Debug\test.pch

     文件    1164288  2014-06-10 18:33  stdev_calc_fixed\Debug\test.pdb

     文件      91136  2014-06-10 18:32  stdev_calc_fixed\Debug\vc60.idb

     文件     126976  2014-06-10 18:26  stdev_calc_fixed\Debug\vc60.pdb

     文件        817  2014-03-24 23:25  stdev_calc_fixed\file_path_test.cpp

     文件       3497  2014-03-24 23:25  stdev_calc_fixed\file_path_test.dsp

     文件        551  2014-03-24 23:26  stdev_calc_fixed\file_path_test.dsw

     文件      33792  2014-03-24 23:26  stdev_calc_fixed\file_path_test.ncb

     文件      48640  2014-03-24 23:26  stdev_calc_fixed\file_path_test.opt

     文件       1199  2014-03-24 23:25  stdev_calc_fixed\file_path_test.plg

     文件       7148  2014-06-10 18:33  stdev_calc_fixed\test.cpp

     文件       3377  2014-03-24 23:26  stdev_calc_fixed\test.dsp

     文件        531  2014-03-24 23:32  stdev_calc_fixed\test.dsw

     文件      50176  2014-06-10 18:33  stdev_calc_fixed\test.ncb

     文件      54784  2014-06-10 18:33  stdev_calc_fixed\test.opt

     文件       1125  2014-06-10 18:26  stdev_calc_fixed\test.plg

     目录          0  2014-06-10 18:33  stdev_calc_fixed\Debug

     目录          0  2014-06-19 15:57  stdev_calc_fixed

----------- ---------  ---------- -----  ----

             10573112                    26


评论

共有 条评论