Map Matching
Road Class Reference

Road is an element of a network. Road are strongly linked with Points. More...

#include <road.h>

Collaboration diagram for Road:

Public Member Functions

void addNeighbor (long roadId)
 Add a neighbor of the road identified by its id to the road. More...
 
void addPoint (int pointId)
 Add a point to the road. More...
 
long edgeId () const
 Get the id of the road. More...
 
int getIntersectionIDWith (Road *r) const
 
int getNoOfNeighbors () const
 get number of neighbors of the road More...
 
void outputInfos () const
 print some informations about the road More...
 
 Road ()
 Default constructor. Just instanciates a Road object. More...
 
 Road (long roadId)
 Constructor. Instanciates a Road object with a specific ID. More...
 
const std::vector< int > & vectorOfPointsId () const
 Get the vector of points composing the road. More...
 
virtual ~Road ()
 Destructor that clears all attributes. More...
 

Public Attributes

std::set< long > m_setOfNeighbors
 Set of all roadId connected to this one (including this one) More...
 

Protected Attributes

long m_edgeId
 Id of the road. More...
 
std::vector< int > m_vectorOfPointsId
 Vector representing the id of each node (Point object) More...
 

Detailed Description

Road is an element of a network. Road are strongly linked with Points.

Definition at line 14 of file road.h.

Constructor & Destructor Documentation

Road::Road ( )
inline

Default constructor. Just instanciates a Road object.

Definition at line 19 of file road.h.

Road::Road ( long  roadId)
inline

Constructor. Instanciates a Road object with a specific ID.

Parameters
roadIdThe specific ID of the road

Definition at line 25 of file road.h.

Here is the call graph for this function:

Road::~Road ( )
virtual

Destructor that clears all attributes.

Definition at line 4 of file road.cpp.

Here is the caller graph for this function:

Member Function Documentation

void Road::addNeighbor ( long  roadId)

Add a neighbor of the road identified by its id to the road.

Add the road id to the set of neighbors. This way the road knows its neighbors.

Parameters
roadId

Definition at line 14 of file road.cpp.

Here is the caller graph for this function:

void Road::addPoint ( int  pointId)

Add a point to the road.

Insert the point to the vector of points (end position).

Parameters
pointIdId of the point to add.

Definition at line 9 of file road.cpp.

Here is the caller graph for this function:

long Road::edgeId ( ) const
inline

Get the id of the road.

Returns
the id of the road

Definition at line 65 of file road.h.

Here is the caller graph for this function:

int Road::getIntersectionIDWith ( Road r) const

Definition at line 19 of file road.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

int Road::getNoOfNeighbors ( ) const
inline

get number of neighbors of the road

Returns
the number of neighbors of the road

Definition at line 77 of file road.h.

void Road::outputInfos ( ) const

print some informations about the road

Definition at line 30 of file road.cpp.

Here is the caller graph for this function:

const std::vector<int>& Road::vectorOfPointsId ( ) const
inline

Get the vector of points composing the road.

Returns
a vector of Points' id

Definition at line 71 of file road.h.

Here is the caller graph for this function:

Member Data Documentation

long Road::m_edgeId
protected

Id of the road.

Definition at line 82 of file road.h.

std::set<long> Road::m_setOfNeighbors

Set of all roadId connected to this one (including this one)

Definition at line 79 of file road.h.

std::vector<int> Road::m_vectorOfPointsId
protected

Vector representing the id of each node (Point object)

Definition at line 83 of file road.h.


The documentation for this class was generated from the following files: