Install
openclaw skills install @ruiduobao/geoskill-nature-risk-tnfdTNFD LEAP-based nature-related financial risk screening. Locates enterprise assets relative to protected areas, water stress, and forest cover; evaluates nature dependency and impact using sector materiality; produces priority risk inventory and audit-ready evidence package.
openclaw skills install @ruiduobao/geoskill-nature-risk-tnfdTNFD LEAP approach (Locate → Evaluate) for screening enterprise assets against ecological sensitive areas, ecosystem state, and natural dependencies. Produces a spatial evidence package for nature-related financial risk assessment.
Use when the user wants to:
# Synthetic demo mode (no input files needed)
python scripts/nature_risk_tnfd.py --output-dir ./nrt-output
# With custom assets file (GeoJSON or CSV)
python scripts/nature_risk_tnfd.py --assets ./my-assets.geojson --output-dir ./nrt-output
# With sector override and custom buffers
python scripts/nature_risk_tnfd.py --sector agriculture --buffers "facility:5000,watershed:10000" --output-dir ./nrt-output
# With all parameters
python scripts/nature_risk_tnfd.py --assets ./assets.csv --sector mining --buffers "facility:10000" --indicators-config ./my-indicators.json --output-dir ./nrt-output
| Parameter | Default | Description |
|---|---|---|
--assets | None | Path to assets file (GeoJSON or CSV with lat/lon) |
--sector | None | Override sector for all assets (agriculture/mining/manufacturing/energy/real_estate/tourism) |
--buffers | facility:5000 | Buffer distances as type:meters pairs |
--indicators-config | None | Path to TNFD indicators JSON |
--output-dir | ./nrt-output | Output directory |
| File | Description |
|---|---|
asset_nature_context.geojson | Per-asset nature context with all indicators |
indicator_table.csv | Tabular indicator values for all assets |
priority_assets.geojson | High/medium risk assets for prioritization |
data_gaps.json | Identified data gaps by asset and severity |
tnfd_screening_report.html | Human-readable screening report |
request.json | Analysis request metadata |
dataset-manifest.json | Dataset inventory |
output-manifest.json | Output file inventory |
qa.json | Quality assurance checks |
run.log | Execution log |
For each asset, computes:
Uses sector materiality matrix (0-5 scale) adjusted for location context:
Priority = (dependency + impact) / 2, classified into: negligible / low / medium / high
| Code | Meaning |
|---|---|
| 0 | Success |
| 2 | Argument error |
| 3 | Dependency missing |
| 6 | Data validation failure |
| 7 | Processing failure |
本 skill 可自动从 Microsoft Planetary Computer 下载数据 (无需 API key):
python nature_risk_tnfd.py --bbox 116,39,117,40 --date-range 2024-06-01,2024-06-30 --output-dir <tmp>
--bbox W,S,E,N: WGS-84 边界框 (西, 南, 东, 北)--date-range START,END: 日期范围 (YYYY-MM-DD,YYYY-MM-DD)--aoi-file <path.geojson>: 替代 --bbox 的 GeoJSON 多边形--cache-dir <path>: 缓存目录 (默认 ~/.geoskill_cache)当用户只给 --bbox + --date-range (没有 --assets) 时,skill 自动下载数据。
当用户给 --assets 时,走原文件路径 (向后兼容)。