Ankündigung: Alle nicht kommerziellen Projekte, die vor dem 15. April 2025 für die Nutzung der Earth Engine registriert wurden, müssen die Berechtigung zur nicht kommerziellen Nutzung bestätigen, um weiterhin auf die Earth Engine zugreifen zu können.
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Transformiert die Geometrie in eine bestimmte Projektion.
Nutzung
Ausgabe
MultiPolygon.transform(proj, maxError)
Geometrie
Argument
Typ
Details
So gehts: geometry
Geometrie
Die neu zu projizierende Geometrie.
proj
Projektion (optional)
Die Zielprojektion. Die Standardeinstellung ist EPSG:4326. Wenn die Geometrie ein geografisches CRS hat, werden die Kanten als Geodäten interpretiert. Andernfalls werden sie in der Projektion als gerade Linien interpretiert.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2025-07-26 (UTC)."],[[["This function reprojects a given geometry to a new coordinate system, specified by the `proj` argument."],["By default, the geometry will be transformed to EPSG:4326 (WGS 84), treating edges as geodesics for geographic CRS and straight lines otherwise."],["Users can control the acceptable projection error using the `maxError` parameter."],["The function returns a new Geometry object representing the transformed geometry."]]],["The `transform` function reprojects a geometry to a specified projection. It accepts the geometry itself, the target projection (`proj`), and an optional `maxError` parameter to control accuracy. The function defaults to EPSG:4326 if no projection is provided. The target projection determines if the edges are interpreted as geodesics or straight lines, and the result is a new geometry with the applied projection.\n"]]