ee.String.decodeJSON
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Decodes a JSON string.
Nutzung | Ausgabe |
---|
String.decodeJSON() | Objekt |
Argument | Typ | Details |
---|
So gehts: string | String | Der zu decodierende String. |
Beispiele
Code-Editor (JavaScript)
var data = ee.Dictionary(ee.String('{"a": "abc", "b": 1}').decodeJSON());
print(data);
print(data.get('a'));
Python einrichten
Informationen zur Python API und zur Verwendung von geemap
für die interaktive Entwicklung finden Sie auf der Seite
Python-Umgebung.
import ee
import geemap.core as geemap
Colab (Python)
data = ee.Dictionary(ee.String('{"a": "abc", "b": 1}').decodeJSON())
print(data.getInfo())
print(data.get('a').getInfo())
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\u003eDecodes a JSON string (this: \u003ccode\u003estring\u003c/code\u003e) and returns an \u003ccode\u003eObject\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eProvides usage examples in JavaScript, Python using \u003ccode\u003egeemap\u003c/code\u003e, and Colab with Python.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003edecodeJSON()\u003c/code\u003e method is called on an \u003ccode\u003eee.String\u003c/code\u003e object containing the JSON string.\u003c/p\u003e\n"],["\u003cp\u003eThe resulting object can be accessed like a dictionary using methods like \u003ccode\u003eget()\u003c/code\u003e to retrieve specific values.\u003c/p\u003e\n"]]],[],null,["# ee.String.decodeJSON\n\nDecodes a JSON string.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------|---------|\n| String.decodeJSON`()` | Object |\n\n| Argument | Type | Details |\n|----------------|--------|-----------------------|\n| this: `string` | String | The string to decode. |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\nvar data = ee.Dictionary(ee.String('{\"a\": \"abc\", \"b\": 1}').decodeJSON());\nprint(data);\nprint(data.get('a'));\n```\nPython setup\n\nSee the [Python Environment](/earth-engine/guides/python_install) page for information on the Python API and using\n`geemap` for interactive development. \n\n```python\nimport ee\nimport geemap.core as geemap\n```\n\n### Colab (Python)\n\n```python\ndata = ee.Dictionary(ee.String('{\"a\": \"abc\", \"b\": 1}').decodeJSON())\nprint(data.getInfo())\nprint(data.get('a').getInfo())\n```"]]