Agent skill
google-earth-engine-11-authentication
Sub-skill of google-earth-engine: 1.1 Authentication (+2).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/engineering/gis/google-earth-engine/11-authentication
SKILL.md
1.1 Authentication (+2)
1.1 Authentication
import ee
# First-time setup (opens browser OAuth flow):
# ee.Authenticate()
# Runtime authentication (service account or existing token):
ee.Initialize(project="your-gcp-project-id")
# Service account (CI / headless):
credentials = ee.ServiceAccountCredentials(
email="sa@project.iam.gserviceaccount.com",
key_file="/path/to/key.json"
)
ee.Initialize(credentials=credentials, project="your-gcp-project-id")
1.2 Define Area of Interest (AOI)
import ee
# From bounding box (lon_min, lat_min, lon_max, lat_max)
aoi = ee.Geometry.Rectangle([-5.0, 54.0, 2.0, 60.0]) # North Sea
# From polygon coordinates [[lon, lat], ...]
aoi = ee.Geometry.Polygon([[
[-2.0, 56.5], [1.5, 56.5], [1.5, 58.0], [-2.0, 58.0]
]])
# From GeoJSON FeatureCollection
aoi = ee.FeatureCollection(
"projects/my-project/assets/pipeline_corridor"
)
1.3 Key Marine / Offshore Datasets
| Dataset | EE ID | Description |
|---|---|---|
| GEBCO 2023 bathymetry | projects/sat-io/open-datasets/gebco/GEBCO_2023 |
Global 15-arc-sec depth |
| ETOPO1 | NOAA/NGDC/ETOPO1 |
Global 1-arc-min elevation |
| Sentinel-2 SR | COPERNICUS/S2_SR_HARMONIZED |
10 m optical, 5-day revisit |
| Landsat 8/9 | LANDSAT/LC09/C02/T1_L2 |
30 m optical |
| ERA5 wind/wave | ECMWF/ERA5_LAND/HOURLY |
Reanalysis hourly |
| NOAA GOES SST | NOAA/CDR/OISST/V2_1 |
Daily sea surface temp |
| ESA WorldCover | ESA/WorldCover/v200 |
10 m land cover |
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?