mit einem Klick
biodiversity-corridor-calculator
// Analyze biodiversity corridor connectivity and ecological value for H3 parcel clusters using a remote landscape ecology service.
// Analyze biodiversity corridor connectivity and ecological value for H3 parcel clusters using a remote landscape ecology service.
Walk any city in the world and publish to Agent Earth (agent-earth-oscar.vercel.app). Use when asked to explore, walk, or travel to a city/neighborhood. Handles agent registration, web research, waypoint creation, and API submission automatically.
Find carbon emission factors for any material or process. 1M+ LCA datasets (HiQLCD, Ecoinvent, CarbonMinds). AI-powered BOM carbon footprint calculation and material comparison.
Search academic literature across major scholarly sources and return a fast, ranked Top 5 with publication-status checks and bibliographic metadata.
Compare academic research papers side-by-side to identify similarities, differences, and research gaps. Use when user wants to compare 1-5 papers via DOIs, URLs, search queries, or PDF files. Supports mixed input types. Outputs both comparison table and detailed narrative summary.
Persistent cross-session knowledge base for research papers. Ingest arXiv/DOI → extract method, gap, threat level → append to PAPERS.md. Never lose paper context again across sessions.
Orchestrate a multi-agent virtual academic reading group. Use when reading multiple papers, generating expert discussion notes, cross-examining positions across papers, and synthesizing integrated summaries with full citations. Triggers on requests to analyze academic literature, run paper discussions, create reading group sessions, or synthesize research across multiple sources. Supports 1-50 papers with configurable expert personas (1-4 papers work but produce simpler single-expert output).
| name | biodiversity-corridor-calculator |
| description | Analyze biodiversity corridor connectivity and ecological value for H3 parcel clusters using a remote landscape ecology service. |
| homepage | https://www.nikhilp.online/biodiversity-corridor-calculator |
Open Claw Agent Skill: Biodiversity Corridor Analyst Description This skill allows an autonomous agent to analyze and value biodiversity corridors using advanced landscape ecology models. It processes H3 geospatial indices to calculate connectivity scores, visualize landscape resistance, and assess ecological premium values for conservation projects.
The agent can use this skill to:
Server Configuration Base URL: https://www.nikhilp.online/biodiversity-corridor-calculator API Base Path: /api
Description Analyzes the connectivity and ecological potential of a specified cluster of H3 hexagons. The analysis considers local habitat quality and regional landscape structure to classify the area into scenarios like "Vital Corridor," "Habitat Expansion," or "Stepping Stone."
Input Schema (JSON) centerLat (Number): The latitude of the center point for the analysis region (between -90 and 90).
centerLng (Number): The longitude of the center point for the analysis region (between -180 and 180).
projectHexes (Array of Strings): A list of H3 hexagonal indices (resolution 9 is standard) representing the land parcels to be analyzed. Maximum 50 hexes per request to ensure performance.
Usage Example To analyze a small cluster of land parcels in a specific region:
JSON { "centerLat": 51.5074, "centerLng": -0.1278, "projectHexes": [ "892a100d2b3ffff", "892a100d2b7ffff", "892a100d2bbffff" ] }
Response Format JSON { "results": [ { "h3Index": "892a100d2b3ffff", "originalCode": 10, "natureState": 1, "scenario": { "code": "CORRIDOR", "label": "Vital Corridor", "description": "This area acts as a bridge...", "color": "#f59e0b", "priority": 1.0 }, "resistance": 1, "localNature": 0.45, "landscapeNature": 0.30 } ], "context": [ { "h3Index": "892a100d28fffff", "originalCode": 50 } ... ] }
Notes