Agent skill
qgis-checklist
Sub-skill of qgis: Checklist (+2).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/engineering/gis/qgis/checklist
SKILL.md
Checklist (+2)
Checklist
- Layer loads and
layer.isValid()returns True - Feature count matches expected (
layer.featureCount()) - CRS is correct (
layer.crs().authid()== expected EPSG) - Geometry is valid (run
native:fixgeometriesif not) - Well coordinates plot in correct basin/region (visual sanity)
- Reprojected coordinates match manual calculation spot check
- Output file size is non-zero and opens in external QGIS GUI
Coordinate Sanity Check
# Spot check: print first 3 well locations
for feat in layer.getFeatures():
pt = feat.geometry().asPoint()
print(f"{feat['well_name']}: lon={pt.x():.4f}, lat={pt.y():.4f}")
if limit_counter := limit_counter + 1 >= 3:
break
Marine-Offshore CRS Reference
| Region | UTM Zone | EPSG |
|---|---|---|
| North Sea | 31N | 32631 |
| Gulf of Mexico | 15N | 32615 |
| Brazil offshore | 23S–25S | 32723–32725 |
| Australia NW shelf | 50S | 32750 |
| Global (geographic) | WGS84 | 4326 |
| Global (web maps) | Web Mercator | 3857 |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?