Map Matching
Track Class Reference

The Track class. More...

#include <track.h>

Inheritance diagram for Track:
Collaboration diagram for Track:

Signals

void signalMessage (QString)
 

Public Member Functions

void addPoint (double x, double y, float altitude, unsigned int timeStamp)
 Creates a new point and inserts it in m_points. More...
 
void applyThresholdToBox ()
 Apply a threshold to bounding box once the data file has been read. More...
 
void delPointGPS (int occurrence)
 Deletes a occurence. More...
 
int getNoOfPoints ()
 
std::vector< PointGPS * > getPoints ()
 getPoints Get the m_points vector More...
 
std::vector< PointGPS * > * getPointsAsPointer ()
 
std::string infos ()
 Return a string containing information about the content of this object. More...
 
void outputInfos ()
 Print some informations to user in console. More...
 
void readFromCSV (QString filename)
 Reads a csv file and inserts each point in m_points vector. More...
 
void spaceFilter (double interval)
 This is a space filter, which deletes points depending on a distance interval. More...
 
void temporalFilter (uint interval)
 This is a temporal filter, which deletes points depending on a time value. More...
 
 Track ()
 Track's Constructor. More...
 
void updateBox (double x, double y)
 Update the enclosing box of the track. More...
 
virtual ~Track ()
 

Protected Attributes

std::vector< PointGPS * > m_points
 m_points Vector where points of the Track are saved More...
 
std::string m_trackFullName
 

The coordinates of the bounding box.

double m_xMin
 
double m_xMax
 
double m_yMin
 
double m_yMax
 

Detailed Description

The Track class.

Definition at line 26 of file track.h.

Constructor & Destructor Documentation

Track::Track ( )
explicit

Track's Constructor.

Definition at line 10 of file track.cpp.

Track::~Track ( )
virtual

Definition at line 27 of file track.cpp.

Member Function Documentation

void Track::addPoint ( double  x,
double  y,
float  altitude,
unsigned int  timeStamp 
)

Creates a new point and inserts it in m_points.

Parameters
thex coordinate
they coordinate
thealtitude of the inserted point
thetimeStamp of the inserted point

Definition at line 281 of file track.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void Track::applyThresholdToBox ( )

Apply a threshold to bounding box once the data file has been read.

TODO

Definition at line 295 of file track.cpp.

Here is the caller graph for this function:

void Track::delPointGPS ( int  occurrence)

Deletes a occurence.

Parameters
Thepointer of the occurrence to delete

Definition at line 276 of file track.cpp.

Here is the caller graph for this function:

int Track::getNoOfPoints ( )
inline

Definition at line 100 of file track.h.

Here is the caller graph for this function:

vector< PointGPS * > Track::getPoints ( )

getPoints Get the m_points vector

Returns
The vector of points pointer

Definition at line 226 of file track.cpp.

Here is the caller graph for this function:

std::vector<PointGPS*>* Track::getPointsAsPointer ( )
inline

Definition at line 99 of file track.h.

Here is the caller graph for this function:

string Track::infos ( )

Return a string containing information about the content of this object.

Definition at line 311 of file track.cpp.

Here is the caller graph for this function:

void Track::outputInfos ( )

Print some informations to user in console.

Definition at line 303 of file track.cpp.

Here is the caller graph for this function:

void Track::readFromCSV ( QString  filename)

Reads a csv file and inserts each point in m_points vector.

Parameters
filenamethe filepath/filename.fileExtension for the csv file to read

Definition at line 36 of file track.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void Track::signalMessage ( QString  )
signal

Here is the caller graph for this function:

void Track::spaceFilter ( double  interval)

This is a space filter, which deletes points depending on a distance interval.

Parameters
interval: minimal wished between two points in meters

Definition at line 258 of file track.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void Track::temporalFilter ( uint  interval)

This is a temporal filter, which deletes points depending on a time value.

Parameters
interval: Time value in seconds

Definition at line 231 of file track.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void Track::updateBox ( double  x,
double  y 
)

Update the enclosing box of the track.

Parameters
xCoordinate x of a point
yCoordinate x of a point

Definition at line 287 of file track.cpp.

Here is the caller graph for this function:

Member Data Documentation

std::vector<PointGPS*> Track::m_points
protected

m_points Vector where points of the Track are saved

Vector of points

Definition at line 120 of file track.h.

std::string Track::m_trackFullName
protected

Name of the track

Definition at line 122 of file track.h.

double Track::m_xMax

The x max value

Definition at line 108 of file track.h.

double Track::m_xMin

The x min value

Definition at line 107 of file track.h.

double Track::m_yMax

The y max value

Definition at line 110 of file track.h.

double Track::m_yMin

The y min value

Definition at line 109 of file track.h.


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