コード例 #1
0
ファイル: GeoHashTests.cs プロジェクト: wdir/NGeoHash
        public void BboxesInt_ReturnsHashStringsIntBetweenCoordinates()
        {
            var bBoxes = GeoHash.BboxesInt(30, 120, 30.0001, 120.0001, 8);

            Assert.Equal(GeoHash.EncodeInt(30.0001, 120.0001, 8), bBoxes[bBoxes.Length - 1]);
        }