VelocityDB.geohash.util.TwoGeoHashBoundingBox.FromBase32 C# (CSharp) Method

FromBase32() public static method

public static FromBase32 ( string base32 ) : TwoGeoHashBoundingBox
base32 string
return TwoGeoHashBoundingBox
    public static TwoGeoHashBoundingBox FromBase32(string base32)
    {
      string bottomLeft = base32.Substring(0, 7);
      string topRight = base32.Substring(7);
      return new TwoGeoHashBoundingBox(GeoHash.FromGeohashString(bottomLeft), GeoHash.FromGeohashString(topRight));
    }