geoHash编码、解码(java实现)

该博客介绍了Geohash算法的Java实现,包括编码和解码过程。编码部分展示了如何根据经纬度和精度生成Geohash字符串,解码部分则返回了Geohash对应的地理位置范围的四个顶点坐标。通过这段代码,开发者可以理解Geohash的工作原理并应用于地理信息系统的坐标处理。
摘要由CSDN通过智能技术生成

geohash算法原理自行百度,都讲的很详细,此处只贴实现代码

Base32

	//32位编码对应字符
    final static char[] Base32 = { '0', '1', '2', '3', '4', '5', '6', '7', '8',
            '9', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'p',
            'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' };
    private static  int[] Bits = new int[] { 16, 8, 4, 2, 1 };
    public static String digits = new String(Base32);

编码

precision为精度系数

public static String Encode(double latitude, double longitude, int precision)
    {
        boolean even = true;
        int bit = 0;
        int ch = 0;
        String geohash = "";

        double[] lat = { -90.0, 90.0 };
        double[] lon = { -180.0, 180.0 };

        if (precision < 1 || precision > 20) precision = 12;

        while (geohash.length() < precision)
        {
            double mid;

            if (even)
            {
                mid = (lon[0] + lon[1]) / 2;
                if (longitude > mid)
                {
                    ch |= Bits[bit];
                    lon[0] = mid;
                }
                else
                    lon[1] = mid;
            }
            else
            {
                mid = (lat[0] + lat[1]) / 2;
                if (latitude > mid)
                {
                    ch |= Bits[bit];
                    lat[0] = mid;
                }
                else
                    lat[1] = mid;
            }

            even = !even;
            if (bit < 4)
                bit++;
            else
            {
                geohash += Base32[ch];
                bit = 0;
                ch = 0;
            }
        }
        return geohash;
    }

解码

此处返回的是geohash对应范围的四个顶点坐标点

public static List<LatLng> decode(String geoHash) {
        String _geoHash = geoHash.toLowerCase();
        String beforeLngCode = "";
        String beforeLatCode = "";
        String code = "";
        double minLng = -180;
        double maxLng = 180;
        double minLat = -90;
        double maxLat = 90;
        // 经纬度完整二进制编码
        for (int i = 0; i < _geoHash.length(); i++) {
            int index = digits.indexOf(_geoHash.charAt(i));
            // 数字转为二进制,小于16的要补0,因此所有数字加32,然后移除第一位
            String str = Integer.toBinaryString(index + 32);
            code += str.substring(1);
        }
        // 分解获得经纬度编码
        for (int i = 0; i < code.length(); i++) {
            if (i % 2 == 0) {  // 偶数位经度
                beforeLngCode += code.charAt(i);
            } else {   // 奇数位纬度
                beforeLatCode += code.charAt(i);
            }
        }
        // 经度范围
        for (char c : beforeLngCode.toCharArray()) {
            if (c == '0') {  // 左半区
                maxLng = (minLng + maxLng) / 2;
            } else {  // 右半区
                minLng = (minLng + maxLng) / 2;
            }
        }
        // 纬度范围
        for (char c : beforeLatCode.toCharArray()) {
            if (c == '0') {  // 下半区
                maxLat = (minLat + maxLat) / 2;
            } else {   // 上半区
                minLat = (minLat + maxLat) / 2;
            }
        }

        List<LatLng> latLngs = new ArrayList<>();
        latLngs.add(new LatLng(minLat, minLng));
        latLngs.add(new LatLng(minLat, maxLng));
        latLngs.add(new LatLng(maxLat, minLng));
        latLngs.add(new LatLng(maxLat, maxLng));

        return latLngs;
    }
geohash简介: geohash是一种地址编码,它能把二维的经纬度编码成一维的字符串。geohash有以下几个特点: 首先,geohash用一个字符串表示经度和纬度两个坐标。某些情况下无法在两列上同时应用索引 (例如MySQL 4之前的版本,Google App Engine的数据层等),利用geohash,只需在一列上应用索引即可。 其次,geohash表示的并不是一个点,而是一个矩形区域。比如编码wx4g0ec19,它表示的是一个矩形区域。 使用者可以发布地址编码,既能表明自己位于北海公园附近,又不至于暴露自己的精确坐标,有助于隐私保护。 第三,编码的前缀可以表示更大的区域。例如wx4g0ec1,它的前缀wx4g0e表示包含编码wx4g0ec1在内的更大范围。 这个特性可以用于附近地点搜索。首先根据用户当前坐标计算geohash(例如wx4g0ec1)然后取其前缀进行查询 (SELECT * FROM place WHERE geohash LIKE 'wx4g0e%'),即可查询附近的所有地点。Geohash比直接用经纬度的高效很多。用途: 移动互联网,lbs可以说是一个基础应用,geohash对于解决附近地点搜索提供了一个有效的解决方案。扩展: 这个php扩展,提供了三个函数:/**     *  $latitude    //纬度     *  $longitude   //经度     *  $precision   //精密度, 默认是12     *  返回 $precision 长度的 string     */    geohash_encode($latitude, $longitude, $precision=12);      /**     *  $hash    //geohash_encode后的值     *  返回 array // Array     *                    (     *                        [latitude] => 39.416916975752     *                        [longitude] => 100.92223992571     *                        [north] => 39.416917059571     *                        [east] => 100.92224009335     *                        [south] => 100.92223992571     *                        [west] => 100.92223975807     *                    )     */    geohash_decode($hash);    /**     *  $hash    //geohash_encode后的值     *  返回 在$hash 8个 (东南西北各二个)附近的hash值     */    geohash_neighbors($hash); 标签:geohash
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值