日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

GeoHash 库

發布時間:2024/1/1 编程问答 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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.0001REQUIRE(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

  • https://github.com/sunng87/node-geohash.git
  • https://github.com/gnagel/node-geohash-cpp.git
  • https://codechina.csdn.net/mrbaolong/geohash.git
  • 總結

    以上是生活随笔為你收集整理的GeoHash 库的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。