GeoHash 库

GeoHash

Geohash library for cplusplus.

GeoHash是空间索引的一种方式,特别适合点数据,而对线、面数据采用R树索引更有优势。

Basic Methods

#include <catch2/catch.hpp>
#include "cgeohash.hpp"

size_t precision = 12;
double longitude = 112.5584;
double latitude = 37.8324;
GeoHash::string_type geostr("ww8p1r4t8");
GeoHash::string_type geo_neighbor("dqcjq");

TEST_CASE("Test geohash encode & decode method") {

    SECTION("Test geohash encode method") {
        GeoHash::string_type out;
        GeoHash::encode(latitude, longitude, 9, out);
        REQUIRE(geostr == out);
    }
}

TEST_CASE("Test geohash decode method") {
    GeoHash::DecodedHash out = GeoHash::decode(geostr);
    //var diff = Math.abs(latitude - actual) < 0.0001
    REQUIRE(abs(latitude - out.latitude) <= out.latitude_err);
    REQUIRE(abs(longitude - out.longitude) <= out.longitude_err);
}

TEST_CASE("Test geohash neighbor method:finds neighbor to the north") {
    const int dir[2] = { 1,0 };
    GeoHash::string_type actual = GeoHash::neighbor(geo_neighbor, dir);
    GeoHash::string_type expected("dqcjw");
    REQUIRE(actual == expected);
}

TEST_CASE("Test geohash neighbor method:finds neighbor to the south-west") {
    const int dir[2] = { -1,-1 };
    GeoHash::string_type actual = GeoHash::neighbor(geo_neighbor, dir);
    GeoHash::string_type expected("dqcjj");
    REQUIRE(actual == expected);
}

TEST_CASE("Test decodes string to bounded box") {

    GeoHash::DecodedBBox box= GeoHash::decode_bbox(geostr);
    //[37.83236503601074,112.55836486816406,37.83240795135498,112.5584077835083];
    REQUIRE((latitude>=box.minlat && latitude <= box.maxlat));
    REQUIRE((longitude>=box.minlon && longitude<=box.maxlon));
}

Reference

  1. https://github.com/sunng87/node-geohash.git
  2. https://github.com/gnagel/node-geohash-cpp.git
  3. https://codechina.csdn.net/mrbaolong/geohash.git
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值