Install
openclaw skills install geojsonInspect, validate, summarize, and troubleshoot GeoJSON files and payloads, including FeatureCollection checks, geometry counting, bbox generation, coordinate range review, and CRS-related safety guidance. Use when the user asks about GeoJSON, FeatureCollection, geometry validity, 坐标范围检查, bbox, GeoJSON summary, or GeoJSON debugging.
openclaw skills install geojsonUse this skill for practical GeoJSON inspection and validation.
This skill focuses on safe read-only analysis of GeoJSON structure and coordinates. For deterministic GIS conversion, reprojection, clipping, or raster/vector processing on files, hand off to qgis.
FeatureCollection, missing geometry, or wrong coordinate nesting.EPSG:4326 assumptions are safe and when CRS clarification is required.lat,lon vs lon,latqgis.python3 {baseDir}/scripts/geojson_tool.py summary --file ./data/sample.geojson
python3 {baseDir}/scripts/geojson_tool.py validate --file ./data/sample.geojson
python3 {baseDir}/scripts/geojson_tool.py summary --json '{"type":"Point","coordinates":[116.4074,39.9042]}'
lon,lat when they represent geographic positions unless the source clearly says otherwise.geocode.wgs84.qgis.cesium.{baseDir}/references/geojson-notes.md for common structures, nesting rules, and failure cases.