ee.Feature.dissolve
Returns a feature containing the union of the geometry of a feature. This leaves single geometries untouched, and unions multi geometries.
Usage | Returns |
---|
Feature.dissolve(maxError, proj) | Element |
Argument | Type | Details |
---|
this: feature | Element | The feature the geometry of which is being unioned. |
maxError | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |
proj | Projection, default: null | If specified, the union will be performed in this projection. Otherwise it will be performed in a spherical coordinate system. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["The `dissolve()` function combines the geometries of a feature, primarily to merge multi-geometries into a single geometry."],["It can be applied to any `Feature` and returns an `Element` with the unioned geometry."],["Optional parameters allow for controlling the error margin (`maxError`) during reprojection and specifying a projection (`proj`) for the union operation."]]],[]]