Map Matching
grid.h
Go to the documentation of this file.
1 #ifndef GRID_H
2 #define GRID_H
3 
4 #include "road.h"
5 #include "track.h"
6 
7 #include <QObject>
8 
9 #include <QString>
10 #include <unordered_map>
11 #include <vector>
12 
13 struct hashFunc {
14  size_t operator()(const PointRoad& p) const
15  {
16  size_t h1 = std::hash<double>()(p.x());
17  size_t h2 = std::hash<double>()(p.y());
18  return h1 ^ (h2 << 1);
19  }
20 };
21 
22 struct equalsFunc {
23  bool operator()(const PointRoad& p1, const PointRoad& p2) const
24  {
25  return p1.samePointAs(p2);
26  }
27 };
28 
29 typedef std::unordered_map<PointRoad, int, hashFunc, equalsFunc> ExtremityPointMap; // for all node points
30 typedef std::unordered_map<long, Road> AllRoadMap;
31 //typedef std::unordered_map<long, Road&> AllRoadMap; // for all roads (& do not recreate object)
32 
36 class Grid : public QObject {
37  Q_OBJECT
38 public:
42  Grid();
46  virtual ~Grid();
47 
55  void setTrackBoundingBox(double xMin, double xMax, double yMin, double yMax);
56 
61  void readFromCSV(QString filename);
62 
66  void addRoad(const std::vector<std::vector<double> >& listOfCoordinates, long edgeId);
67 
74  bool inFootPrint(double x, double y);
75 
81  void updateGrid(double x, double y);
82 
87  bool trackInGrid();
88 
94  void setDistance(PointGPS& p, Road& r);
95 
99  void buildMarkovMatrix();
100 
101  double computeDistanceFraction(PointGPS* prevPoint, PointGPS* curPoint, long prevRoadId, long curRoadId);
102  std::vector<double> getProjectedPointAndDistance(PointGPS* p, Road* r);
103 
104  double getDistanceBetweenProjections(Point* projR1, Point* projR2, Road* r1);
105  double getDistanceToExtremity(Point* projR1, int node, Road* r1);
106  int getSegmentCounter(Point* p, Road* r);
107 
108  // test functions
109  void outputInfos();
110  std::string infos();
111  AllRoadMap::iterator getRoadEntry(long id); // used to update neighbors (for markovmatrix)
112  AllRoadMap* getRoads() { return &m_mapOfAllRoads; } // TODO const ?
113  std::vector<PointRoad>* getPoints() { return &m_vectorOfPoints; }
114 
118  int getNoOfRoads() const { return m_mapOfAllRoads.size(); }
119  int getNoOfPoints() const { return m_vectorOfPoints.size(); }
120  double xMin() const { return m_xMin; }
121  double xMax() const { return m_xMax; }
122  double yMin() const { return m_yMin; }
123  double yMax() const { return m_yMax; }
124  double xMinGrid() const { return m_xMinGrid; }
125  double xMaxGrid() const { return m_xMaxGrid; }
126  double yMinGrid() const { return m_yMinGrid; }
127  double yMaxGrid() const { return m_yMaxGrid; }
128 
130  std::vector<PointRoad> m_vectorOfPoints;
131 
132 signals:
133  void signalMessage(QString);
134 
135 protected:
136  std::string m_gridFullName;
137  ExtremityPointMap m_mapOfExtPoints; // temporary container during csv loading
138  static long counter; // counter used to generate unique m_id (not used for Seattle data)
139 
144  double m_xMin;
145  double m_xMax;
146  double m_yMin;
147  double m_yMax;
149 
154  double m_xMinGrid;
155  double m_xMaxGrid;
156  double m_yMinGrid;
157  double m_yMaxGrid;
159 };
160 
161 #endif // GRID_H
std::string m_gridFullName
Definition: grid.h:136
double xMax() const
Definition: grid.h:121
int getNoOfPoints() const
Definition: grid.h:119
double xMin() const
Definition: grid.h:120
bool operator()(const PointRoad &p1, const PointRoad &p2) const
Definition: grid.h:23
static long counter
Definition: grid.h:138
double yMaxGrid() const
Definition: grid.h:127
double m_xMinGrid
Definition: grid.h:154
size_t operator()(const PointRoad &p) const
Definition: grid.h:14
double m_xMin
The coordinates of the track.
Definition: grid.h:144
bool samePointAs(const Point &p) const
Check if two points share the same coordinates.
Definition: point.cpp:9
Definition: grid.h:13
double yMax() const
Definition: grid.h:123
AllRoadMap m_mapOfAllRoads
Definition: grid.h:129
Road is an element of a network. Road are strongly linked with Points.
Definition: road.h:14
int getNoOfRoads() const
Getters.
Definition: grid.h:118
double yMin() const
Definition: grid.h:122
double xMaxGrid() const
Definition: grid.h:125
double y() const
Definition: point.cpp:52
double x() const
Definition: point.cpp:75
double m_yMin
Definition: grid.h:146
std::vector< PointRoad > m_vectorOfPoints
Definition: grid.h:130
AllRoadMap * getRoads()
Definition: grid.h:112
double m_xMax
Definition: grid.h:145
double m_yMaxGrid
Definition: grid.h:157
double yMinGrid() const
Definition: grid.h:126
ExtremityPointMap m_mapOfExtPoints
Definition: grid.h:137
std::unordered_map< long, Road > AllRoadMap
Definition: grid.h:30
double m_xMaxGrid
Definition: grid.h:155
std::vector< PointRoad > * getPoints()
Definition: grid.h:113
Grid embedded roads. This describes the network.
Definition: grid.h:36
double m_yMax
Definition: grid.h:147
The class Track.
The Point class.
Definition: point.h:20
std::unordered_map< PointRoad, int, hashFunc, equalsFunc > ExtremityPointMap
Definition: grid.h:29
double xMinGrid() const
Definition: grid.h:124
double m_yMinGrid
Definition: grid.h:156