Done some searching and can't find a direct answer (well, one that i can understand!)
I want to compute the degree (out of 360 degrees) that the planets (Sun through to Pluto) are at a given time and location. I have the below code. I want to compute Zero degrees as the ascendent and progress from there.
pic of chart for date, time, location. AS = 0 Degrees, Jup = circa 43 degrees, Sat = circa 93 degrees, etc... Astro Chart for Date, Time & Location
Many thanks, Will
>>> from ephem import *
>>> sun = Sun()
>>> moo = Moon()
>>> mer = Mercury()
>>> mar = Mars()
>>> ven = Venus()
>>> jup = Jupiter()
>>> sat = Saturn()
>>> plu = Pluto()
>>> northwich = Observer()
>>> northwich.lat = '53.15'
>>> northwich.lon = '02.31'
>>> northwich.elevation = 36
>>> northwich.date = '2018/7/30 10:56'
>>> sun.compute(northwich)
>>> moo.compute(northwich)
>>> mer.compute(northwich)
>>> mar.compute(northwich)
>>> ven.compute(northwich)
>>> jup.compute(northwich)
>>> sat.compute(northwich)
>>> plu.compute(northwich)
>>> print(sun.alt, sun.az, moo.alt, moo.az... etc