Install
openclaw skills install wgs84Explain 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.
openclaw skills install wgs84Use 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.
lon,lat or lat,lon.GCJ-02 / BD-09 confusion is common.EPSG:4326 and when to reproject.qgis when execution is required.lon,lat or lat,lon.EPSG:4326 for exchange/storage unless the task needs projected units.python3 {baseDir}/scripts/wgs84_tool.py validate --lon 116.4074 --lat 39.9042
lon,lat or lat,lonpython3 {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
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
python3 {baseDir}/scripts/wgs84_tool.py china-check --lon 116.4074 --lat 39.9042
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
EPSG:4326 for interoperable storage, APIs, logs, and exchange.EPSG:3857 only for web-map display compatibility, not for accurate measurement.EPSG:4326 axis order the same way; many practical APIs use lon,lat even when standards prose differs.GCJ-02 / BD-09.GCJ-02 and BD-09 as mapping offset systems, not simple aliases for EPSG:4326.EPSG:4326 is appropriate for the task.GCJ-02 / BD-09 ambiguity when relevant.geocode.qgis.project.{baseDir}/references/wgs84-reference.md for concise CRS comparison and common failure cases.