Announcement: All noncommercial projects registered to use Earth Engine before April 15, 2025 must verify noncommercial eligibility to maintain Earth Engine access.
[[["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 2024-06-05 UTC."],[[["\u003cp\u003eCalculates the bounding box, which represents the minimum and maximum coordinates, of a given geographical feature.\u003c/p\u003e\n"],["\u003cp\u003eThe resulting bounding box can be optionally reprojected to a specified coordinate system (like EPSG:4326) with a defined error margin.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eFeature.bounds()\u003c/code\u003e function takes the feature, an optional error margin for reprojection, and an optional target projection as inputs.\u003c/p\u003e\n"]]],["The `Feature.bounds()` method calculates and returns a new feature representing the bounding box of an input feature's geometry. It accepts optional arguments `maxError` to control reprojection accuracy and `proj` to specify the desired output projection (defaulting to EPSG:4326). The method operates on a given feature and produces a bounding box feature, accommodating potential reprojection if requested. The input feature can be any element.\n"],null,["Returns a feature containing the bounding box of the geometry of a given feature.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------|---------|\n| Feature.bounds`(`*maxError* `, `*proj*`)` | Feature |\n\n| Argument | Type | Details |\n|-----------------|----------------------------|-----------------------------------------------------------------------------------------|\n| this: `feature` | Element | The feature the bound of which is being calculated. |\n| `maxError` | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |\n| `proj` | Projection, default: null | If specified, the result will be in this projection. Otherwise it will be in EPSG:4326. |"]]