# Google Earth Engine Checklist

> Sub-skill of google-earth-engine: Checklist (+1).

- Skill: `vamseeachanta/google-earth-engine-checklist` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/google-earth-engine-checklist`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/google-earth-engine-checklist/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/google-earth-engine-checklist

---


# Checklist (+1)

## Checklist


- [ ] `ee.Initialize()` succeeds without exception
- [ ] `image.bandNames().getInfo()` returns expected bands
- [ ] `collection.size().getInfo()` > 0 for date/bounds filter
- [ ] Exported GeoTIFF CRS matches requested (`rasterio.open().crs`)
- [ ] Depth values in expected range (e.g., GEBCO: -11000 to +8800 m)
- [ ] Time-series length matches expected date range
- [ ] Spot check: known well location falls within correct depth contour


## Benchmark Check (GEBCO)


```python
# Dogger Bank area should be ~20-40 m depth
test_pt = ee.Geometry.Point([3.0, 55.5])
val = gebco.select("elevation").sample(test_pt, 500).first()
depth_val = val.get("elevation").getInfo()
assert -60 < depth_val < 0, f"GEBCO validation failed: {depth_val}"
```

