{"id":15536688,"url":"https://github.com/turbo87/aprs-parser-rs","last_synced_at":"2025-04-23T13:43:36.793Z","repository":{"id":32463653,"uuid":"134633869","full_name":"Turbo87/aprs-parser-rs","owner":"Turbo87","description":"APRS message parser for Rust","archived":false,"fork":false,"pushed_at":"2024-04-22T04:13:58.000Z","size":961,"stargazers_count":11,"open_issues_count":2,"forks_count":6,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-05-02T00:10:11.665Z","etag":null,"topics":["aprs","aprs-is","ogn"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Turbo87.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"Turbo87","custom":"https://paypal.me/tobiasbieniek"}},"created_at":"2018-05-23T22:56:04.000Z","updated_at":"2024-05-06T02:36:05.710Z","dependencies_parsed_at":"2024-05-06T02:47:12.778Z","dependency_job_id":null,"html_url":"https://github.com/Turbo87/aprs-parser-rs","commit_stats":{"total_commits":130,"total_committers":7,"mean_commits":"18.571428571428573","dds":0.6384615384615384,"last_synced_commit":"ec6cb6e580c6dcea070e195aa1b98f246b60746a"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Turbo87%2Faprs-parser-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Turbo87%2Faprs-parser-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Turbo87%2Faprs-parser-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Turbo87%2Faprs-parser-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Turbo87","download_url":"https://codeload.github.com/Turbo87/aprs-parser-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250441448,"owners_count":21431172,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aprs","aprs-is","ogn"],"created_at":"2024-10-02T11:52:53.176Z","updated_at":"2025-04-23T13:43:36.774Z","avatar_url":"https://github.com/Turbo87.png","language":"Rust","funding_links":["https://github.com/sponsors/Turbo87","https://paypal.me/tobiasbieniek"],"categories":[],"sub_categories":[],"readme":"\naprs-parser\n==============================================================================\n\n[![Build Status](https://travis-ci.org/Turbo87/aprs-parser-rs.svg?branch=master)](https://travis-ci.org/Turbo87/aprs-parser-rs)\n\n[APRS] message parser for [Rust]\n\n[APRS]: http://www.aprs.org/\n[Rust]: https://www.rust-lang.org/\n\nFeatures\n--------------------------------------\n- Supports packet encoding and decoding\n- Supports textual representations (APRS-IS) as well as binary/AX.25 representations (KISS)\n\nUsage\n------------------------------------------------------------------------------\n\n```rust\nextern crate aprs_parser;\n\nfn main() {\n    let result = aprs_parser::parse(\n        br\"ICA3D2\u003eAPRS,qAS,dl4mea:/074849h4821.61N\\01224.49E^322/103/A=003054\"\n    );\n\n    println!(\"{:#?}\", result);\n\n    // Ok(\n    //     AprsPacket {\n    //         from: Callsign {\n    //             call: \"IC17F2\",\n    //             ssid: None,\n    //         },\n    //         via: [\n    //             QConstruct(\n    //                 AS,\n    //             ),\n    //             Callsign(\n    //                 Callsign {\n    //                     call: \"dl4mea\",\n    //                     ssid: None,\n    //                 },\n    //                 false,\n    //             ),\n    //         ],\n    //         data: Position(\n    //             AprsPosition {\n    //                 to: Callsign {\n    //                     call: \"APRS\",\n    //                     ssid: None,\n    //                 },\n    //                 timestamp: Some(\n    //                     HHMMSS(\n    //                         7,\n    //                         48,\n    //                         49,\n    //                     ),\n    //                 ),\n    //                 messaging_supported: false,\n    //                 latitude: Latitude(\n    //                     48.36016666666667,\n    //                 ),\n    //                 longitude: Longitude(\n    //                     12.408166666666666,\n    //                 ),\n    //                 precision: HundredthMinute,\n    //                 symbol_table: '\\\\',\n    //                 symbol_code: '^',\n    //                 comment: [\n    //                     51,\n    //                     50,\n    //                     50,\n    //                     47,\n    //                     49,\n    //                     48,\n    //                     51,\n    //                     47,\n    //                     65,\n    //                     61,\n    //                     48,\n    //                     48,\n    //                     51,\n    //                     48,\n    //                     53,\n    //                     52,\n    //                 ],\n    //                 cst: Uncompressed,\n    //             },\n    //         ),\n    //     },\n    // )\n}\n```\n\n\nLicense\n------------------------------------------------------------------------------\n\nThis project is licensed under either of\n\n - Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or\n   \u003chttp://www.apache.org/licenses/LICENSE-2.0\u003e)\n   \n - MIT license ([LICENSE-MIT](LICENSE-MIT) or\n   \u003chttp://opensource.org/licenses/MIT\u003e)\n\nat your option.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbo87%2Faprs-parser-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fturbo87%2Faprs-parser-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fturbo87%2Faprs-parser-rs/lists"}