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: 4de53e85e5bc42ebeddad729fff4c83313e0e556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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