원클릭으로
gis-remote-sensing-guide
GIS analysis and remote sensing workflows for geospatial research applications
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
GIS analysis and remote sensing workflows for geospatial research applications
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
公司金融实证研究的"漏斗式选题查找器"。互动开场先后询问 (1) 研究方向、(2) 候选标题数量 N, 再扫描全球文献(已出版英文学术期刊 + SSRN working paper + 全球高校 department seminar 1 年内日程),基于 Edmans (2024) "1000 Rejections" 红线生成 N 个候选标题,**通过并行 subagent(Agent 工具)批量生成计划书 + 查新;每个 subagent 必须强制调用 Skill 工具加载 econfin-proposal 与 novelty-check 两个预设 skill 完成各自模块**,**只有当 novelty score >= 9 时(即 JF/JFE/RFS 顶刊层次),subagent 才把 proposal + 查新报告合并的 md 写入 F:\Dropbox\CC\选题大全\<研究方向短名>\(以"简短选题名称-分数"命名,子文件夹名由 Step 0 从用户输入的研究方向派生);< 9 分的选题在 subagent 内部直接丢弃,绝不写盘、绝不输出**。当用户说"找选题"、"帮我找选题"、"想做 X 方向"、 "empirical CF idea search"、"批量生成研究计划书"、"100 ideas"、"econfin-idea-finder" 时触发。
Create and compile beautiful Beamer presentations following the Rhetoric of Decks philosophy. Use when making slides, creating decks, or compiling .tex presentation files.
Scaffold a new research project with standard directory structure, CLAUDE.md template, and documented README. Use this at the start of every new project to ensure consistent organization.
Download, split, and deeply read academic PDFs. Use when asked to read, review, or summarize an academic paper. Splits PDFs into 4-page chunks, reads them in small batches, and produces structured reading notes — avoiding context window crashes and shallow comprehension.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
| name | gis-remote-sensing-guide |
| description | GIS analysis and remote sensing workflows for geospatial research applications |
| metadata | {"openclaw":{"emoji":"🌎","category":"domains","subcategory":"geoscience","keywords":["GIS","remote sensing","geology","atmospheric science","climatology","geospatial analysis"],"source":"wentor"}} |
A comprehensive skill for conducting geospatial analysis and remote sensing research. Covers data acquisition from satellite platforms, spatial analysis with open-source tools, and publication-quality map production.
| Platform | Provider | Spatial Res. | Revisit | Free? | Use Case |
|---|---|---|---|---|---|
| Landsat 8/9 | USGS/NASA | 30m (MS), 15m (pan) | 16 days | Yes | Land cover, NDVI time series |
| Sentinel-2 | ESA/Copernicus | 10m | 5 days | Yes | Agriculture, urban mapping |
| MODIS | NASA | 250m-1km | 1-2 days | Yes | Large-scale vegetation, fire |
| Sentinel-1 | ESA | 5-20m | 6 days | Yes | SAR, flood mapping, deformation |
| SRTM/ASTER | NASA | 30m | N/A | Yes | Digital elevation models |
import ee
# Initialize Google Earth Engine
ee.Initialize()
def get_sentinel2_composite(aoi: ee.Geometry, start: str, end: str,
cloud_max: int = 20) -> ee.Image:
"""
Create a cloud-free Sentinel-2 composite.
Args:
aoi: Area of interest as ee.Geometry
start: Start date (YYYY-MM-DD)
end: End date (YYYY-MM-DD)
cloud_max: Maximum cloud cover percentage
"""
collection = (ee.ImageCollection('COPERNICUS/S2_SR_HARMONIZED')
.filterBounds(aoi)
.filterDate(start, end)
.filter(ee.Filter.lt('CLOUDY_PIXEL_PERCENTAGE', cloud_max)))
# Cloud masking using SCL band
def mask_clouds(image):
scl = image.select('SCL')
mask = scl.neq(3).And(scl.neq(8)).And(scl.neq(9)).And(scl.neq(10))
return image.updateMask(mask)
return collection.map(mask_clouds).median().clip(aoi)
# Define study area
study_area = ee.Geometry.Rectangle([116.0, 39.5, 117.0, 40.5]) # Beijing region
composite = get_sentinel2_composite(study_area, '2024-06-01', '2024-09-30')
import geopandas as gpd
from shapely.geometry import Point
def spatial_join_analysis(points_gdf: gpd.GeoDataFrame,
polygons_gdf: gpd.GeoDataFrame,
agg_col: str) -> gpd.GeoDataFrame:
"""
Perform spatial join and aggregate point data within polygons.
"""
joined = gpd.sjoin(points_gdf, polygons_gdf, how='inner', predicate='within')
summary = joined.groupby('index_right').agg(
count=(agg_col, 'count'),
mean_value=(agg_col, 'mean'),
std_value=(agg_col, 'std')
).reset_index()
result = polygons_gdf.merge(summary, left_index=True, right_on='index_right')
return result
# Example: aggregate soil samples within administrative boundaries
soil_samples = gpd.read_file('soil_data.geojson')
admin_bounds = gpd.read_file('admin_boundaries.shp')
result = spatial_join_analysis(soil_samples, admin_bounds, 'pH_value')
import rasterio
import numpy as np
def compute_indices(image_path: str) -> dict:
"""Compute common remote sensing spectral indices."""
with rasterio.open(image_path) as src:
red = src.read(3).astype(float) # Band 4 in Sentinel-2
nir = src.read(4).astype(float) # Band 8
green = src.read(2).astype(float) # Band 3
swir = src.read(5).astype(float) # Band 11
# Normalized Difference Vegetation Index
ndvi = (nir - red) / (nir + red + 1e-10)
# Normalized Difference Water Index
ndwi = (green - nir) / (green + nir + 1e-10)
# Normalized Burn Ratio
nbr = (nir - swir) / (nir + swir + 1e-10)
return {'NDVI': ndvi, 'NDWI': ndwi, 'NBR': nbr}
For publication-quality maps, always include: scale bar, north arrow, coordinate reference system label, legend, and data source attribution. Use matplotlib with cartopy for projected maps, or folium for interactive web maps. Export at 300 DPI minimum for journal submissions.
Always verify and document the CRS. Use EPSG codes (e.g., EPSG:4326 for WGS84, EPSG:32650 for UTM Zone 50N). Reproject all layers to a common CRS before spatial operations to avoid misalignment errors.