ee.Feature.bounds
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Gibt ein Feature mit dem Begrenzungsrahmen der Geometrie eines bestimmten Features zurück.
Nutzung | Ausgabe |
---|
Feature.bounds(maxError, proj) | Funktion |
Argument | Typ | Details |
---|
So gehts: feature | Element | Das Attribut, dessen Grenze berechnet wird. |
maxError | ErrorMargin, Standardwert: null | Die maximale Fehlergröße, die bei einer erforderlichen Rückprojektion toleriert wird. |
proj | Projektion, Standardwert: null | Falls angegeben, wird das Ergebnis in dieser Projektion zurückgegeben. Andernfalls wird EPSG:4326 verwendet. |
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2025-07-26 (UTC).
[null,null,["Zuletzt aktualisiert: 2025-07-26 (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,["# ee.Feature.bounds\n\nReturns 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. |"]]