Crates.io | aprs-parser |
lib.rs | aprs-parser |
version | 0.4.2 |
source | src |
created_at | 2018-05-23 23:05:47.928759 |
updated_at | 2024-03-09 17:36:43.249558 |
description | APRS message parser for Rust |
homepage | https://github.com/Turbo87/aprs-parser-rs/ |
repository | https://github.com/Turbo87/aprs-parser-rs.git |
max_upload_size | |
id | 66841 |
size | 3,311,443 |
extern crate aprs_parser;
fn main() {
let result = aprs_parser::parse(
br"ICA3D2>APRS,qAS,dl4mea:/074849h4821.61N\01224.49E^322/103/A=003054"
);
println!("{:#?}", result);
// Ok(
// AprsPacket {
// from: Callsign {
// call: "IC17F2",
// ssid: None,
// },
// via: [
// QConstruct(
// AS,
// ),
// Callsign(
// Callsign {
// call: "dl4mea",
// ssid: None,
// },
// false,
// ),
// ],
// data: Position(
// AprsPosition {
// to: Callsign {
// call: "APRS",
// ssid: None,
// },
// timestamp: Some(
// HHMMSS(
// 7,
// 48,
// 49,
// ),
// ),
// messaging_supported: false,
// latitude: Latitude(
// 48.36016666666667,
// ),
// longitude: Longitude(
// 12.408166666666666,
// ),
// precision: HundredthMinute,
// symbol_table: '\\',
// symbol_code: '^',
// comment: [
// 51,
// 50,
// 50,
// 47,
// 49,
// 48,
// 51,
// 47,
// 65,
// 61,
// 48,
// 48,
// 51,
// 48,
// 53,
// 52,
// ],
// cst: Uncompressed,
// },
// ),
// },
// )
}
This project is licensed under either of
Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.