skills/43-wentorai-research-plugins/skills/domains/geoscience/satellite-remote-sensing/SKILL.md
Satellite imagery analysis and remote sensing for earth science research
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research satellite-remote-sensingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A skill for processing and analyzing satellite imagery for earth science research. Covers data acquisition from major satellite platforms, preprocessing workflows, spectral index computation, land cover classification, and change detection using Python geospatial tools.
| Mission | Operator | Resolution | Revisit | Key Bands | Access | |---------|----------|-----------|---------|-----------|--------| | Landsat 8/9 | USGS/NASA | 30m (MS), 15m (pan) | 16 days | 11 bands, OLI+TIRS | Free (USGS EarthExplorer) | | Sentinel-2 | ESA | 10m-60m | 5 days | 13 bands, MSI | Free (Copernicus Open Access Hub) | | MODIS | NASA | 250m-1km | 1-2 days | 36 bands | Free (NASA LAADS DAAC) | | Sentinel-1 | ESA | 5-20m | 6 days | C-band SAR | Free (Copernicus) | | GOES-16/17 | NOAA | 0.5-2km | 5-15 min | 16 bands, ABI | Free (NOAA CLASS) |
import planetary_computer
import pystac_client
import rioxarray
# Search Sentinel-2 imagery via Microsoft Planetary Computer
catalog = pystac_client.Client.open(
"https://planetarycomputer.microsoft.com/api/stac/v1",
modifier=planetary_computer.sign_inplace,
)
# Search for cloud-free imagery over a region
search = catalog.search(
collections=["sentinel-2-l2a"],
bbox=[11.0, 46.0, 12.0, 47.0], # Tyrol, Austria
datetime="2025-06-01/2025-08-31",
query={"eo:cloud_cover": {"lt": 10}},
)
items = search.item_collection()
print(f"Found {len(items)} scenes with <10% cloud cover")
# Load a specific band as xarray DataArray
item = items[0]
red = rioxarray.open_rasterio(item.assets["B04"].href)
nir = rioxarray.open_rasterio(item.assets["B08"].href)
Raw satellite data (Level-1) must be atmospherically corrected to obtain surface reflectance (Level-2):
# Cloud masking for Sentinel-2 using the SCL band
import numpy as np
def mask_clouds_sentinel2(scl_band: np.ndarray) -> np.ndarray:
"""
Create cloud mask from Sentinel-2 Scene Classification Layer.
SCL values: 0=no_data, 1=saturated, 2=dark_area, 3=cloud_shadow,
4=vegetation, 5=bare_soil, 6=water, 7=unclassified,
8=cloud_medium, 9=cloud_high, 10=cirrus, 11=snow
"""
cloud_classes = {0, 1, 3, 8, 9, 10}
mask = np.isin(scl_band, list(cloud_classes))
return mask # True where clouds/invalid
import rasterio
from rasterio.merge import merge
from rasterio.warp import calculate_default_transform, reproject, Resampling
def reproject_raster(src_path: str, dst_path: str, dst_crs: str = "EPSG:4326"):
"""Reproject a raster to a target coordinate reference system."""
with rasterio.open(src_path) as src:
transform, width, height = calculate_default_transform(
src.crs, dst_crs, src.width, src.height, *src.bounds
)
kwargs = src.meta.copy()
kwargs.update({
"crs": dst_crs,
"transform": transform,
"width": width,
"height": height,
})
with rasterio.open(dst_path, "w", **kwargs) as dst:
for i in range(1, src.count + 1):
reproject(
source=rasterio.band(src, i),
destination=rasterio.band(dst, i),
src_transform=src.transform,
src_crs=src.crs,
dst_transform=transform,
dst_crs=dst_crs,
resampling=Resampling.bilinear,
)
def compute_indices(red: np.ndarray, nir: np.ndarray,
green: np.ndarray, swir: np.ndarray) -> dict:
"""
Compute common spectral indices from surface reflectance bands.
All inputs should be float arrays with values in [0, 1].
"""
eps = 1e-10 # avoid division by zero
ndvi = (nir - red) / (nir + red + eps)
ndwi = (green - nir) / (green + nir + eps)
nbr = (nir - swir) / (nir + swir + eps)
evi = 2.5 * (nir - red) / (nir + 6 * red - 7.5 * 0.0001 + 1 + eps)
savi = 1.5 * (nir - red) / (nir + red + 0.5 + eps)
return {
"NDVI": ndvi, # vegetation vigor [-1, 1]
"NDWI": ndwi, # water bodies [-1, 1]
"NBR": nbr, # burn severity [-1, 1]
"EVI": evi, # enhanced vegetation
"SAVI": savi, # soil-adjusted vegetation
}
| Index | Range | Low Values | High Values | |-------|-------|-----------|-------------| | NDVI | -1 to 1 | Water, bare soil, clouds | Dense green vegetation | | NDWI | -1 to 1 | Dry land | Open water bodies | | NBR | -1 to 1 | Recently burned areas | Healthy vegetation | | EVI | -1 to 1 | Non-vegetated | Dense canopy (less saturated than NDVI) |
from sklearn.ensemble import RandomForestClassifier
from sklearn.model_selection import cross_val_score
# Stack bands into feature array: (n_pixels, n_bands)
# training_labels: land cover classes from ground truth polygons
bands = np.stack([blue, green, red, nir, swir1, swir2, ndvi, ndwi], axis=-1)
n_rows, n_cols, n_bands = bands.shape
X = bands.reshape(-1, n_bands)
# Train Random Forest classifier
rf = RandomForestClassifier(n_estimators=200, max_depth=20, n_jobs=-1)
scores = cross_val_score(rf, X_train, y_train, cv=5, scoring="f1_macro")
print(f"5-fold F1: {scores.mean():.3f} +/- {scores.std():.3f}")
rf.fit(X_train, y_train)
classification = rf.predict(X).reshape(n_rows, n_cols)
Multi-temporal analysis for detecting land cover changes (deforestation, urbanization, flood extent):
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.