我在这里看到了几个有关PyEphem的答案,以及它们如何产生日落/日出时间,但是如果我能找到仅使用Astropy包的解决方案,对我来说将更有用。目前,我找到的最接近的是 astropy.coordinates 软件包中的(get_sun)函数。 Astropy中是否已内置了此日落/日出功能?

最佳答案

Astroplan软件包具有一个Observer类,该类带有Observer.sun_rise_timeObserver.sun_set_time方法。

Astroplan是Astropy affiliated package

目前尚不清楚该功能是否会在将来放入核心Astropy软件包中或保留在Astroplan中。但是,使用pip install astroplanconda install -c astropy astroplan,您可以轻松安装Astroplan并使用它。

关于python - Astropy中是否内置了日落/日出功能?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34952552/

10-12 23:05