给定日期、时间、纬度和经度的太阳方位角的 C 代码

发布于 2024-07-17 23:53:20 字数 1431 浏览 11 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

橘寄 2024-07-24 23:53:20

您看过USNO NOVAS例程吗?

Have you looked at the USNO NOVAS routines?

标点 2024-07-24 23:53:20

Pysolar 是 Python 中的一个实现,可以为您提供高度/方位角。 http://pysolar.org/ - 我在意识到其他答案之一中的 NOVAS 系统没有不支持Windows。

来自文档(https://github.com/pingswept/pysolar/wiki/examples ):

>>> import Pysolar
>>> import datetime
>>> d = datetime.datetime.utcnow() # create a datetime object for now
>>> Pysolar.GetAltitude(42.206, -71.382, d)
-20.453156227223857
>>> d = datetime.datetime(2007, 2, 18, 20, 13, 1, 130320) # try another date
>>> Pysolar.GetAltitude(42.206, -71.382, d)
19.551710266768644

Pysolar is an implementation in Python that can give you altitude/azimuth. http://pysolar.org/ - I came across it after realizing that the NOVAS system in one of the other answers didn't support Windows.

From the docs (https://github.com/pingswept/pysolar/wiki/examples):

>>> import Pysolar
>>> import datetime
>>> d = datetime.datetime.utcnow() # create a datetime object for now
>>> Pysolar.GetAltitude(42.206, -71.382, d)
-20.453156227223857
>>> d = datetime.datetime(2007, 2, 18, 20, 13, 1, 130320) # try another date
>>> Pysolar.GetAltitude(42.206, -71.382, d)
19.551710266768644
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文