Преглед на файлове
Bugs fixed.
I've experienced issue when I put in +2 timezone, the script calculates sun elevation for -2 timezone so i changed plus to minus in time.localtime function. Also added support for Daylight saving time.
tags/v.1.4
mihajlo2003petkovic
преди 4 години
committed by
GitHub
родител
ревизия
4f568b3141
No known key found for this signature in database
GPG ключ ID: 4AEE18F83AFDEB23
променени са
1 файла , в които са
добавени 2 реда и са
изтрити 2 реда
sun.py
@@ -2,8 +2,8 @@
import ephem
import time
import sys
timezone = change_tz
date = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(int(sys.argv[1])+ (timezone*60*60)))
timezone = change_tz + time.localtime().tm_isdst
date = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(int(sys.argv[1])- (timezone*60*60)))
obs=ephem.Observer()
obs.lat='change_latitude'