ee.Dictionary.contains

اگر فرهنگ لغت حاوی کلید داده شده باشد، true را برمی گرداند.

استفاده برمی گرداند
Dictionary. contains (key) بولی
استدلال تایپ کنید جزئیات
این: dictionary فرهنگ لغت
key رشته

نمونه ها

ویرایشگر کد (جاوا اسکریپت)

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

print('Dictionary contains key "B1"?', dict.contains('B1'));
print('Dictionary contains key "Band_1"?', dict.contains('Band_1'));

راه اندازی پایتون

برای اطلاعات در مورد API پایتون و استفاده از geemap برای توسعه تعاملی به صفحه محیط پایتون مراجعه کنید.

import ee
import geemap.core as geemap

کولب (پایتون)

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

print('Dictionary contains key "B1"?:', dic.contains('B1').getInfo())
print('Dictionary contains key "Band_1"?:', dic.contains('Band_1').getInfo())