{"id":30436894,"url":"https://github.com/nmandery/eo-identifiers","last_synced_at":"2025-08-23T02:21:10.610Z","repository":{"id":63902139,"uuid":"566955136","full_name":"nmandery/eo-identifiers","owner":"nmandery","description":"Parsers for naming conventions of earth observation products and datasets","archived":false,"fork":false,"pushed_at":"2022-12-28T20:06:34.000Z","size":33,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-01T04:32:27.765Z","etag":null,"topics":["earth-observation","parser","satellite"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nmandery.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-MIT","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-11-16T19:10:37.000Z","updated_at":"2023-02-11T11:36:27.000Z","dependencies_parsed_at":"2023-01-14T13:00:33.017Z","dependency_job_id":null,"html_url":"https://github.com/nmandery/eo-identifiers","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nmandery/eo-identifiers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nmandery%2Feo-identifiers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nmandery%2Feo-identifiers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nmandery%2Feo-identifiers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nmandery%2Feo-identifiers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nmandery","download_url":"https://codeload.github.com/nmandery/eo-identifiers/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nmandery%2Feo-identifiers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271732362,"owners_count":24811309,"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-08-23T02:00:09.327Z","response_time":69,"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":["earth-observation","parser","satellite"],"created_at":"2025-08-23T02:20:58.928Z","updated_at":"2025-08-23T02:21:10.600Z","avatar_url":"https://github.com/nmandery.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"Parsers for naming conventions of earth observation products and datasets\n\n[![Latest Version](https://img.shields.io/crates/v/eo-identifiers.svg)](https://crates.io/crates/eo-identifiers)\n[![Documentation](https://docs.rs/eo-identifiers/badge.svg)](https://docs.rs/eo-identifiers)\n![ci](https://github.com/nmandery/eo-identifiers/workflows/CI/badge.svg)\n[![dependency status](https://deps.rs/repo/github/nmandery/eo-identifiers/status.svg)](https://deps.rs/repo/github/nmandery/eo-identifiers)\n\n```rust\nuse eo_identifiers::Identifier;\nuse eo_identifiers::identifiers::sentinel2::ProductLevel;\nuse std::str::FromStr;\nuse chrono::{NaiveDate, NaiveDateTime, NaiveTime};\n\nfn example() {\n    let ident = Identifier::from_str(\"S2A_MSIL1C_20170105T013442_N0204_R031_T53NMJ_20170105T013443\")\n        .unwrap();\n\n    if let Identifier::Sentinel2Product(product) = ident {\n        assert_eq!(product.product_level, ProductLevel::L1C);\n        assert_eq!(\n            product.start_datetime,\n            NaiveDateTime::new(\n                NaiveDate::from_ymd_opt(2017, 1, 5).unwrap(),\n                NaiveTime::from_hms_opt(1, 34, 42).unwrap()\n            )\n        );\n        assert_eq!(product.relative_orbit_number, 31);\n    }\n    else {\n        unreachable!();\n    }\n}\n```\n\nThis crate is at an early stage. There are lots of parser missing - pull requests are welcome. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnmandery%2Feo-identifiers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnmandery%2Feo-identifiers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnmandery%2Feo-identifiers/lists"}