Fast map matching  0.1.0
gps.hpp
1 
10 #ifndef FMM_GPS_HPP
11 #define FMM_GPS_HPP
12 
13 #include "core/geometry.hpp"
14 
15 #include <vector>
16 
17 namespace FMM {
18 
19 namespace CORE{
20 
26 struct Trajectory{
27  int id;
29  std::vector<double> timestamps;
30 };
31 
32 } // CORE
33 
34 } // FMM
35 #endif /* FMM_GPS_HPP */
FMM::CORE::Trajectory::geom
LineString geom
Geometry of the trajectory.
Definition: gps.hpp:28
FMM::CORE::Trajectory::timestamps
std::vector< double > timestamps
Timestamps of the trajectory.
Definition: gps.hpp:29
FMM::CORE::Trajectory::id
int id
Id of the trajectory.
Definition: gps.hpp:27
FMM
Fast map matching.
Definition: geom_algorithm.hpp:17
FMM::CORE::Trajectory
Trajectory class
Definition: gps.hpp:26
FMM::CORE::LineString
Linestring geometry class.
Definition: geometry.hpp:34