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