文件名称:pysunset:Python 中的日出和计算
文件大小:9KB
文件格式:ZIP
更新时间:2024-07-02 06:57:23
Python
日落 计算给定日期给定位置的日出和日落。 目前有两种算法: 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
【文件预览】:
pysunset-master
----README.rst(1KB)
----sunset()
--------utils.py(250B)
--------noaa.py(13KB)
--------afc1990.py(11KB)
--------__init__.py(2KB)
--------trig.py(608B)
----.gitignore(12B)