What steps will reproduce the problem?
1. Try the geohash.bbox method on the same geohash with the _geohash c
library present and without
What is the expected output? What do you see instead?
Without _geohash C library:
>>> geohash.bbox('b')
{'e': -135.0, 'n': 90.0, 's': 45.0, 'w': -180.0}
With _geohash C Library:
>>> geohash.bbox('b')
{'e': -180.0, 'n': 90.0, 's': 45.0, 'w': -135.0}
What version of the product are you using? On what operating system?
python-geohash 0.3, python 2.6.1, OS X 10.6
Please provide any additional information below.
It looks like the 'e' and 'w' are just swapped, I believe the attached
patch is the correct fix.
Original issue reported on code.google.com by wsimm...@gmail.com on 6 May 2010 at 4:38
Original issue reported on code.google.com by
wsimm...@gmail.com
on 6 May 2010 at 4:38Attachments: