-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGpsPath.h
46 lines (38 loc) · 1016 Bytes
/
GpsPath.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef GPSPATH_H
#define GPSPATH_H
#include <vector>
#include <math.h>
#include "Random.h"
using namespace std;
class GpsPath
{
public:
GpsPath();
GpsPath(int seed);
virtual ~GpsPath();
void CreatePath();
void SimulateGPS();
int GetPosOverSampling(){return positionOverSampling;}
vector<double> Ideal_Time;
vector<double> Ideal_X;
vector<double> Ideal_Y;
vector<double> idealVX;
vector<double> idealVY;
vector<double> Meas_Time;
vector<double> Meas_X;
vector<double> Meas_Y;
vector<double> Meas_VX;
vector<double> Meas_VY;
vector<double> Meas_AX;
vector<double> Meas_AY;
protected:
private:
double GPS_Position1Sigma;
double GPS_Velocity1Sigma;
double Accelerometer_1Sigma;
double GPS_MeasurementHz;
double AmountInFront;
int RandomSeed;
int positionOverSampling;
};
#endif // GPSPATH_H