meteorology-driver-classification

v0.1.0

Classify environmental and meteorological variables into driver categories for attribution analysis. Use when you need to group multiple variables into meani...

0· 76·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for wu-uk/lake-warming-attribution-meteorology-driver-classification.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "meteorology-driver-classification" (wu-uk/lake-warming-attribution-meteorology-driver-classification) from ClawHub.
Skill page: https://clawhub.ai/wu-uk/lake-warming-attribution-meteorology-driver-classification
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install lake-warming-attribution-meteorology-driver-classification

ClawHub CLI

Package manager switcher

npx clawhub@latest install lake-warming-attribution-meteorology-driver-classification
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name, description, and SKILL.md all describe classifying environmental variables into categories. There are no unexpected required binaries, env vars, or config paths.
Instruction Scope
SKILL.md contains guidance, category lists, a short example Python snippet for deriving net radiation, and best practices. It does not instruct reading unrelated files, accessing environment variables, contacting external endpoints, or exfiltrating data.
Install Mechanism
No install spec and no code files — instruction-only — so nothing is written to disk or fetched at install time.
Credentials
The skill requires no environment variables, credentials, or config paths. The requested privileges are proportionate to a documentation/guide skill.
Persistence & Privilege
always is false, the skill is user-invocable and does not request permanent presence or modification of other skills or system-wide settings.
Assessment
This is a simple, coherent documentation-style skill; it is low-risk to install. Before using it in automated pipelines, ensure any datasets you feed to derived-code are appropriate (no sensitive personal data) and verify that derived-variable code matches your data schema. If you expect the agent to execute code generated from this guide, review that code before running it locally or on production data.

Like a lobster shell, security has layers — review code before you run it.

latestvk977509h7z0ge5fjksda57yp7d84w0m3
76downloads
0stars
1versions
Updated 1w ago
v0.1.0
MIT-0

Driver Classification Guide

Overview

When analyzing what drives changes in an environmental system, it is useful to group individual variables into broader categories based on their physical meaning.

Common Driver Categories

Heat

Variables related to thermal energy and radiation:

  • Air temperature
  • Shortwave radiation
  • Longwave radiation
  • Net radiation (shortwave + longwave)
  • Surface temperature
  • Humidity
  • Cloud cover

Flow

Variables related to water movement:

  • Precipitation
  • Inflow
  • Outflow
  • Streamflow
  • Evaporation
  • Runoff
  • Groundwater flux

Wind

Variables related to atmospheric circulation:

  • Wind speed
  • Wind direction
  • Gust speed
  • Atmospheric pressure

Human

Variables related to anthropogenic activities:

  • Developed area
  • Agriculture area
  • Impervious surface
  • Population density
  • Industrial output
  • Land use change rate

Derived Variables

Sometimes raw variables need to be combined before analysis:

# Combine radiation components into net radiation
df['NetRadiation'] = df['Longwave'] + df['Shortwave']

Grouping Strategy

  1. Identify all available variables in your dataset
  2. Assign each variable to a category based on physical meaning
  3. Create derived variables if needed
  4. Variables in the same category should be correlated

Validation

After statistical grouping, verify that:

  • Variables load on expected components
  • Groupings make physical sense
  • Categories are mutually exclusive

Best Practices

  • Use domain knowledge to define categories
  • Combine related sub-variables before analysis
  • Keep number of categories manageable (3-5 typically)
  • Document your classification decisions

Comments

Loading comments...