| 23 | using namespace std::chrono; |
| 24 | |
| 25 | inline location::GpsInfo Make(double timestamp, ms::LatLon const & ll, double speed) |
| 26 | { |
| 27 | location::GpsInfo info; |
| 28 | info.m_timestamp = timestamp; |
| 29 | info.m_speed = speed; |
| 30 | info.m_latitude = ll.m_lat; |
| 31 | info.m_longitude = ll.m_lon; |
| 32 | info.m_horizontalAccuracy = 15; |
| 33 | info.m_source = location::EAndroidNative; |
| 34 | return info; |
| 35 | } |
| 36 | |
| 37 | inline string GetGpsTrackFilePath() |
| 38 | { |