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.
Gibt die Werte eines Dictionary als Liste zurück. Wenn keine Schlüssel angegeben sind, werden alle Werte in der natürlichen Reihenfolge der Schlüssel des Dictionarys zurückgegeben.
[[["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)."],[[["`Dictionary.values()` returns the values of a dictionary as a list in the natural ordering of the dictionary's keys."],["You can specify a list of keys to retrieve only the values corresponding to those keys."],["If no keys are specified, all values in the dictionary are returned."],["The returned value is an `ee.List` object."]]],["The function `dictionary.values()` extracts values from a dictionary and returns them as a list. If specific keys are provided as arguments, only the corresponding values are returned; otherwise, all values are included, maintaining the dictionary's key order. The provided examples demonstrate retrieving values for selected keys (e.g., 'B1', 'B2') and for all keys within a dictionary. Both Javascript and python examples are given.\n"]]