Node-Geohash 技术文档
1. 安装指南
安装方式
Node-Geohash 是一个用于 Node.js 的 Geohash 库。你可以通过 npm 来安装这个库。
npm install ngeohash
2. 项目使用说明
基本用法
安装完成后,你可以在你的 Node.js 项目中引入 ngeohash
模块,并使用其提供的功能。
var geohash = require('ngeohash');
// 编码经纬度为 Geohash 字符串
console.log(geohash.encode(37.8324, 112.5584));
// 输出: ww8p1r4t8
// 解码 Geohash 字符串为经纬度
var latlon = geohash.decode('ww8p1r4t8');
console.log(latlon.latitude); // 输出: 37.8324
console.log(latlon.longitude); // 输出: 112.5584
基本方法
geohash.encode(latitude, longitude, precision=9)
将一对经纬度值编码为 Geohash 字符串。第三个参数是可选的,用于指定 Geohash 字符串的长度,从而影响其精度。
geohash.decode(hashstring)
将 Geohash 字符串解码为经纬度值。返回一个包含 latitude
和 longitude
键的 JavaScript 对象。
geohash.decode_bbox(hashstring)
将 Geohash 字符串解码为匹配的边界框。返回一个四元素数组:[minlat, minlon, maxlat, maxlon]
。
geohash.bboxes(minlat, minlon, maxlat, maxlon, precision=9)
获取 [minlat, minlon]
和 [maxlat, maxlon]
之间的所有 Geohash 字符串。这些字符串可以用于在缓存中查找 POI。
geohash.neighbor(hashstring, direction)
在指定方向上查找 Geohash 字符串的邻居。方向是一个二维数组,例如 [1,0]
表示北,[-1,-1]
表示西南。
geohash.neighbors(hashstring)
查找 Geohash 字符串的所有 8 个邻居 [n, ne, e, se, s, sw, w, nw]
。
整数方法
geohash.encode_int(latitude, longitude, bitDepth=52)
将一对经纬度值编码为 Geohash 整数。第三个参数是可选的,用于指定整数的 bitDepth
,从而影响其精度。
geohash.decode_int(hashinteger, bitDepth=52)
将 Geohash 整数解码为经纬度值。返回一个包含 latitude
和 longitude
键的 JavaScript 对象。
geohash.decode_bbox_int(hashinteger, bitDepth=52)
将 Geohash 整数解码为匹配的边界框。返回一个四元素数组:[minlat, minlon, maxlat, maxlon]
。
geohash.bboxes_int(minlat, minlon, maxlat, maxlon, bitDepth=52)
获取 [minlat, minlon]
和 [maxlat, maxlon]
之间的所有 Geohash 整数。
geohash.neighbor_int(hashinteger, direction, bitDepth=52)
在指定方向上查找 Geohash 整数的邻居。
geohash.neighbors_int(hashinteger, bitDepth=52)
查找 Geohash 整数的所有 8 个邻居 [n, ne, e, se, s, sw, w, nw]
。
3. 项目 API 使用文档
编码与解码
geohash.encode(latitude, longitude, precision=9)
:将经纬度编码为 Geohash 字符串。geohash.decode(hashstring)
:将 Geohash 字符串解码为经纬度。
边界框
geohash.decode_bbox(hashstring)
:解码 Geohash 字符串为边界框。geohash.bboxes(minlat, minlon, maxlat, maxlon, precision=9)
:获取指定范围内的所有 Geohash 字符串。
邻居
geohash.neighbor(hashstring, direction)
:查找指定方向的邻居。geohash.neighbors(hashstring)
:查找所有 8 个邻居。
整数编码与解码
geohash.encode_int(latitude, longitude, bitDepth=52)
:将经纬度编码为 Geohash 整数。geohash.decode_int(hashinteger, bitDepth=52)
:将 Geohash 整数解码为经纬度。
整数边界框
geohash.decode_bbox_int(hashinteger, bitDepth=52)
:解码 Geohash 整数为边界框。geohash.bboxes_int(minlat, minlon, maxlat, maxlon, bitDepth=52)
:获取指定范围内的所有 Geohash 整数。
整数邻居
geohash.neighbor_int(hashinteger, direction, bitDepth=52)
:查找指定方向的邻居。geohash.neighbors_int(hashinteger, bitDepth=52)
:查找所有 8 个邻居。
4. 项目安装方式
Node-Geohash 可以通过 npm 进行安装:
npm install ngeohash
安装完成后,你可以在项目中通过 require('ngeohash')
引入并使用该库。
- PDFMathTranslatePDF scientific paper translation with preserved formats - 基于 AI 完整保留排版的 PDF 文档全文双语翻译,支持 Google/DeepL/Ollama/OpenAI 等服务,提供 CLI/GUI/DockerPython03
- topiam-eiam开源IDaas/IAM平台,用于管理企业内员工账号、权限、身份认证、应用访问,帮助整合部署在本地或云端的内部办公系统、业务系统及三方 SaaS 系统的所有身份,实现一个账号打通所有应用的服务。Java00
- 每日精选项目🔥🔥 12.24日推荐:高性能 C 语言 UI 布局库🔥🔥 每日推荐行业内最新、增长最快的项目,快速了解行业最新热门项目动态~~017
- excelizehttps://github.com/xuri/excelize Excelize 是 Go 语言编写的一个用来操作 Office Excel 文档类库,基于 ECMA-376 OOXML 技术标准。可以使用它来读取、写入 XLSX 文件,相比较其他的开源类库,Excelize 支持操作带有数据透视表、切片器、图表与图片的 Excel 并支持向 Excel 中插入图片与创建简单图表,目前是 Go 开源项目中唯一支持复杂样式 XLSX 文件的类库,可应用于各类报表平台、云计算和边缘计算系统。Go02
- Cangjie-Examples本仓将收集和展示高质量的仓颉示例代码,欢迎大家投稿,让全世界看到您的妙趣设计,也让更多人通过您的编码理解和喜爱仓颉语言。Cangjie039
- 毕方Talon工具本工具是一个端到端的工具,用于项目的生成IR并自动进行缺陷检测。Python039
- advanced-javaAdvanced-Java是一个Java进阶教程,适合用于学习Java高级特性和编程技巧。特点:内容深入、实例丰富、适合进阶学习。JavaScript0102
- taro开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/TypeScript010
- Yi-CoderYi Coder 编程模型,小而强大的编程助手HTML012
- CommunityCangjie-TPC(Third Party Components)仓颉编程语言三方库社区资源汇总05