Earth Engine ขอแนะนำ
ระดับโควต้าที่ไม่ใช่เชิงพาณิชย์เพื่อปกป้องทรัพยากรการประมวลผลที่ใช้ร่วมกันและรับประกันประสิทธิภาพที่เชื่อถือได้สำหรับทุกคน โปรเจ็กต์ที่ไม่ใช่เชิงพาณิชย์ทั้งหมดจะต้องเลือกระดับโควต้าภายในวันที่
27 เมษายน 2026 หรือจะใช้ระดับชุมชนโดยค่าเริ่มต้นก็ได้ โควต้าระดับจะมีผลกับโปรเจ็กต์ทั้งหมด (ไม่ว่าวันที่เลือกระดับจะเป็นวันใด) ในวันที่
27 เมษายน 2026 ดูข้อมูลเพิ่มเติม
ee.FeatureCollection.getString
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
ดึงพร็อพเพอร์ตี้จากฟีเจอร์
| การใช้งาน | การคืนสินค้า |
|---|
FeatureCollection.getString(property) | สตริง |
| อาร์กิวเมนต์ | ประเภท | รายละเอียด |
|---|
ดังนี้ object | องค์ประกอบ | ฟีเจอร์ที่จะดึงพร็อพเพอร์ตี้ออกมา |
property | สตริง | พร็อพเพอร์ตี้ที่จะดึง |
ตัวอย่าง
โปรแกรมแก้ไขโค้ด (JavaScript)
// A FeatureCollection with a string property value.
var fc = ee.FeatureCollection([]).set('string_property', 'Abies magnifica');
// Fetch the string property value as an ee.String object.
print('String property value as ee.String', fc.getString('string_property'));
การตั้งค่า Python
ดูข้อมูลเกี่ยวกับ Python API และการใช้ geemap เพื่อการพัฒนาแบบอินเทอร์แอกทีฟได้ที่หน้า
สภาพแวดล้อม Python
import ee
import geemap.core as geemap
Colab (Python)
# A FeatureCollection with a string property value.
fc = ee.FeatureCollection([]).set('string_property', 'Abies magnifica')
# Fetch the string property value as an ee.String object.
display('String property value as ee.String:',
fc.getString('string_property'))
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-10-30 UTC
[null,null,["อัปเดตล่าสุด 2025-10-30 UTC"],[],["The core function described is `getString(property)`, used to extract a string property from a feature. It takes two inputs: the feature itself and the name of the desired property (string). The function returns the property's value as a string. The provided examples demonstrate how to use `getString` in both JavaScript and Python to retrieve the \"string_property\" from a FeatureCollection, with the property set as 'Abies magnifica'.\n"]]