VelocityDB.geohash.query.GeoHashBoundingBoxQuery.HashFits C# (CSharp) Method

HashFits() private method

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