Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

wgs84wgs84 搜索

Agent Skill

wgs84 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,842

周安装

194

GitHub Stars

公开资料未说明

下载量

1,568
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wgs84(wgs84 搜索)
来源仓库:https://github.com/jvy/wgs84
安装命令:
openclaw skills install wgs84
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install wgs84

简介

解释和使用 WGS 84 坐标系获取 GPS 式经纬度数据。

  • 涵盖 EPSG:4326 标准用法、轴顺序验证与 UTM 转换。
  • 提供坐标范围检查与投影系统兼容性说明。wgs84 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适用于地理定位、地图标注与空间数据分析场景。
  • 输出结果应符合国际标准,避免坐标混淆误差。

SKILL.md

name
wgs84
description
Explain and work with the WGS 84 coordinate system for GPS-style longitude/latitude data, including EPSG:4326 usage, axis-order checks, range validation, UTM zone recommendation, and reprojection planning. Use when the user asks about WGS84, EPSG:4326, GPS coordinates, 经纬度, 坐标校验, 轴顺序, UTM 分带, or WGS84 conversion guidance.
metadata
openclaw
emoji
🌐
requires
bins
["python3"]
install
kind
brew
formula
python
bins
["python3"]
label
Install Python 3 (brew)

WGS84

Use this skill for practical work with WGS 84 longitude/latitude coordinates.

WGS 84 usually refers to the global geographic reference system commonly exposed as EPSG:4326 in GIS software. It is the right default for GPS-style coordinate exchange, but it is not the right answer for every display or measurement workflow.

What This Skill Does

  • Explain what WGS 84 is and when to use it.
  • Validate longitude/latitude numeric ranges.
  • Check whether a coordinate pair is likely lon,lat or lat,lon.
  • Recommend a UTM zone and EPSG code for projected analysis.
  • Flag when a coordinate falls inside mainland-China extents where GCJ-02 / BD-09 confusion is common.
  • Recommend whether to keep WGS84, use Web Mercator for display, or switch to a projected CRS for analysis.
  • Explain when to keep data in EPSG:4326 and when to reproject.
  • Hand off file-based reprojection steps to qgis when execution is required.

Standard Workflow

  1. Confirm whether the input is WGS 84 already, or just "GPS coordinates" by assumption.
  2. State the expected tuple order explicitly: lon,lat or lat,lon.
  3. Validate numeric ranges before discussing conversion.
  4. Decide the task type:

- storage or API exchange - web map display - distance/area/buffer analysis - regional engineering or survey workflow

  1. Keep EPSG:4326 for exchange/storage unless the task needs projected units.
  2. If analysis needs meters, recommend a suitable projected CRS such as a local CRS or UTM zone.

Practical Commands

Validate a WGS84 coordinate pair

python3 {baseDir}/scripts/wgs84_tool.py validate --lon 116.4074 --lat 39.9042

Check whether a pair is probably lon,lat or lat,lon

python3 {baseDir}/scripts/wgs84_tool.py guess-order --a 116.4074 --b 39.9042
python3 {baseDir}/scripts/wgs84_tool.py guess-order --a 39.9042 --b 116.4074

Recommend a UTM zone and EPSG code from WGS84 coordinates

python3 {baseDir}/scripts/wgs84_tool.py utm --lon 116.4074 --lat 39.9042
python3 {baseDir}/scripts/wgs84_tool.py utm --lon -122.478255 --lat 37.819929

Flag China mapping offset risk

python3 {baseDir}/scripts/wgs84_tool.py china-check --lon 116.4074 --lat 39.9042

Recommend the right CRS for a concrete task

python3 {baseDir}/scripts/wgs84_tool.py recommend --lon 116.4074 --lat 39.9042 --task exchange
python3 {baseDir}/scripts/wgs84_tool.py recommend --lon 116.4074 --lat 39.9042 --task analysis
python3 {baseDir}/scripts/wgs84_tool.py recommend --lon 116.4074 --lat 39.9042 --task web-map

Decision Rules

  • Prefer EPSG:4326 for interoperable storage, APIs, logs, and exchange.
  • Prefer a projected CRS in meters for buffering, area, distance, and nearest-neighbor analysis.
  • Prefer EPSG:3857 only for web-map display compatibility, not for accurate measurement.
  • Do not assume a pair is WGS 84 just because it contains two decimals; confirm source system when accuracy matters.
  • Do not assume all systems interpret EPSG:4326 axis order the same way; many practical APIs use lon,lat even when standards prose differs.
  • In mainland China workflows, explicitly check whether the source is raw WGS84 or app-level GCJ-02 / BD-09.
  • Treat GCJ-02 and BD-09 as mapping offset systems, not simple aliases for EPSG:4326.

What To Return

  • The interpreted coordinate order.
  • Whether the values are valid WGS84 longitude/latitude ranges.
  • Whether keeping EPSG:4326 is appropriate for the task.
  • If not, recommend the target CRS and explain why.
  • If using UTM, provide zone number, hemisphere, and EPSG code.
  • If the point is in mainland China, include a short warning about GCJ-02 / BD-09 ambiguity when relevant.

When Not To Use

  • Reverse geocoding or coordinates to address lookup: use geocode.
  • File-based GIS conversion or batch reprojection: use qgis.
  • General CRS comparison beyond WGS84-centered guidance: use project.
  • Navigation routing, POI search, or map reviews.

OpenClaw + ClawHub Notes

  • Keep examples generic and reproducible.
  • Do not hardcode private paths, real device traces, or private datasets.
  • For clawhub.ai publication, keep versioning/changelog semver-driven and examples standards-based.

Reference Docs In This Skill

  • Read {baseDir}/references/wgs84-reference.md for concise CRS comparison and common failure cases.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.85%
按下载量换算1,440

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills