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
2 files
+ 48
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -351,7 +351,7 @@ class MSeed(DataTypeModel):
# If location data is missing, we set them to 0.
if gps_status_lines[5] == 'Latitude: ':
return GPSPoint(last_timemark, fix_type, 0, 0, 0, 0)
return GPSPoint(last_timemark, fix_type, 0, 0, 0, 0, '')
num_sats_used = int(gps_status_lines[8].split(': ')[1])
Loading