I want to find out the heliocentric position of jupiter, and the corresponding zodiac but i am having basic problems.
from skyfield.api import sun, jupiter
p = sun(utc=(1980, 1, 1)).observe(jupiter)
lat, lon, d = p.ecliptic_latlon()
print(lat)
print(lon)
the error i get:
Traceback (most recent call last):
File "/home/panos/Desktop/skyfield test.py", line 1, in <module>
from skyfield.api import sun, jupiter
ImportError: cannot import name 'sun'
if someone can help me solve the error problem and then suggest to me how to map jupiter to the constellation i would appreciate it.