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)