I am looking PyEphem python module to find moon position with accuracy for astrological research
import ephem
'Setting Delhi as location with 77E12 longitude, 28:36 lattitude
Delhi = ephem.Observer()
Delhi.lon = ephem.degrees('77:12')
Delhi.lon
Delhi.lat = ephem.degrees('28:36')
Delhi.date = '2015/3/22 9:00'
'Finding moon position for Delhi for specific time
m = ephem.Moon(Delhi)
print m.ra, m.dec
1:49:58.80 9:09:41.2
print (ephem.constellation(m))
('Psc', 'Pisces')
This is a wrong answer
Expected Answer: Aries, 01:32:12 from mykundali.com
Whether this ephem module take care of sidereal-time? Please suggest me to match Moons position
Note: If I subtract Lahiri Ayanamsa of 24 deg, Aries answer will come But 01:32:12 can not be achieved