ee.Dictionary.aside

यह फ़ंक्शन को कॉल करता है. इसमें इस ऑब्जेक्ट को पहले आर्ग्युमेंट के तौर पर पास किया जाता है और यह खुद को वापस भेजता है. सुविधाजनक, जैसे कि डीबग करते समय:

var c = ee.ImageCollection('foo').aside(print)

.filterDate('2001-01-01', '2002-01-01').aside(print, 'In 2001')

.filterBounds(geom).aside(print, 'In region')

.aside(Map.addLayer, {min: 0, max: 142}, 'Filtered')

.select('a', 'b');

यह चेन बनाने के लिए, उसी ऑब्जेक्ट को दिखाता है.

इस्तेमालरिटर्न
Dictionary.aside(func, var_args)ComputedObject
आर्ग्यूमेंटटाइपविवरण
यह: computedobjectComputedObjectComputedObject इंस्टेंस.
funcफ़ंक्शनकॉल करने के लिए फ़ंक्शन.
var_argsVarArgs[Object]फ़ंक्शन में पास करने के लिए कोई अतिरिक्त आर्ग्युमेंट.

उदाहरण

कोड एडिटर (JavaScript)

// A dictionary (e.g. results of ee.Image.reduceRegion of an S2 image).
var dict = {
  B1: 182,
  B2: 219,
  B3: 443
};

// Print a message when constructing the ee.Dictionary.
var eeDict = ee.Dictionary(dict).aside(print, 'ee.Dictionary from an object');

Python का सेटअप

Python API और इंटरैक्टिव डेवलपमेंट के लिए geemap का इस्तेमाल करने के बारे में जानकारी पाने के लिए, Python एनवायरमेंट पेज देखें.

import ee
import geemap.core as geemap

Colab (Python)

# A dictionary (e.g. results of ee.Image.reduceRegion of an S2 image).
dic = {
    'B1': 182,
    'B2': 219,
    'B3': 443
}


def print_dic(dic):
  """Prints the dictionary."""
  print('ee.Dictionary from client-side dictionary:', dic.getInfo())

# Print a message when constructing the ee.Dictionary.
ee_dic = ee.Dictionary(dic).aside(print_dic)