from vedastro import *
# Prepare random birth and end times
geolocation = GeoLocation("London, UK", -0.1276, 51.5074)
birth_time = Time("14:25 15/03/1995 +00:00", geolocation)
end_time = Time("14:25 15/03/2095 +00:00", geolocation)
# Print times for verification
print(f"Birth Time: {birth_time}")
print(f"End Time: {end_time}")
# Calculate Dasa at range
result = Calculate.DasaAtRange(
birth_time,
birth_time,
end_time,
2, # levels
1 # precisionHours
)
print("DasaAtRange result:")
print(result)
TRIED this, but it returns NONE. Meaning DasaAtRange not working
Originally posted by @VewMet in #18