ee.Dictionary.toImage

สร้างรูปภาพของค่าคงที่จากค่าในพจนานุกรม แถบของรูปภาพจะเรียงลำดับและตั้งชื่อตามอาร์กิวเมนต์ชื่อ หากไม่ได้ระบุชื่อ ระบบจะจัดเรียงวงดนตรีตามตัวอักษรและตัวเลข

การใช้งานการคืนสินค้า
Dictionary.toImage(names)รูปภาพ
อาร์กิวเมนต์ประเภทรายละเอียด
ดังนี้ dictionaryพจนานุกรมพจนานุกรมที่จะแปลง
namesรายการ (ค่าเริ่มต้น: null)ลำดับของแถบเอาต์พุต

ตัวอย่าง

โปรแกรมแก้ไขโค้ด (JavaScript)

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

var selectedKeysImg = dict.toImage(['B1', 'B2']);
print('Selected keys image band names', selectedKeysImg.bandNames());

var allKeysImg = dict.toImage();
print('All keys image band names', allKeysImg.bandNames());

การตั้งค่า 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 = ee.Dictionary({
    'B1': 182,
    'B2': 219,
    'B3': 443
})

selected_keys_img = dic.toImage(['B1', 'B2'])
print('Selected keys image band names:',
      selected_keys_img.bandNames().getInfo())

all_keys_img = dic.toImage()
print('All keys image band names:', all_keys_img.bandNames().getInfo())