result.h

来自「能实现GPS伪距单点定位」· C头文件 代码 · 共 30 行

H
30
字号
//Result.h
/*
This file defined the struct of the result.
*/
#ifndef RESULT_H

#define RESULT_H

#include "Coor.h"
#include "Time.h"
#include <vector>
using namespace std;

struct OneEpochResult
{
	CTime               epoch;
	int                 satNum;
    CCoor               sitCoor;
	double              receiverClkBias;
	double              unitError;
	double              PDOP;
};

struct Result
{
	int                    epochNum;
	vector<OneEpochResult> oneResult;
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?