Install
openclaw skills install qgisRun QGIS geospatial processing with qgis_process for repeatable vector/raster workflows (reproject, clip, dissolve, buffer, merge, raster warping). Use when the user asks for GIS/QGIS automation, coordinate system conversion, geodata transformation, or batch map data processing. 中文触发:QGIS、地理处理、坐标转换、矢量裁剪、栅格重投影。
openclaw skills install qgisUse this skill for deterministic, file-based GIS processing through qgis_process.
qgis_process help <algorithm-id> before execution.GPKG for vector and GeoTIFF for raster.qgis_process --version
qgis_process list
qgis_process list | rg -i "clip|buffer|reproject|merge|warp|dissolve"
qgis_process help native:clip
qgis_process run <algorithm-id> -- \
INPUT=<input-path> \
OUTPUT=<output-path>
# Reproject vector layer
qgis_process run native:reprojectlayer -- \
INPUT=./data/input.gpkg \
TARGET_CRS=EPSG:4326 \
OUTPUT=./out/reprojected.gpkg
# Clip vector layer by overlay
qgis_process run native:clip -- \
INPUT=./data/roads.gpkg \
OVERLAY=./data/boundary.gpkg \
OUTPUT=./out/roads_clipped.gpkg
# Buffer vector features
qgis_process run native:buffer -- \
INPUT=./data/points.gpkg \
DISTANCE=100 \
SEGMENTS=8 \
DISSOLVE=false \
OUTPUT=./out/points_buffer_100m.gpkg