NW

Retrieves National Weather Service flood stage thresholds for USGS monitoring stations.

Install

mkdir -p .claude/skills/nws-flood-thresholds && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/5142" && unzip -o skill.zip -d .claude/skills/nws-flood-thresholds && rm skill.zip

Installs to .claude/skills/nws-flood-thresholds

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Download flood stage thresholds from NWS (National Weather Service). Use when determining flood levels for USGS stations, accessing action/minor/moderate/major flood stages, or matching stations to their flood thresholds.
221 chars✓ has a “when” trigger
Intermediate

Key capabilities

  • Download NWS flood stage thresholds
  • Match USGS stations to flood levels
  • Filter flood data by state
  • Convert threshold strings to numeric values

How it works

It retrieves bulk CSV data from the NWS, cleans column mismatches, and maps USGS IDs to specific action, minor, moderate, or major flood stages.

Inputs & outputs

You give it
USGS station ID
You get back
Flood stage threshold value

When to use nws-flood-thresholds

  • Determine flood levels for USGS stations
  • Access standardized NWS flood stage data
  • Match weather monitoring stations to flood thresholds

About this skill

NWS Flood Thresholds Guide

Overview

The National Weather Service (NWS) maintains flood stage thresholds for thousands of stream gages across the United States. These thresholds define when water levels become hazardous.

Data Sources

Option 1: Bulk CSV Download (Recommended for Multiple Stations)

https://water.noaa.gov/resources/downloads/reports/nwps_all_gauges_report.csv

Option 2: Individual Station Pages

https://water.noaa.gov/gauges/<station_id>

Example: https://water.noaa.gov/gauges/04118105

Flood Stage Categories

CategoryCSV ColumnDescription
Action Stageaction stageWater level requiring monitoring, preparation may be needed
Flood Stage (Minor)flood stageMinimal property damage, some public threat. Use this to determine if flooding occurred.
Moderate Flood Stagemoderate flood stageStructure inundation, evacuations may be needed
Major Flood Stagemajor flood stageExtensive damage, significant evacuations required

For general flood detection, use the flood stage column as the threshold.

Downloading Bulk CSV

import pandas as pd
import csv
import urllib.request
import io

nws_url = "https://water.noaa.gov/resources/downloads/reports/nwps_all_gauges_report.csv"

response = urllib.request.urlopen(nws_url)
content = response.read().decode('utf-8')
reader = csv.reader(io.StringIO(content))
headers = next(reader)
data = [row[:43] for row in reader]  # Truncate to 43 columns
nws_df = pd.DataFrame(data, columns=headers)

Important: CSV Column Mismatch

The NWS CSV has a known issue: header row has 43 columns but data rows have 44 columns. Always truncate data rows to match header count:

data = [row[:43] for row in reader]

Key Columns

Column NameDescription
usgs idUSGS station ID (8-digit string)
location nameStation name/location
stateTwo-letter state code
action stageAction threshold (feet)
flood stageMinor flood threshold (feet)
moderate flood stageModerate flood threshold (feet)
major flood stageMajor flood threshold (feet)

Converting to Numeric

Threshold columns need conversion from strings:

nws_df['flood stage'] = pd.to_numeric(nws_df['flood stage'], errors='coerce')

Filtering by State

# Get stations for a specific state
state_stations = nws_df[
    (nws_df['state'] == '<STATE_CODE>') &
    (nws_df['usgs id'].notna()) &
    (nws_df['usgs id'] != '') &
    (nws_df['flood stage'].notna()) &
    (nws_df['flood stage'] != -9999)
]

Matching Thresholds to Station IDs

# Build a dictionary of station thresholds
station_ids = ['<id_1>', '<id_2>', '<id_3>']
thresholds = {}

for _, row in nws_df.iterrows():
    usgs_id = str(row['usgs id']).strip()
    if usgs_id in station_ids:
        thresholds[usgs_id] = {
            'name': row['location name'],
            'flood': row['flood stage']
        }

Common Issues

IssueCauseSolution
Column mismatch errorCSV has 44 data columns but 43 headersTruncate rows to 43 columns
Missing thresholdsStation not in NWS databaseSkip station or use alternative source
Value is -9999No threshold definedFilter out these values
Empty usgs idNWS-only stationFilter by usgs id != ''

Best Practices

  • Always truncate CSV rows to match header count
  • Convert threshold columns to numeric before comparison
  • Filter out -9999 values (indicates no threshold defined)
  • Match stations by USGS ID (8-digit string with leading zeros)
  • Some stations may have flood stage but not action/moderate/major

When not to use it

  • Stations missing from NWS database

Prerequisites

pandas

Limitations

  • CSV column mismatch requires manual truncation
  • Some stations lack defined thresholds

How it compares

It automates the parsing of NWS bulk reports to programmatically link flood thresholds to USGS stream gages.

Compared to similar skills

nws-flood-thresholds side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
nws-flood-thresholds (this skill)16moReviewIntermediate
market-sizing-analysis732moNo flagsIntermediate
exploratory-data-analysis152moReviewIntermediate
model-compare77moReviewAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

market-sizing-analysis

wshobson

This skill should be used when the user asks to "calculate TAM", "determine SAM", "estimate SOM", "size the market", "calculate market opportunity", "what's the total addressable market", or requests market sizing analysis for a startup or business opportunity.

73142

exploratory-data-analysis

K-Dense-AI

Perform comprehensive exploratory data analysis on scientific data files across 200+ file formats. This skill should be used when analyzing any scientific data file to understand its structure, content, quality, and characteristics. Automatically detects file type and generates detailed markdown reports with format-specific analysis, quality metrics, and downstream analysis recommendations. Covers chemistry, bioinformatics, microscopy, spectroscopy, proteomics, metabolomics, and general scientific data formats.

15114

model-compare

rawwerks

Compare 3D CAD models using boolean operations (IoU, Dice, precision/recall). Use when evaluating generated models against gold references, diffing CAD revisions, or computing similarity metrics for ML training. Triggers on: model diff, compare models, IoU, intersection over union, model similarity, CAD comparison, STEP diff, 3D evaluation, gold reference, generated model, precision recall 3D.

783

astropy

davila7

Comprehensive Python library for astronomy and astrophysics. This skill should be used when working with astronomical data including celestial coordinates, physical units, FITS files, cosmological calculations, time systems, tables, world coordinate systems (WCS), and astronomical data analysis. Use when tasks involve coordinate transformations, unit conversions, FITS file manipulation, cosmological distance calculations, time scale conversions, or astronomical data processing.

682

statistical-analysis

anthropics

Apply statistical methods including descriptive stats, trend analysis, outlier detection, and hypothesis testing. Use when analyzing distributions, testing for significance, detecting anomalies, computing correlations, or interpreting statistical results.

848

datacommons-client

davila7

Work with Data Commons, a platform providing programmatic access to public statistical data from global sources. Use this skill when working with demographic data, economic indicators, health statistics, environmental data, or any public datasets available through Data Commons. Applicable for querying population statistics, GDP figures, unemployment rates, disease prevalence, geographic entity resolution, and exploring relationships between statistical entities.

637

Search skills

Search the agent skills registry