Compare commits

..

2 Commits
main ... 0.2.0

Author SHA1 Message Date
tkl
0bd2ffa42e publish members of ParseResult 2025-01-15 10:37:36 +00:00
Thomas Klaehn
299ac0f1cf Version bump
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2025-01-15 10:17:33 +01:00
3 changed files with 6 additions and 18 deletions

2
Cargo.lock generated
View File

@ -102,7 +102,7 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
[[package]]
name = "gps_parser"
version = "0.3.1"
version = "0.2.0"
dependencies = [
"chrono",
"nmea-parser",

View File

@ -1,6 +1,6 @@
[package]
name = "gps_parser"
version = "0.3.1"
version = "0.2.0"
edition = "2021"
[dependencies]

View File

@ -50,25 +50,13 @@ impl GpsParser {
match parser.parse_sentence(&line)? {
ParsedMessage::Gga(gga) => {
parsed_gga = true;
res.lat = match gga.latitude {
Some(value) => value,
_none => 0.0,
};
res.lon = match gga.longitude {
Some(value) => value,
_none => 0.0,
};
res.timestamp = match gga.timestamp {
Some(value) => value,
_none => Utc::now(),
};
res.lat = gga.latitude.unwrap();
res.lon = gga.longitude.unwrap();
res.timestamp = gga.timestamp.unwrap();
},
ParsedMessage::Vtg(vtg) => {
parsed_vtg = true;
res.speed = match vtg.sog_kph {
Some(value) => value,
_none => 0.0,
};
res.speed = vtg.sog_kph.unwrap();
},
_ => {
}