Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gps_track_point.hpp « drape_frontend - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3387b327baaff6582b062959aef9d7790bea701 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "geometry/point2d.hpp"

namespace df
{
struct GpsTrackPoint
{
  // Timestamp of the point, seconds from 1st Jan 1970
  double m_timestamp;

  // Point in the Mercator projection
  m2::PointD m_point;

  // Speed in the point, M/S
  double m_speedMPS;

  // Unique identifier of the point
  uint32_t m_id;
};
}  // namespace df