1 个稳定版本
使用旧的 Rust 2015
1.0.0 | 2022年7月19日 |
---|
#548 在 日期和时间 类别中
10KB
202 行
sunrise-lite
此包提供了一种使用此方法计算日出和日落时间的函数。
从 https://github.com/nathan-osman/rust-sunrise 分支。
使用方法
为了进行计算,您需要提供以下信息:
- 您希望计算时间的日期
- 位置的纬度和经度
首先将此包添加到 Cargo.toml
[dependencies]
sunrise-lite = "1.0.0"
接下来,添加包声明
use sunrise_lite;
您可以使用 use
sunrise_sunset
函数来进行计算
// Calculate times for January 1, 2016 in Toronto
let (sunrise, sunset) = sunrise_lite::sunrise_sunset(
43.6532,
-79.3832,
2016,
1,
1,
);
依赖项
~1.5MB
~27K SLoC