Results don't match with other pages' results
molnaredom opened this issue · 6 comments
- Hi, I really like your code, but every time I try to compute an ASC , it does not matches with other pages results.
- I used this code:
date = Datetime('2001/01/01', '01:01', '+01:00')
pos = GeoPos('47n11', '20w12') # HUN Szolnok
chart = Chart(date, pos, hsys='Placidus',IDs=const.LIST_OBJECTS)
obj = chart.get(const.HOUSE1)
print(obj)
-
The result is:
<House1 Virgo +23:08:31 24.066321625075204>
-
I used the same parameters, but in other pages I always get a different result:
I am not sure with the time zones, but I tried all of them and it didn't work.
How could I get the same results?
I've run into this same problem. Did you find a solution/explanation?
It's because the tz dataset can be unreliable for dates before 1970 and I also found that if you use dates out of the country it sometimes has this bug.
I ran into the problem with Bill Clinton's ascendant
I've run into this same problem. Did you find a solution/explanation?
It's because the tz dataset can be unreliable for dates before 1970 and I also found that if you use dates out of the country it sometimes has this bug.
I didn't found any solution for this issue.
I tried to use an other repo for getting asrology datas. I can recommend @ryuphi 's astrology-api: https://github.com/ryuphi/astrology-api
(it is in JS but you can use it with the api)
Thank you!
@molnaredom, according to your coordinates (47n11, 20w12), is Hungary now in the middle of the Atlantic Ocean?
Because Google Maps says Hungary is in continental Europe!
If I use the correct coordinates (47n11, 20e12 - please note the "e" as in East, instead of "w" as in West) , it gives me the correct result..
date = Datetime('2001/01/01', '01:01', '+01:00')
pos = GeoPos('47n11', '20e12') # HUN Szolnok
chart = Chart(date, pos, hsys='Placidus', IDs=const.LIST_OBJECTS)
obj = chart.get(const.HOUSE1)
print(obj)
>>> <House1 Libra +23:04:43 27.034772788243203>
For all future viewers: please double/triple check your input data before opening an issue!
Thank you very much for your answer.
I checked it for one week, very much times, but for some reason I did not find this solution.