#openstreetmap #parser #hours #opening #fields #osm #opening-hours

opening-hours-syntax

OpenStreetMap 中 opening_hours 字段的解析器

25 个版本

0.6.18 2023年11月27日
0.6.15 2023年6月14日
0.6.4 2022年8月12日
0.5.6 2022年8月6日
0.4.1 2021年2月22日

#150 in 地理空间

Download history 74/week @ 2024-03-13 10/week @ 2024-03-20 7/week @ 2024-03-27 19/week @ 2024-04-03 10/week @ 2024-04-10 10/week @ 2024-04-24 469/week @ 2024-05-01 219/week @ 2024-05-08 151/week @ 2024-05-15 86/week @ 2024-05-22 53/week @ 2024-05-29 75/week @ 2024-06-05 70/week @ 2024-06-12 31/week @ 2024-06-19 24/week @ 2024-06-26

每月 215 次下载
用于 opening-hours

MIT/Apache

48KB
1K SLoC

Rust 1K SLoC // 0.0% comments Pest 182 SLoC // 0.1% comments

Rust 解析器,用于 OSM 开放时间

opening-hours crate 的解析组件。

用法

将此添加到您的 Cargo.toml

[dependencies]
opening-hours-syntax = "0"

然后基本用法如下所示

use opening_hours_syntax::parse;

// Opens until 18pm during the week and until 12am the week-end.
const OH: &str = "Mo-Fr 10:00-18:00; Sa-Su 10:00-12:00";

fn main() {
    let oh = parse(&OH).unwrap();
    eprintln!("{:?}", oh);
}
"Root Package"


"Package"


"Documentation"

lib.rs:

opening-hours crate 的解析组件。

用法

将此添加到您的 Cargo.toml

[dependencies]
opening-hours-syntax = "0"

然后基本用法如下所示

use opening_hours_syntax::parse;

// Opens until 18pm during the week and until 12am the week-end.
const OH: &str = "Mo-Fr 10:00-18:00; Sa-Su 10:00-12:00";

fn main() {
    let oh = parse(&OH).unwrap();
    eprintln!("{:?}", oh);
}

依赖项

~4MB
~76K SLoC