| 115 | } |
| 116 | |
| 117 | bool GetGpsPoint(istringstream & lineStream, uint64_t & timestampS, double & lat, double & lon) |
| 118 | { |
| 119 | if (!GetUint64(lineStream, timestampS)) |
| 120 | return false; |
| 121 | if (!GetDouble(lineStream, lat)) |
| 122 | return false; |
| 123 | |
| 124 | return GetDouble(lineStream, lon); |
| 125 | } |
| 126 | |
| 127 | /// \brief Fills |tracks| based on file |pathToCsv| content. File |pathToCsv| should be |
| 128 | /// a text file with following lines: |