Map Matching
road.h
Go to the documentation of this file.
1 #ifndef ROAD_H
2 #define ROAD_H
3 
4 #include "pointroad.h"
5 #include "track.h"
6 
7 #include <set>
8 #include <string>
9 #include <vector>
10 
14 class Road {
15 public:
19  Road() {}
20 
25  Road(long roadId)
26  : m_edgeId(roadId)
27  {
28  }
29 
33  virtual ~Road();
34 
42  void addPoint(int pointId);
43 
51  void addNeighbor(long roadId);
52 
53  int getIntersectionIDWith(Road* r) const;
54 
58  void outputInfos() const;
59 
60  // accessors
65  long edgeId() const { return m_edgeId; }
66 
71  const std::vector<int>& vectorOfPointsId() const { return m_vectorOfPointsId; }
72 
77  int getNoOfNeighbors() const { return m_setOfNeighbors.size(); }
78 
79  std::set<long> m_setOfNeighbors;
80 
81 protected:
82  long m_edgeId;
83  std::vector<int> m_vectorOfPointsId;
84 };
85 
86 #endif // ROAD_H
void addNeighbor(long roadId)
Add a neighbor of the road identified by its id to the road.
Definition: road.cpp:14
std::set< long > m_setOfNeighbors
Set of all roadId connected to this one (including this one)
Definition: road.h:79
const std::vector< int > & vectorOfPointsId() const
Get the vector of points composing the road.
Definition: road.h:71
Road(long roadId)
Constructor. Instanciates a Road object with a specific ID.
Definition: road.h:25
virtual ~Road()
Destructor that clears all attributes.
Definition: road.cpp:4
Road is an element of a network. Road are strongly linked with Points.
Definition: road.h:14
void outputInfos() const
print some informations about the road
Definition: road.cpp:30
std::vector< int > m_vectorOfPointsId
Vector representing the id of each node (Point object)
Definition: road.h:83
int getIntersectionIDWith(Road *r) const
Definition: road.cpp:19
long m_edgeId
Id of the road.
Definition: road.h:82
int getNoOfNeighbors() const
get number of neighbors of the road
Definition: road.h:77
void addPoint(int pointId)
Add a point to the road.
Definition: road.cpp:9
long edgeId() const
Get the id of the road.
Definition: road.h:65
Road()
Default constructor. Just instanciates a Road object.
Definition: road.h:19
The class Track.