ee.String.decodeJSON
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
किसी JSON स्ट्रिंग को डिकोड करता है.
इस्तेमाल | रिटर्न |
---|
String.decodeJSON() | ऑब्जेक्ट |
आर्ग्यूमेंट | टाइप | विवरण |
---|
यह: string | स्ट्रिंग | डिकोड की जाने वाली स्ट्रिंग. |
उदाहरण
कोड एडिटर (JavaScript)
var data = ee.Dictionary(ee.String('{"a": "abc", "b": 1}').decodeJSON());
print(data);
print(data.get('a'));
Python सेटअप करना
Python API और इंटरैक्टिव डेवलपमेंट के लिए geemap
का इस्तेमाल करने के बारे में जानकारी पाने के लिए,
Python एनवायरमेंट पेज देखें.
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())
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 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```"]]