Announcement: All noncommercial projects registered to use Earth Engine before
April 15, 2025 must
verify noncommercial eligibility to maintain Earth Engine access.
ee.String.decodeJSON
Stay organized with collections
Save and categorize content based on your preferences.
Decodes a JSON string.
Usage | Returns | String.decodeJSON() | Object |
Argument | Type | Details | this: string | String | The string to decode. |
Examples
Code Editor (JavaScript)
var data = ee.Dictionary(ee.String('{"a": "abc", "b": 1}').decodeJSON());
print(data);
print(data.get('a'));
Python setup
See the
Python Environment page for information on the Python API and using
geemap
for interactive development.
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())
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 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```"]]