private bool HashFits(GeoHash hash, BoundingBox bbox)
 {
     return(hash.Contains(bbox.UpperLeft) && hash.Contains(bbox.LowerRight));
 }
 private bool HashFits(GeoHash hash, BoundingBox bbox)
 {
   return hash.Contains(bbox.UpperLeft) && hash.Contains(bbox.LowerRight);
 }