Map Matching
Grid Class Reference

Grid embedded roads. This describes the network. More...

#include <grid.h>

Inheritance diagram for Grid:
Collaboration diagram for Grid:

Signals

void signalMessage (QString)
 

Public Member Functions

void addRoad (const std::vector< std::vector< double > > &listOfCoordinates, long edgeId)
 Creates a new road and inserts it in m_road. More...
 
void buildMarkovMatrix ()
 buildMarkovMatrix More...
 
double computeDistanceFraction (PointGPS *prevPoint, PointGPS *curPoint, long prevRoadId, long curRoadId)
 
double getDistanceBetweenProjections (Point *projR1, Point *projR2, Road *r1)
 
double getDistanceToExtremity (Point *projR1, int node, Road *r1)
 
int getNoOfPoints () const
 
int getNoOfRoads () const
 Getters. More...
 
std::vector< PointRoad > * getPoints ()
 
std::vector< double > getProjectedPointAndDistance (PointGPS *p, Road *r)
 
AllRoadMap::iterator getRoadEntry (long id)
 
AllRoadMapgetRoads ()
 
int getSegmentCounter (Point *p, Road *r)
 
 Grid ()
 Constructor. More...
 
bool inFootPrint (double x, double y)
 Test if a point is in the defined area of a track. More...
 
std::string infos ()
 
void outputInfos ()
 
void readFromCSV (QString filename)
 Reads a csv file and inserts info into the corresponding attributs. More...
 
void setDistance (PointGPS &p, Road &r)
 Compute the distance of a point to a road. More...
 
void setTrackBoundingBox (double xMin, double xMax, double yMin, double yMax)
 Save data about our area of roads. More...
 
bool trackInGrid ()
 Check if track is in grid. More...
 
void updateGrid (double x, double y)
 Find max and min of the grid. More...
 
double xMax () const
 
double xMaxGrid () const
 
double xMin () const
 
double xMinGrid () const
 
double yMax () const
 
double yMaxGrid () const
 
double yMin () const
 
double yMinGrid () const
 
virtual ~Grid ()
 Destructor. More...
 

Public Attributes

AllRoadMap m_mapOfAllRoads
 
std::vector< PointRoadm_vectorOfPoints
 

Protected Attributes

std::string m_gridFullName
 
ExtremityPointMap m_mapOfExtPoints
 

Static Protected Attributes

static long counter = 0
 
double m_xMin
 The coordinates of the track. More...
 
double m_xMax
 
double m_yMin
 
double m_yMax
 

The coordinates of the grid.

double m_xMinGrid
 
double m_xMaxGrid
 
double m_yMinGrid
 
double m_yMaxGrid
 

Detailed Description

Grid embedded roads. This describes the network.

Definition at line 36 of file grid.h.

Constructor & Destructor Documentation

Grid::Grid ( )

Constructor.

Definition at line 15 of file grid.cpp.

Grid::~Grid ( )
virtual

Destructor.

Definition at line 27 of file grid.cpp.

Member Function Documentation

void Grid::addRoad ( const std::vector< std::vector< double > > &  listOfCoordinates,
long  edgeId 
)

Creates a new road and inserts it in m_road.

Definition at line 196 of file grid.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void Grid::buildMarkovMatrix ( )

buildMarkovMatrix

Definition at line 264 of file grid.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

double Grid::computeDistanceFraction ( PointGPS prevPoint,
PointGPS curPoint,
long  prevRoadId,
long  curRoadId 
)

Definition at line 293 of file grid.cpp.

Here is the call graph for this function:

double Grid::getDistanceBetweenProjections ( Point projR1,
Point projR2,
Road r1 
)

Definition at line 333 of file grid.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

double Grid::getDistanceToExtremity ( Point projR1,
int  node,
Road r1 
)

Definition at line 351 of file grid.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

int Grid::getNoOfPoints ( ) const
inline

Definition at line 119 of file grid.h.

int Grid::getNoOfRoads ( ) const
inline

Getters.

Definition at line 118 of file grid.h.

Here is the caller graph for this function:

std::vector<PointRoad>* Grid::getPoints ( )
inline

Definition at line 113 of file grid.h.

std::vector< double > Grid::getProjectedPointAndDistance ( PointGPS p,
Road r 
)

