[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["The `geometries()` method returns a list of individual geometries contained within a GeometryCollection or a single geometry for non-collection types."],["When applied to a MultiPolygon, `geometries()` returns a list of the Polygons that comprise it."],["This method is useful for accessing and manipulating the individual components of complex geometries in Earth Engine."]]],["The `geometries()` method extracts the underlying geometries from a `GeometryCollection` or returns a single-element list if the input is a single `Geometry`. For a `MultiPolygon`, like in the examples, it outputs a list of the component polygon geometries. The examples provided, in both JavaScript and Python, define a `MultiPolygon` object, apply `geometries()` to it, and print/display the resulting list of geometries. They also display the MultiPolygon visually on the map.\n"]]