Skip to content
Snippets Groups Projects

Implement a dialog to plot and export GPS data

Merged Kien Le requested to merge feature-#19-gps_plotter_q330 into master
1 file
+ 10
0
Compare changes
  • Side-by-side
  • Inline
+ 10
0
from typing import NamedTuple
class GPSPoint(NamedTuple):
last_timemark: str
fix_type: str
num_satellite_used: int
latitude: float
longitude: float
height: float
Loading