Map Matching
track.h
Go to the documentation of this file.
1 #ifndef TRACK_H
2 #define TRACK_H
3 
4 #include <QObject>
10 #include "pointGPS.h"
11 
12 #include <QDateTime>
13 #include <QString>
14 #include <QStringList>
15 #include <fstream> // ifstream
16 #include <iostream> // cout
17 #include <sstream>
18 #include <string>
19 #include <vector>
20 
21 #define DISTANCE_THRESHOLD 200
22 
26 class Track : public QObject {
27  Q_OBJECT
28 public:
32  explicit Track();
33 #ifdef QT_DEBUG
34  Track(const Track&);
35 #endif
36  virtual ~Track();
37 
42  void readFromCSV(QString filename);
43 
48  void delPointGPS(int occurrence);
49 
57  void addPoint(double x, double y, float altitude, unsigned int timeStamp);
58 
63  void spaceFilter(double interval);
64 
69  void temporalFilter(uint interval);
70 
76  void updateBox(double x, double y);
77 
81  void applyThresholdToBox();
82 
86  void outputInfos();
87 
91  std::string infos();
92 
97  std::vector<PointGPS*> getPoints();
98 
99  std::vector<PointGPS*>* getPointsAsPointer() { return &m_points; } // TODO const ?
100  int getNoOfPoints() { return m_points.size(); }
101 
102  //TODO protected
107  double m_xMin;
108  double m_xMax;
109  double m_yMin;
110  double m_yMax;
112 
113 signals:
114  void signalMessage(QString);
115 
116 protected:
120  std::vector<PointGPS*> m_points;
121  //Point m_southWest, m_northEst; /**< englobing box*/
122  std::string m_trackFullName;
123 };
124 
125 #endif // TRACK_H
double m_xMin
Definition: track.h:107
void temporalFilter(uint interval)
This is a temporal filter, which deletes points depending on a time value.
Definition: track.cpp:231
void readFromCSV(QString filename)
Reads a csv file and inserts each point in m_points vector.
Definition: track.cpp:36
std::vector< PointGPS * > getPoints()
getPoints Get the m_points vector
Definition: track.cpp:226
std::vector< PointGPS * > * getPointsAsPointer()
Definition: track.h:99
void updateBox(double x, double y)
Update the enclosing box of the track.
Definition: track.cpp:287
The Track class.
Definition: track.h:26
double m_yMin
Definition: track.h:109
void outputInfos()
Print some informations to user in console.
Definition: track.cpp:303
Track()
Track&#39;s Constructor.
Definition: track.cpp:10
void spaceFilter(double interval)
This is a space filter, which deletes points depending on a distance interval.
Definition: track.cpp:258
int getNoOfPoints()
Definition: track.h:100
virtual ~Track()
Definition: track.cpp:27
void addPoint(double x, double y, float altitude, unsigned int timeStamp)
Creates a new point and inserts it in m_points.
Definition: track.cpp:281
void applyThresholdToBox()
Apply a threshold to bounding box once the data file has been read.
Definition: track.cpp:295
double m_yMax
Definition: track.h:110
void delPointGPS(int occurrence)
Deletes a occurence.
Definition: track.cpp:276
void signalMessage(QString)
std::string infos()
Return a string containing information about the content of this object.
Definition: track.cpp:311
double m_xMax
Definition: track.h:108
std::vector< PointGPS * > m_points
m_points Vector where points of the Track are saved
Definition: track.h:120
std::string m_trackFullName
Definition: track.h:122