Matthew Davidson
Results
1
issues of
Matthew Davidson
In method queryForGeohash in GeoHashQuery.java, we see this code: `String hash = geohash.getGeoHashString();` `int precision = (int)Math.ceil((double)bits/Base32Utils.BITS_PER_BASE32_CHAR);` `if (hash.length() < precision) {` `return new GeoHashQuery(hash, hash+"~");` `}` AND `if (endValue...