name: 云南省界叠加分析(Windows 测试) description: 验证 GIS Actions 4.0 Windows 执行链路的测试套件。内置云南/昆明/大理/百色 GeoJSON 示例数据,开箱即用。 version: 1.0.1 author: SuiteForge platform: windows slug: test-yunnan-overlay-windows tags: [测试, 叠加分析, Windows, 云南省] category: 测试验证 params: output_path: type: string required: true desc: 输出 Excel 文件路径(.xlsx) steps: - id: geojson_to_shp name: 转为 SHP runtime: arcpy script_id: arcpy_convert params: output_dir: /tmp/output/shp - id: overlay name: 叠加分析 runtime: arcpy script_id: arcpy_overlay depends_on: [geojson_to_shp] params: province_shp: /tmp/output/shp/province.shp cities_dir: /tmp/output/shp output_dir: /tmp/output/result - id: export_excel name: 输出 Excel runtime: python3 script_id: excel depends_on: [overlay] params: result_dir: /tmp/output/result output_path: $params.output_path