Map Matching
road.cpp
Go to the documentation of this file.
1 #include "road.h"
2 #include <iostream>
3 
5 {
6  m_vectorOfPointsId.clear();
7 }
8 
9 void Road::addPoint(int pointId)
10 {
11  m_vectorOfPointsId.push_back(pointId);
12 }
13 
14 void Road::addNeighbor(long roadId)
15 {
16  m_setOfNeighbors.insert(roadId);
17 }
18 
20 {
21  for (int id1 : r->vectorOfPointsId()) {
22  for (int id0 : m_vectorOfPointsId) {
23  if (id1 == id0)
24  return id0;
25  }
26  }
27  return -1; // should never happen
28 }
29 
30 void Road::outputInfos() const
31 {
32  std::cout << "Route " << m_edgeId << " contains " << m_vectorOfPointsId.size() << " points" << std::endl;
33  std::cout << "\t and has " << m_setOfNeighbors.size() << " neighbors (including itself)" << std::endl;
34 }
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
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
void addPoint(int pointId)
Add a point to the road.
Definition: road.cpp:9