登录 注册
当前位置:主页 > 资源下载 > 20 > golang的geohash实现:geohash

golang的geohash实现:geohash

  • 更新:2024-12-12 14:07:20
  • 大小:2KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

## geohash geohash算法: : package main import ( "fmt" "github.com/gansidui/geohash" ) func main () { latitude := 39.92324 longitude := 116.3906 precision := 5 hash , box := geohash . Encode ( latitude , longitude , precision ) fmt . Println ( hash ) fmt . Println ( box . MinLat , box . MaxLat , box . MinLng , box . MaxLng ) neighbors := geohash . GetNeighbors ( latitude , longitude , pr