You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: swiftnav/src/nmea/gga.rs
+11-25Lines changed: 11 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -99,10 +99,13 @@ impl GGA {
99
99
100
100
let hdop = self.hdop.map_or(String::new(), |hdop| format!("{hdop:.1}"));
101
101
102
-
// NOTE(ted): This is actually not the right value to use, however, we don't really use height for finding information like nearest station so it's ok to use for now
102
+
// NOTE(ted): This is actually not the right value to use, however, we don't really use
103
+
// height for finding information like nearest station so it's ok to use for now
103
104
let height = "0.0";
104
105
105
-
let age_dgps = self.age_dgps.map_or(0.0, |age| age.as_secs_f64());
// we are going to set some very large decimal places and the highest possible values in terms of character count to ensure our sentence is always below 82 characters
177
+
// we are going to set some very large decimal places and the highest possible values in
178
+
// terms of character count to ensure our sentence is always below 82 characters
0 commit comments