← 返回 Skills 市场
jisuapi

GEO & Address Conversion - 经纬度地址转换

作者 极速数据 · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ✓ 安全检测通过
460
总下载
9
收藏
1
当前安装
5
版本数
在 OpenClaw 中安装
/install geoconvert
功能描述
在百度/Google 坐标系下做经纬度与地址互转。当用户说:把这个地址转成经纬度、这两个坐标是什么地方?或类似地图坐标问题时,使用本技能。
使用说明 (SKILL.md)

\r \r

极速数据经纬度地址转换(Jisu GeoConvert)\r

\r

数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。\r \r 支持:\r \r

  • 经纬度转地址/geoconvert/coord2addr)\r
  • 地址转经纬度/geoconvert/addr2coord)\r \r 可选择使用 baidugoogle 类型的地理编码服务。\r \r

前置配置:获取 API Key\r

\r

  1. 前往 极速数据官网 注册账号\r
  2. 进入 经纬度地址转换 API 页面,点击「申请数据」\r
  3. 在会员中心获取 AppKey\r
  4. 配置 Key:\r \r \r
# Linux / macOS\r
export JISU_API_KEY="your_appkey_here"\r
\r
# Windows PowerShell\r
$env:JISU_API_KEY="your_appkey_here"\r
```\r
\r
## 脚本路径\r
\r
脚本文件:`skills/geoconvert/geoconvert.py`\r
\r
## 使用方式\r
\r
### 1. 经纬度转地址(/geoconvert/coord2addr)\r
\r
```bash\r
python3 skills/geoconvert/geoconvert.py coord2addr '{"lat":"30.2812129803","lng":"120.11523398","type":"baidu"}'\r
```\r
\r
请求 JSON:\r
\r
```json\r
{\r
  "lat": "30.2812129803",\r
  "lng": "120.11523398",\r
  "type": "baidu"\r
}\r
```\r
\r
### 2. 地址转经纬度(/geoconvert/addr2coord)\r
\r
```bash\r
python3 skills/geoconvert/geoconvert.py addr2coord '{"address":"益乐路39号","type":"baidu"}'\r
```\r
\r
请求 JSON:\r
\r
```json\r
{\r
  "address": "益乐路39号",\r
  "type": "baidu"\r
}\r
```\r
\r
`type` 说明:  \r
- `baidu`:使用百度地图坐标  \r
- `google`:使用 Google Maps 坐标  \r
\r
## 请求参数\r
\r
### 经纬度转地址\r
\r
| 字段名 | 类型   | 必填 | 说明                        |\r
|--------|--------|------|-----------------------------|\r
| lat    | string | 是   | 纬度                        |\r
| lng    | string | 是   | 经度                        |\r
| type   | string | 否   | 类型,`baidu` 或 `google`,默认 baidu |\r
\r
### 地址转经纬度\r
\r
| 字段名  | 类型   | 必填 | 说明                        |\r
|---------|--------|------|-----------------------------|\r
| address | string | 是   | 地址                        |\r
| type    | string | 否   | 类型,`baidu` 或 `google`,默认 baidu |\r
\r
## 返回结果示例(节选)\r
\r
### 经纬度转地址\r
\r
```json\r
{\r
  "lat": "30.2812129803",\r
  "lng": "120.11523398",\r
  "type": "google",\r
  "address": "中国浙江省杭州市西湖区文二西路11号 邮政编码: 310000",\r
  "country": "中国",\r
  "province": "浙江省",\r
  "city": "杭州市",\r
  "district": "西湖区",\r
  "description": ""\r
}\r
```\r
\r
### 地址转经纬度\r
\r
```json\r
{\r
  "address": "益乐路39号",\r
  "type": "google",\r
  "lat": "30.279864",\r
  "lng": "120.113885",\r
  "fulladdress": "中国浙江省杭州市西湖区益乐路39号 邮政编码: 310000",\r
  "precise": "",\r
  "confidence": "",\r
  "level": "street_address"\r
}\r
```\r
\r
## 常见错误码\r
\r
来源于 [极速数据经纬度文档](https://www.jisuapi.com/api/geoconvert/):\r
\r
| 代号 | 说明         |\r
|------|--------------|\r
| 201  | 经纬度为空   |\r
| 202  | 地址为空     |\r
| 203  | 经纬度不正确 |\r
| 210  | 没有信息     |\r
\r
系统错误码:\r
\r
| 代号 | 说明                 |\r
|------|----------------------|\r
| 101  | APPKEY 为空或不存在  |\r
| 102  | APPKEY 已过期        |\r
| 103  | APPKEY 无请求权限    |\r
| 104  | 请求超过次数限制     |\r
| 105  | IP 被禁止            |\r
\r
## 推荐用法\r
\r
1. 用户给出坐标:「这个点 `30.2812129803,120.11523398` 是哪里?」  \r
2. 代理构造 JSON:`{"lat":"30.2812129803","lng":"120.11523398","type":"baidu"}` 并调用:  \r
   `python3 skills/geoconvert/geoconvert.py coord2addr '{"lat":"30.2812129803","lng":"120.11523398","type":"baidu"}'`  \r
3. 从返回结果中读取 `address/country/province/city/district` 字段,为用户总结清晰的地址描述;  \r
4. 反向场景下,可根据用户提供的地址调用 `addr2coord` 获取经纬度,用于后续地图或定位相关技能。\r
\r
## 关于极速数据\r
\r
**极速数据(JisuAPI,[jisuapi.com](https://www.jisuapi.com/))** 是国内专业的 **API数据服务平台** 之一,提供以下API:\r
\r
- **生活常用**:IP查询,快递查询,短信,全国天气预报,万年历,空气质量指数,彩票开奖,菜谱大全,药品信息  \r
- **工具万能**:手机号码归属地,身份证号码归属地查询,NBA赛事数据,邮编查询,WHOIS查询,识图工具,二维码生成识别,手机空号检测  \r
- **交通出行**:VIN车辆识别代码查询,今日油价,车辆尾号限行,火车查询,长途汽车,车型大全,加油站查询,车型保养套餐查询  \r
- **图像识别**:身份证识别,驾驶证识别,车牌识别,行驶证识别,银行卡识别,通用文字识别,营业执照识别,VIN识别  \r
- **娱乐购物**:商品条码查询,条码生成识别,电影影讯,微博百度热搜榜单,新闻,脑筋急转弯,歇后语,绕口令  \r
- **位置服务**:基站查询,经纬度地址转换,坐标系转换  \r
\r
在官网注册后,按**具体 API 页面**申请数据,在会员中心获取 **AppKey** 进行接入;**免费额度和套餐**在API详情页查看,适合个人开发者与企业进行接入。在 **ClawHub** 上也可搜索 **`jisuapi`** 找到更多基于极速数据的 OpenClaw 技能。\r
\r
安全使用建议
This skill appears to do exactly what it says: it converts between addresses and coordinates by calling JisuAPI. Before installing: (1) ensure your environment has Python and the 'requests' package available, (2) be aware your JISU_API_KEY will be sent to api.jisuapi.com (as a GET query param) — use a limited/rotatable key and monitor usage, (3) review JisuAPI's terms/privacy if you will submit sensitive locations, and (4) if you need stricter secrecy, verify whether the API supports sending keys in headers or POST to avoid logging in URL/query strings.
功能分析
Type: OpenClaw Skill Name: geoconvert Version: 1.0.4 The geoconvert skill is a legitimate tool for converting between coordinates and addresses using the JisuAPI service. The Python script (geoconvert.py) correctly implements the API calls using the requests library, handles environment variables for authentication, and contains no evidence of malicious behavior, data exfiltration, or prompt injection.
能力评估
Purpose & Capability
Name/description (经纬度<->地址) align with the code and declared env. The only credential requested is JISU_API_KEY, which is exactly what the JisuAPI-based implementation needs. No unrelated services or permissions are requested.
Instruction Scope
SKILL.md and the Python script instruct the agent to call the JisuAPI endpoints with JSON input and return the API result. The instructions do not read arbitrary files or access extra environment variables. The script performs only HTTP GETs to api.jisuapi.com and local JSON parsing.
Install Mechanism
There is no install spec (instruction-only), and the included script is small and self-contained. One practical omission: the script uses the Python 'requests' library but the skill's requirements only list 'python3' (no pip dependency declared). This is an operational note rather than a security red flag.
Credentials
Only JISU_API_KEY is required, which is proportional. Important security/privacy note: the script sends the appkey as a query parameter in GET requests (params), so the key may appear in logs and URL records on the client, proxies, or the JisuAPI side — consider using a limited key and monitor usage.
Persistence & Privilege
always:false and no actions to persist or modify other skills or system-wide configs. The skill does not request elevated privileges or permanent presence.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install geoconvert
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /geoconvert 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.4
- Improved documentation with a friendlier name and detailed API provider introduction. - Expanded instructions for applying and configuring the required API Key (JISU_API_KEY). - Added an "About JisuAPI" section, listing available services and APIs. - The skill workflow, API usage, request/response formats, and error codes remain unchanged. - No code or functional changes in this release.
v1.0.3
Version 1.0.3 - No file or documentation changes detected in this release. - Functionality, usage, and documentation remain unchanged.
v1.0.2
No changes detected in this version. - No file modifications or updates. - Functionality and documentation remain the same as the previous release.
v1.0.1
- Fixed a reference to the official documentation, changing “官方经纬度文档” to “极速数据经纬度文档” for accuracy and consistency. - No functional or code changes in this version.
v1.0.0
- Initial release of jisu-geoconvert skill. - Provides conversion between latitude/longitude and addresses using Jisu API, supporting both Baidu and Google coordinate systems. - Offers two main commands: coord2addr (convert coordinates to address) and addr2coord (convert address to coordinates). - Requires JISU_API_KEY environment variable for authentication. - Includes detailed error code documentation and sample command usage.
元数据
Slug geoconvert
版本 1.0.4
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 5
常见问题

GEO & Address Conversion - 经纬度地址转换 是什么?

在百度/Google 坐标系下做经纬度与地址互转。当用户说:把这个地址转成经纬度、这两个坐标是什么地方?或类似地图坐标问题时,使用本技能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 460 次。

如何安装 GEO & Address Conversion - 经纬度地址转换?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install geoconvert」即可一键安装,无需额外配置。

GEO & Address Conversion - 经纬度地址转换 是免费的吗?

是的,GEO & Address Conversion - 经纬度地址转换 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

GEO & Address Conversion - 经纬度地址转换 支持哪些平台?

GEO & Address Conversion - 经纬度地址转换 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 GEO & Address Conversion - 经纬度地址转换?

由 极速数据(@jisuapi)开发并维护,当前版本 v1.0.4。

💬 留言讨论