{"id":24056942,"url":"https://github.com/kawamurakazushi/tle-parser","last_synced_at":"2025-07-26T10:39:19.032Z","repository":{"id":57669995,"uuid":"240630595","full_name":"kawamurakazushi/tle-parser","owner":"kawamurakazushi","description":"TLE (Two-line elements) Parser written in Rust.","archived":false,"fork":false,"pushed_at":"2024-03-17T07:21:59.000Z","size":7,"stargazers_count":2,"open_issues_count":1,"forks_count":6,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-04T06:29:39.068Z","etag":null,"topics":["parser","tle"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kawamurakazushi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2020-02-15T02:06:34.000Z","updated_at":"2023-03-08T15:55:51.000Z","dependencies_parsed_at":"2025-04-23T01:16:19.384Z","dependency_job_id":"ad85b7c9-2095-433d-b31a-0adae2499350","html_url":"https://github.com/kawamurakazushi/tle-parser","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kawamurakazushi/tle-parser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kawamurakazushi%2Ftle-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kawamurakazushi%2Ftle-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kawamurakazushi%2Ftle-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kawamurakazushi%2Ftle-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kawamurakazushi","download_url":"https://codeload.github.com/kawamurakazushi/tle-parser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kawamurakazushi%2Ftle-parser/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267150490,"owners_count":24043476,"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","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["parser","tle"],"created_at":"2025-01-09T05:28:06.565Z","updated_at":"2025-07-26T10:39:19.010Z","avatar_url":"https://github.com/kawamurakazushi.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TLE Parser\n[![tle-parser at crates.io](https://img.shields.io/crates/v/tle-parser.svg)](https://crates.io/crates/tle-parser)\n[![Actions Status](https://github.com/kawamurakazushi/tle-parser/workflows/CI/badge.svg)](https://github.com/kawamurakazushi/tle-parser/actions)\n[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)\n\nTLE (Two-line elements) parser.\n\n## Example\n\n```rust\nextern crate tle_parser;\n\nuse tle_parser::parse;\n\nfn main() {\n    let raw_tle = \"ISS (ZARYA)\n1 25544U 98067A   20045.18587073  .00000950  00000-0  25302-4 0  9990\n2 25544  51.6443 242.0161 0004885 264.6060 207.3845 15.49165514212791\";\n\n    let tle = parse(raw_tle);\n\n    match tle {\n        Ok(t) =\u003e println!(\"{:?}\", t),\n        Err(_) =\u003e println!(\"Error Parsing TLE\"),\n    }\n\n}\n```\n\nOutput\n\n```rust\nTLE {\n    name: \"ISS (ZARYA)\",\n    satellite_number: 25544,\n    classification: 'U',\n    international_designator: \"98067A\",\n    epoch: \"20045.18587073\",\n    first_derivative_mean_motion: 0.0000095,\n    second_derivative_mean_motion: 0.0,\n    drag_term: 0.000025302,\n    ephemeris_type: 0,\n    element_number: 999,\n    inclination: 51.6443,\n    right_ascension: 242.0161,\n    eccentricity: 0.0004885,\n    argument_of_perigee: 264.606,\n    mean_anomaly: 207.3845,\n    mean_motion: 15.49165514,\n    revolution_number: 21279,\n}\n```\n\nYou can run this example with the following command:\n\n```\ncargo run --example parse_iss_tle\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkawamurakazushi%2Ftle-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkawamurakazushi%2Ftle-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkawamurakazushi%2Ftle-parser/lists"}