2 个不稳定版本

使用旧的 Rust 2015

0.2.0 2015年7月25日
0.1.0 2015年7月16日

17#calculating

Download history • Rust 包仓库 181/week @ 2023-11-19 • Rust 包仓库 211/week @ 2023-11-26 • Rust 包仓库 161/week @ 2023-12-03 • Rust 包仓库 151/week @ 2023-12-10 • Rust 包仓库 126/week @ 2023-12-17 • Rust 包仓库 28/week @ 2023-12-24 • Rust 包仓库 110/week @ 2023-12-31 • Rust 包仓库 151/week @ 2024-01-07 • Rust 包仓库 223/week @ 2024-01-14 • Rust 包仓库 227/week @ 2024-01-21 • Rust 包仓库 241/week @ 2024-01-28 • Rust 包仓库 248/week @ 2024-02-04 • Rust 包仓库 259/week @ 2024-02-11 • Rust 包仓库 194/week @ 2024-02-18 • Rust 包仓库 177/week @ 2024-02-25 • Rust 包仓库 255/week @ 2024-03-03 • Rust 包仓库

944 每月下载量
用于 2 crates

MIT 许可证

5KB
91

sun

JS 库 suncalc 的 Rust 版本。

Build Status

安装

将以下内容添加到您的 Cargo.toml

[dependencies]
sun = "0.2"

用法

extern crate sun;

pub fn main() {
  let unixtime = 1362441600000;
  let lat = 48.0;
  let lon = 9.0;
  let pos = sun::pos(unixtime,lat,lon);
  let az  = pos.azimuth.to_degrees();
  let alt = pos.altitude.to_degrees();
  println!("The position of the sun is {}/{}", az, alt);
}

lib.rs:

sun crate 是一个用于计算太阳位置的库。它是 JavaScript 库 suncalc 的移植版本。

示例

extern crate sun;

pub fn main() {
  let unixtime = 1362441600000;
  let lat = 48.0;
  let lon = 9.0;
  let pos = sun::pos(unixtime,lat,lon);
  let az  = pos.azimuth.to_degrees();
  let alt = pos.altitude.to_degrees();
  println!("The position of the sun is {}/{}", az, alt);
}

无运行时依赖