Google Earth Engine
Purpose: use GEE's server-side model correctly. The recurring failure
modes are client/server confusion (calling .getInfo() in loops,
Python if on server objects), unbounded computation (timeouts from
unscaled reductions), and silent default scales (statistics computed
at the wrong resolution).
Should this run here at all? — Earth Engine versus local
Answer this before writing any ee. code. The decision turns on six things, and
you cannot make it without them, so establish them first — asking alongside a
provisional recommendation, never instead of one:
- Archive extent and duration — area, and how many years at what revisit.
This is what makes server-side worth its constraints; a single scene does not.
- Algorithm expressibility — can the work be written as masks, reducers and
band math? Anything needing arbitrary per-pixel iteration, a custom solver, or
a Python library GEE does not host belongs local.
- Data locality and sensitivity — restricted or offline data cannot be
uploaded, and that ends the discussion regardless of scale.
- Interactive limits versus batch — see Quotas and etiquette.
Anything beyond a ~5 minute interactive request has to be designed as a batch
export from the start, not retrofitted when
getInfo times out.
- Export volume — what actually comes back: a few reduced statistics, or
full-resolution per-pixel stacks you will store and reprocess locally.
- Reproducibility cost — the real price of moving server-side. The catalog
version can shift under you and the computation leaves no local trace, so
choosing GEE obliges you to ship the provenance record.
State this cost when you recommend GEE; a recommendation that omits it is
incomplete.
Recommend Earth Engine only when 1 and 2 favour it and 3 permits it. When the
answer is genuinely balanced, say so and name the deciding question rather than
defaulting to the platform this skill is about. xee and STAC + stackstac /
odc-stac are the middle paths worth naming: catalog access with local compute.
Mental model — everything is deferred
ee.Image, ee.ImageCollection, ee.FeatureCollection are server-side
descriptions, not data. Nothing computes until an output is requested
(getInfo, export, map tile). Consequences:
- Never use Python
if/for on server values — use ee.Algorithms.If
sparingly, prefer .map() + filters. A Python loop that calls
.getInfo() per element is the #1 GEE performance bug.
.getInfo() blocks and transfers; use it for tiny scalars only.
Anything sized → Export (to Drive/GCS/Asset).
- Debug with
.aggregate_array(), .first(), .limit(3) probes — not by
printing whole collections.
Canonical pipeline (Sentinel-2 cloud-free composite)
import ee
ee.Initialize(project="my-project")
aoi = ee.Geometry.Rectangle([27.0, 38.3, 27.4, 38.6])
def mask_s2(img):
# Cloud Score+ is the current best practice (threshold ~0.5-0.65)
cs = img.linkCollection(csplus, ["cs_cdf"]).select("cs_cdf")
return img.updateMask(cs.gte(0.6))
csplus = ee.ImageCollection("GOOGLE/CLOUD_SCORE_PLUS/V1/S2_HARMONIZED")
s2 = (ee.ImageCollection("COPERNICUS/S2_SR_HARMONIZED")
.filterBounds(aoi)
.filterDate("2025-05-01", "2025-09-30")
.map(mask_s2))
composite = s2.median().clip(aoi)
ndvi = composite.normalizedDifference(["B8", "B4"]).rename("ndvi")
Collection choices: S2_SR_HARMONIZED (post-2022 offset harmonized),
LANDSAT/LC08/C02/T1_L2 + friends (apply scale factors: optical
*0.0000275 - 0.2), MODIS/061/... for daily/coarse, ERA5-Land for
climate. Record collection IDs + date filters in the deliverable.
Reducers and zonal statistics — scale is not optional
stats = ndvi.reduceRegions(
collection=districts,
reducer=ee.Reducer.mean().combine(ee.Reducer.stdDev(), sharedInputs=True),
scale=10, # ALWAYS explicit — native resolution
tileScale=4, # raise when "computation timed out"
)
scale defaults to the map zoom level in some paths — silently coarse
statistics. Always set it to the data's native resolution (or state the
deliberate coarsening).
bestEffort=True silently degrades scale to fit limits — avoid in
analysis; prefer tileScale + exports.
- Large reductions →
Export.table.toDrive, not .getInfo().
- Weighted vs unweighted reducers differ at polygon edges
(
.unweighted() for counts of whole pixels); state which you used.
Time series
- Build per-period composites with a mapped function over
ee.List.sequence of dates (monthly/seasonal medians), then reduce —
don't export daily stacks you'll aggregate anyway.
- For per-pixel trends:
ee.Reducer.sensSlope() (robust) or
linearFit; harmonic regression (.addBands of sin/cos terms) for
phenology. Mask by count of valid observations — trends from 4 pixels
of 200 possible are noise; report the count band.
- For break detection at archive scale (LandTrendr/CCDC available in GEE),
method selection follows
change-detection.
Classification in GEE
ee.Classifier.smileRandomForest covers most cases. Training samples via
image.sampleRegions; split train/test spatially (add a grid-cell
attribute and filter — random randomColumn splits leak; see
ml-experiment-standards → references/spatial-cv-protocol.md). Report
per-class accuracy from errorMatrix; area estimates from a classified
map still need design-based adjustment (change-detection / Olofsson).
Exports and hand-off
Export.image.toDrive/toCloudStorage with explicit region, scale,
crs, maxPixels; use crsTransform when pixel alignment with an
existing raster matters.
- Export > ~10⁸ pixels: shard by tiles or use
toAsset intermediate.
- Hand off to the local Python stack (rasterio/xarray) via COG exports, or
xee for xarray-native access; visualize interactively with geemap.
Quotas and etiquette
Batch tasks queue (check task status; don't fire hundreds blindly).
Interactive requests time out at ~5 min — long jobs go to batch export.
Cache intermediate products as assets when a pipeline reuses them.
Provenance record
Server-side computation is invisible after the fact: the catalog moves under
you, a reducer default changes the number, and nothing in the exported file
says which archive produced it. Every Earth Engine deliverable ships with a
provenance record, emitted as a sidecar JSON next to the export — not left
in the notebook:
- Catalog asset IDs with their version suffix (
COPERNICUS/S2_SR_HARMONIZED
and the specific collection version), plus the date range and filters applied.
- Mask method and thresholds — cloud probability source, threshold value,
and any morphological buffer.
- Reducers and their arguments, including
tileScale, bestEffort, and
any crsTransform.
- Export parameters:
region, scale, crs, maxPixels, and the task ID.
- Run date and the
ee.__version__ / API client version, because
server-side defaults change without notice.
Recommending Earth Engine over a local workflow is incomplete without this:
the reproducibility cost is the main thing the user trades away by moving
server-side, so state how it is recovered.
Verification protocol
- Probe:
composite.select("B4").projection().nominalScale().getInfo()
and band names — confirms scale/CRS assumptions before reductions.
- Visual check in geemap at 2 zoom levels vs a basemap.
- Cross-check one zonal statistic against a local computation on an
exported clip (catches scale/masking discrepancies).
- Report: collection IDs, date ranges, mask method + threshold, scale,
reducer types.
Pitfalls checklist
.getInfo() inside a loop (move logic server-side).
- Missing
scale in reduceRegion(s) → zoom-dependent statistics.
- Landsat C2 used without scale factors → reflectance > 1.
bestEffort=True hiding resolution degradation.
- Median composite including cloudy pixels (mask BEFORE reduce).
- Python conditionals on server-side objects (always false-y).
- Trend maps without valid-observation-count masking.
Execution contract
- Workflow: define collection and period; build a server-side mask and transform pipeline; test on a small region; compute; verify scale and projection; export reproducibly.
- Decision rules: use Earth Engine for planetary archives and scalable aggregation, local tools for sensitive or offline data, and batch exports for work beyond interactive limits.
- Verification protocol: probe bands, projection, scale, masks, and observation counts; inspect spatial samples; cross-check one exported statistic locally; record collection versions and parameters.
- Failure modes: stop for client-side loops, implicit scale, masked-pixel bias, quota-driven silent degradation, expired assets, or unbounded region operations.
- Deliverables: runnable script, collection and date manifest, mask and reducer parameters, task/export settings, verification evidence, and exported asset inventory.
- Source freshness: consult the authoritative source registry at execution time for catalog, API, quota, and policy changes.
1---2name: google-earth-engine3description: Invoke when Earth Engine, GEE, ee., or geemap is named; when work needs its server-side catalog; or when choosing Earth Engine versus local xarray or desktop processing for a large area or long archive. Covers image collections, masking, compositing, reducers, zonal statistics, time series, classification, quota-aware batching, and exports. This is an execution platform skill; combine it with remote-sensing-analysis or change-detection when those skills own the scientific method.4license: MIT5---67# Google Earth Engine89Purpose: use GEE's server-side model correctly. The recurring failure10modes are **client/server confusion** (calling `.getInfo()` in loops,11Python `if` on server objects), **unbounded computation** (timeouts from12unscaled reductions), and **silent default scales** (statistics computed13at the wrong resolution).1415## Should this run here at all? — Earth Engine versus local1617Answer this before writing any `ee.` code. The decision turns on six things, and18you cannot make it without them, so establish them first — asking alongside a19provisional recommendation, never instead of one:20211. **Archive extent and duration** — area, and how many years at what revisit.22 This is what makes server-side worth its constraints; a single scene does not.232. **Algorithm expressibility** — can the work be written as masks, reducers and24 band math? Anything needing arbitrary per-pixel iteration, a custom solver, or25 a Python library GEE does not host belongs local.263. **Data locality and sensitivity** — restricted or offline data cannot be27 uploaded, and that ends the discussion regardless of scale.284. **Interactive limits versus batch** — see [Quotas and etiquette](#quotas-and-etiquette).29 Anything beyond a ~5 minute interactive request has to be designed as a batch30 export from the start, not retrofitted when `getInfo` times out.315. **Export volume** — what actually comes back: a few reduced statistics, or32 full-resolution per-pixel stacks you will store and reprocess locally.336. **Reproducibility cost** — the real price of moving server-side. The catalog34 version can shift under you and the computation leaves no local trace, so35 choosing GEE obliges you to ship the [provenance record](#provenance-record).36 State this cost when you recommend GEE; a recommendation that omits it is37 incomplete.3839Recommend Earth Engine only when 1 and 2 favour it and 3 permits it. When the40answer is genuinely balanced, say so and name the deciding question rather than41defaulting to the platform this skill is about. `xee` and STAC + `stackstac` /42`odc-stac` are the middle paths worth naming: catalog access with local compute.4344## Mental model — everything is deferred4546`ee.Image`, `ee.ImageCollection`, `ee.FeatureCollection` are **server-side47descriptions**, not data. Nothing computes until an output is requested48(`getInfo`, export, map tile). Consequences:4950- Never use Python `if`/`for` on server values — use `ee.Algorithms.If`51 sparingly, prefer `.map()` + filters. A Python loop that calls52 `.getInfo()` per element is the #1 GEE performance bug.53- `.getInfo()` blocks and transfers; use it for tiny scalars only.54 Anything sized → **Export** (to Drive/GCS/Asset).55- Debug with `.aggregate_array()`, `.first()`, `.limit(3)` probes — not by56 printing whole collections.5758## Canonical pipeline (Sentinel-2 cloud-free composite)5960```python61import ee62ee.Initialize(project="my-project")6364aoi = ee.Geometry.Rectangle([27.0, 38.3, 27.4, 38.6])6566def mask_s2(img):67 # Cloud Score+ is the current best practice (threshold ~0.5-0.65)68 cs = img.linkCollection(csplus, ["cs_cdf"]).select("cs_cdf")69 return img.updateMask(cs.gte(0.6))7071csplus = ee.ImageCollection("GOOGLE/CLOUD_SCORE_PLUS/V1/S2_HARMONIZED")72s2 = (ee.ImageCollection("COPERNICUS/S2_SR_HARMONIZED")73 .filterBounds(aoi)74 .filterDate("2025-05-01", "2025-09-30")75 .map(mask_s2))76composite = s2.median().clip(aoi)77ndvi = composite.normalizedDifference(["B8", "B4"]).rename("ndvi")78```7980Collection choices: `S2_SR_HARMONIZED` (post-2022 offset harmonized),81`LANDSAT/LC08/C02/T1_L2` + friends (apply scale factors: optical82`*0.0000275 - 0.2`), `MODIS/061/...` for daily/coarse, ERA5-Land for83climate. Record collection IDs + date filters in the deliverable.8485## Reducers and zonal statistics — scale is not optional8687```python88stats = ndvi.reduceRegions(89 collection=districts,90 reducer=ee.Reducer.mean().combine(ee.Reducer.stdDev(), sharedInputs=True),91 scale=10, # ALWAYS explicit — native resolution92 tileScale=4, # raise when "computation timed out"93)94```9596- `scale` defaults to the map zoom level in some paths — silently coarse97 statistics. Always set it to the data's native resolution (or state the98 deliberate coarsening).99- `bestEffort=True` silently degrades scale to fit limits — avoid in100 analysis; prefer `tileScale` + exports.101- Large reductions → `Export.table.toDrive`, not `.getInfo()`.102- Weighted vs unweighted reducers differ at polygon edges103 (`.unweighted()` for counts of whole pixels); state which you used.104105## Time series106107- Build per-period composites with a mapped function over108 `ee.List.sequence` of dates (monthly/seasonal medians), then reduce —109 don't export daily stacks you'll aggregate anyway.110- For per-pixel trends: `ee.Reducer.sensSlope()` (robust) or111 `linearFit`; harmonic regression (`.addBands` of sin/cos terms) for112 phenology. Mask by count of valid observations — trends from 4 pixels113 of 200 possible are noise; report the count band.114- For break detection at archive scale (LandTrendr/CCDC available in GEE),115 method selection follows `change-detection`.116117## Classification in GEE118119`ee.Classifier.smileRandomForest` covers most cases. Training samples via120`image.sampleRegions`; split train/test **spatially** (add a grid-cell121attribute and filter — random `randomColumn` splits leak; see122`ml-experiment-standards` → `references/spatial-cv-protocol.md`). Report123per-class accuracy from `errorMatrix`; area estimates from a classified124map still need design-based adjustment (`change-detection` / Olofsson).125126## Exports and hand-off127128- `Export.image.toDrive/toCloudStorage` with explicit `region`, `scale`,129 `crs`, `maxPixels`; use `crsTransform` when pixel alignment with an130 existing raster matters.131- Export > ~10⁸ pixels: shard by tiles or use `toAsset` intermediate.132- Hand off to the local Python stack (rasterio/xarray) via COG exports, or133 `xee` for xarray-native access; visualize interactively with `geemap`.134135## Quotas and etiquette136137Batch tasks queue (check task status; don't fire hundreds blindly).138Interactive requests time out at ~5 min — long jobs go to batch export.139Cache intermediate products as assets when a pipeline reuses them.140141## Provenance record142143Server-side computation is invisible after the fact: the catalog moves under144you, a reducer default changes the number, and nothing in the exported file145says which archive produced it. Every Earth Engine deliverable ships with a146provenance record, emitted as a sidecar JSON next to the export — not left147in the notebook:148149- **Catalog asset IDs with their version suffix** (`COPERNICUS/S2_SR_HARMONIZED`150 and the specific collection version), plus the date range and filters applied.151- **Mask method and thresholds** — cloud probability source, threshold value,152 and any morphological buffer.153- **Reducers and their arguments**, including `tileScale`, `bestEffort`, and154 any `crsTransform`.155- **Export parameters**: `region`, `scale`, `crs`, `maxPixels`, and the task ID.156- **Run date and the `ee.__version__` / API client version**, because157 server-side defaults change without notice.158159Recommending Earth Engine over a local workflow is incomplete without this:160the reproducibility cost is the main thing the user trades away by moving161server-side, so state how it is recovered.162163## Verification protocol1641651. Probe: `composite.select("B4").projection().nominalScale().getInfo()`166 and band names — confirms scale/CRS assumptions before reductions.1672. Visual check in geemap at 2 zoom levels vs a basemap.1683. Cross-check one zonal statistic against a local computation on an169 exported clip (catches scale/masking discrepancies).1704. Report: collection IDs, date ranges, mask method + threshold, scale,171 reducer types.172173## Pitfalls checklist174175- `.getInfo()` inside a loop (move logic server-side).176- Missing `scale` in reduceRegion(s) → zoom-dependent statistics.177- Landsat C2 used without scale factors → reflectance > 1.178- `bestEffort=True` hiding resolution degradation.179- Median composite including cloudy pixels (mask BEFORE reduce).180- Python conditionals on server-side objects (always false-y).181- Trend maps without valid-observation-count masking.182183## Execution contract184185- **Workflow:** define collection and period; build a server-side mask and transform pipeline; test on a small region; compute; verify scale and projection; export reproducibly.186- **Decision rules:** use Earth Engine for planetary archives and scalable aggregation, local tools for sensitive or offline data, and batch exports for work beyond interactive limits.187- **Verification protocol:** probe bands, projection, scale, masks, and observation counts; inspect spatial samples; cross-check one exported statistic locally; record collection versions and parameters.188- **Failure modes:** stop for client-side loops, implicit scale, masked-pixel bias, quota-driven silent degradation, expired assets, or unbounded region operations.189- **Deliverables:** runnable script, collection and date manifest, mask and reducer parameters, task/export settings, verification evidence, and exported asset inventory.190- **Source freshness:** consult [the authoritative source registry](references/authoritative-sources.md) at execution time for catalog, API, quota, and policy changes.