Skip to content

PATTERNS

vector overlay operations

Vector overlay operations compare locations between two vector layers. In Earth Engine, the vector layers are generally features in a feature collection.

more soon

🌎 clip by region

geo.fcOverlay.clipByRegion() is a knife method that takes two arguments.

ARGUMENT DESCRIPTION
fc_dough A vector dataset (feature collection) with features that you want to cut.
fc_cutter A vector dataset (feature collection) with features that you want to use as the knife to cut the dough.

The output is a feature collection that retains that attributes but alters the geometry of the dough.

var fc_clip = geo.fcOverlay.clipByRegion(fc_dough, fc_cutter);

This work is licensed under CC BY-NC-SA 4.0