我在python中使用Geohash库。请考虑以下代码:
$ python
Python 2.7.6 (default, Jun 22 2015, 17:58:13)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import Geohash
>>> Geohash.decode("u3qcr")
('52.3', '21.1')
>>> Geohash.decode("u3qcx")
('52.3', '21.1')
为什么我会针对不同的哈希得到相同的结果?我希望因为我们有不同的最后一个字母,我们会得到不同的矩形。我错过了什么?