Definition at line 317 of file grid.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

AllRoadMap::iterator Grid::getRoadEntry ( long  id)

Definition at line 253 of file grid.cpp.

Here is the caller graph for this function:

AllRoadMap* Grid::getRoads ( )
inline

Definition at line 112 of file grid.h.

int Grid::getSegmentCounter ( Point p,
Road r 
)

Definition at line 374 of file grid.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

bool Grid::inFootPrint ( double  x,
double  y 
)

Test if a point is in the defined area of a track.

Parameters
xCoordinate x of a point
yCoordinate x of a point
Returns
true or false

Definition at line 259 of file grid.cpp.

Here is the caller graph for this function:

std::string Grid::infos ( )

Definition at line 244 of file grid.cpp.

Here is the caller graph for this function:

void Grid::outputInfos ( )

Definition at line 237 of file grid.cpp.

Here is the caller graph for this function:

void Grid::readFromCSV ( QString  filename)

Reads a csv file and inserts info into the corresponding attributs.

Parameters
filenamethe filepath/filename for the csv file to read

Definition at line 42 of file grid.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void Grid::setDistance ( PointGPS p,
Road r 
)

Compute the distance of a point to a road.

Parameters
pthe Point GPS
rthe Road
void Grid::setTrackBoundingBox ( double  xMin,
double  xMax,
double  yMin,
double  yMax 
)

Save data about our area of roads.

Parameters
xMinCoordinate xMin of a track
xMaxCoordinate xMax of a track
yMinCoordinate yMin of a track
yMaxCoordinate yMax of a track

Definition at line 34 of file grid.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void Grid::signalMessage ( QString  )
signal

Here is the caller graph for this function:

bool Grid::trackInGrid ( )

Check if track is in grid.

Returns
true if track is in grid

Definition at line 393 of file grid.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void Grid::updateGrid ( double  x,
double  y 
)

Find max and min of the grid.

Parameters
xCoordinate x
yCoordinate y

Definition at line 385 of file grid.cpp.

Here is the caller graph for this function:

double Grid::xMax ( ) const
inline

Definition at line 121 of file grid.h.

Here is the caller graph for this function:

double Grid::xMaxGrid ( ) const
inline

Definition at line 125 of file grid.h.

Here is the caller graph for this function:

double Grid::xMin ( ) const
inline

Definition at line 120 of file grid.h.

Here is the caller graph for this function:

double Grid::xMinGrid ( ) const
inline

Definition at line 124 of file grid.h.

Here is the caller graph for this function:

double Grid::yMax ( ) const
inline

Definition at line 123 of file grid.h.

Here is the caller graph for this function:

double Grid::yMaxGrid ( ) const
inline

Definition at line 127 of file grid.h.

Here is the caller graph for this function:

double Grid::yMin ( ) const
inline

Definition at line 122 of file grid.h.

Here is the caller graph for this function:

double Grid::yMinGrid ( ) const
inline

Definition at line 126 of file grid.h.

Here is the caller graph for this function:

Member Data Documentation

long Grid::counter = 0
staticprotected

Definition at line 138 of file grid.h.

std::string Grid::m_gridFullName
protected

Definition at line 136 of file grid.h.

AllRoadMap Grid::m_mapOfAllRoads

Definition at line 129 of file grid.h.

ExtremityPointMap Grid::m_mapOfExtPoints
protected

Definition at line 137 of file grid.h.

std::vector<PointRoad> Grid::m_vectorOfPoints

Definition at line 130 of file grid.h.

double Grid::m_xMax
protected

The x max value

Definition at line 145 of file grid.h.

double Grid::m_xMaxGrid
protected

The x max value

Definition at line 155 of file grid.h.

double Grid::m_xMin
protected

The coordinates of the track.

The x min value

Definition at line 144 of file grid.h.

double Grid::m_xMinGrid
protected

The x min value

Definition at line 154 of file grid.h.

double Grid::m_yMax
protected

The y max value

Definition at line 147 of file grid.h.

double Grid::m_yMaxGrid
protected

The y max value

Definition at line 157 of file grid.h.

double Grid::m_yMin
protected

The y min value

Definition at line 146 of file grid.h.

double Grid::m_yMinGrid
protected

The y min value

Definition at line 156 of file grid.h.


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