public GeoPoint resetFromGeoHash(String geohash) { final long hash = GeoHashUtils.mortonEncode(geohash); return this.reset(GeoUtils.mortonUnhashLat(hash), GeoUtils.mortonUnhashLon(hash)); }
public final String getGeohash() { return GeoHashUtils.stringEncode(lon, lat); }