This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Formel von Dr. Roland Brodbeck, Calsky | |
# http://lexikon.astronomie.info/zeitgleichung/neu.html | |
# Uebertragung auf Python 3 von Alexander Klupp 2014-01-14 | |
import math | |
pi2 = 2*math.pi | |
pi = math.pi | |
RAD = math.pi/180 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Formel von Dr. Roland Brodbeck, Calsky | |
# http://lexikon.astronomie.info/zeitgleichung/neu.html | |
# Übertragung auf Python 3 von Alexander Klupp 2014-01-14 | |
import math | |
pi2 = 2*math.pi | |
pi = math.pi | |
RAD = math.pi/180 |