ee.String.decodeJSON

Decodes a JSON string.

UsageReturns
String.decodeJSON()Object
ArgumentTypeDetails
this: stringStringThe 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())