日落
计算给定日期给定位置的日出和日落。
目前有两种算法:
afc1990: ://williams.best.vwh.net/sunrise_sunset_algorithm.htm
noaa: : (源代码中的js)
例子
来自 Python:
>>> import datetime, sunset
>>> today = datetime.date.today()
>>> lat, lng = 30.3, -96.27 # Austin, TX
>>> utc_offset = -5 # CDT
>>> sunset.get_sunset(today, lat, lng, utc_offset)
datetime.datetime(2015, 4, 15, 19, 52, 33)
从命令行:
$ python sunset/__init__.py
Algorithm
2023-03-01 17:26:00
9KB
Python
1